ourlil.com

A web site for tutti noi (all of us!)

  • Home
  • About
  • About – sample
  • Healing Christofer – Fun’-Raiser
    • Gallery
  • JP’s Page

Archive for the ‘Uncategorized’ Category

Computer 3D From a Long Time Ago in a Galaxy Far, Far Away

Monday, November 23rd, 2009

Posted in Uncategorized | Comments Off

Get rid of categories / comments info in Pressrow posts? « WordPress.com Forums

Wednesday, August 12th, 2009

This guy on this post looks a lot like someone I know…

Doppleganger - Separated at birth?

Get rid of categories / comments info in Pressrow posts? « WordPress.com Forums.

Tags: doppleganger
Posted in Uncategorized | Comments Off

Source Code of Several Atari 7800 Games Released! | ProgrammerFish – Everything that’s programmed!

Friday, July 3rd, 2009

Source Code of Several Atari 7800 Games Released! | ProgrammerFish – Everything that’s programmed!.

Remember the Dig Dug or Centipede or Robotron? They used to be favorites wheimagen Atari’s 7800 series was still around. Now since the era of those consoles is over and a different world of interactive reality gaming has taken over, Atari has unofficially released source code of over 15 games for the coders and enthusiasts to admire the state-of-the-art (because  this is what it was back then). During those times nobody would have imagined in their wildest dreams the games that Atari’s developers floated into the gaming thirsty market and instantly swept across continental boundaries. But things changed soon after that and a company once regarded as one of the most successful gaming console manufacturers and developers faded away in the pages of our technology’s hall-of-fame.

In an official release, Atari has quoted that the purpose of the release is to give potential developers insight into the Atari’s gaming platform so they may possibly build upon the 7800 series.

I have collected of the game’s banners:

Dig Dug

Joust

Tags: arcade, atari, games, Open Source, video games
Posted in Uncategorized | Comments Off

EndangeredPlanet.org Gallery and Mission

Sunday, May 31st, 2009

Jeremy & I spent a nice afternoon at a mini-gallery opening of Jeremy’s class artwork.

Tags: art, Jeremy, tow
Posted in Uncategorized | Comments Off

Hans Rosling shows the best stats you’ve ever seen | Video on TED.com

Tuesday, February 3rd, 2009

Posted in Uncategorized | Comments Off

Testing rssfeedme in post

Friday, January 30th, 2009

Here’s a feed for the Economy Blog.

[rssfeedme cat="economy" max="3"]

Posted in Uncategorized | Comments Off

The Science of Back to the Future

Monday, January 19th, 2009

How far did the Earth move?

How far did the Earth move?

Here’s a pretty cool assessment of the science of Back to the Future:

Q.

“Watthew Mrather” writes: The DeLorean can’t go anywhere in space, except in the conventional driving/flying sense.  Your [sic] always in the same place you left, but in a different time.

A.

Well, for starters, that’s not a question, “Mr. Mrather,” but I’ll go along with it anyway.  Remember, though: without proper punctuation and grammar, we are no better than the animals.

In fact, in order to pull off the kind of time travel we see in the Back To The Future trilogy–the kind where the traveler is transposed in time, but remains stationary in the same relative position to where he/she left–the DeLorean would have to be an outstanding space ship, in addition to its already laudable work as a time-ship.  A major issue of freely traveling within time while limiting one’s self to a local reference frame–say, a California mall parking lot–is that the reference frame itself isn’t stationary.  As an illustration, let’s figure out how far the DeLorean would have to travel in order to stay in sync with the Earth over a relatively small time-jump.  We’ll look at the simplest example (and the first one, diagetically speaking) of the whole BTTF trilogy.  You all remember the scene, right?  (Spoiler alert: Professor Plum and Alex P. Keaton send a dog one minute into the future.)

YouTube Preview Image

Posted in Uncategorized | Comments Off

Posts about disabling ‘wptexturize()’ & ‘wpautop’ for Plain Text Wordpress

Wednesday, January 14th, 2009

Here’s a post about how to tweak WordPress to stop it from modifying your posts after entering ‘<!--PLAIN_TEXT-->'…

Easy Plain Text Wordpress (Look Ma! No curly quotes!)

So, after Googling extensively and searching far and wide through the Wordpress forums, here is what I came up with to put a clean and simple leash on Wordpress and make it do the following:

  1. Stop parsing my example codes.
  2. Stop fancifying my plain quotes and double quotes into those damnable fancy curly quotes.And above all…
  3. Stop pooping all over my raw HTML code, sweeping it aside and then formatting everything into its tunnel vision idea of paragraphing and creating line breaks.

In other words, display my blog post using the exact HTML I entered on the ‘Write Post’ screen.

Here’s what I did to accomplish this:

  1. First of all, I disabled the WYSIWYG editor. To do this, you have to go to Users >> Your Profile and simply clear the checkbox beside “Use the visual editor when writing”. Then click on ‘Update Profile’ to apply the changes.Done and done.Next…
  2. I installed Jason Litka’s Disable Texturizer plugin. This will prevent Wordpress from fancifying a lot of your input like turning plain double quotes “…” into curly double quotes “…” and the like. This great little plugin is only 3 lines of code. All it does is disable the wptexturize filter for your posts, excerpts and comments. Very simple, very clean. Easy to install.And finally..
  3. I hacked into the Wordpress formatting.php file just a wee bit. To do this, go to the wp-includes subfolder in the folder where your Wordpress blog is installed, open the formatting.php file in a plain text editor and do a search for “function wpautop” which will bring you to this line of code:function wpautop($pee, $br = 1) {Directly after that type in (or copy and paste) these two lines of code: // Disable WP auto-paragraphing on call
    if ( preg_match('/<!--PLAIN_TEXT-->/', $pee) ) return $pee;

    The rest of the wpautop function should remain as is.

    Example:

    function wpautop($pee, $br = 1) {

    // Disable WP auto-paragraphing on call
    if ( preg_match(’/<!–PLAIN_TEXT–>/’, $pee) ) return $pee;

    $pee = $pee . “\n”; // just to make things a little easier, pad the end
    $pee = preg_replace(’<br />\s*<br />|’, “\n\n”, $pee);
    // Space things out a little

    The rest of the code follows…

    Save the file and you’re done.

    Now, whenever you want to have Wordpress treat your blog post as plain text and parse your HTML exactly how you coded it, all you have to do is begin your blog post with this HTML comment line (no spaces and don’t forget the underscore ( _ ) between PLAIN and TEXT:

    <!--PLAIN_TEXT-->

    And boom. Bob’s yer uncle. No more wrestling with Wordpress trying to get it to behave.

Code Snippet 2.0 + Disable wptexturize = Code in my blog

From the post:

The solutions: Code Snippet 2.0 for syntax highlighting and “Disable wptexturize” to… well… disable that particular “feature.” Code Snippet is built on top of Geshi, an excellent language syntax highlighter: JavaScript, PHP, and HTML, to name a few of the more important ones. The “Disable wptexturize” plugin is three lines from heaven, removing the texturize filter from the primary content of all blog entries.

With this combo of plugins, I can now do this in my blog…

// javascript:
var helloWorld = {
talk: function() {
alert(‘Hello, world!’);
}
};

… and this …

/* php: */
class HelloWorld {
public function talk() {
echo ‘Hello, world!’;
}
}

Posted in Uncategorized | Comments Off

Ultimate Collection of WordPress Plugins

Thursday, January 8th, 2009

Ultimate Collection of WordPress Plugins

Another nice collection of WP plugins


Tags: plugin, WordPress
Posted in Uncategorized | Comments Off

Cool WordPress Plugins Released In October | Performancing.com

Thursday, January 8th, 2009

Cool WordPress Plugins Released In October | Performancing.com

A nice collection of WordPress plugins


Posted in Uncategorized | Comments Off

<< Previous

  •  

    March 2010
    S M T W T F S
    « Feb    
     123456
    78910111213
    14151617181920
    21222324252627
    28293031  
  • Pages

    • About
    • About – sample
    • Healing Christofer – Fun’-Raiser
      • Gallery
    • JP’s Page
  • Archives

    • February 2010
    • November 2009
    • August 2009
    • July 2009
    • June 2009
    • May 2009
    • March 2009
    • February 2009
    • January 2009
    • December 2008
    • October 2008
    • September 2008
    • August 2008
    • July 2008
    • June 2008
    • May 2008
    • April 2008
    • March 2008
    • February 2008
    • December 2007
    • October 2007
    • September 2007
    • August 2007
    • July 2007
    • June 2007
    • May 2007
  • Categories

  • Favorites

    Here're a few sites I like to visit:
    • WPMU.org
    • Holy Shmoly
    • AppleInsider.com
  • Meta

    • Log in
    • Entries RSS
    • Comments RSS
    • WordPress.org

Copyright © 2010 - ourlil.com | Entries (RSS) | Comments (RSS)

WordPress theme designed by web design