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…
Get rid of categories / comments info in Pressrow posts? « WordPress.com Forums.
A web site for tutti noi (all of us!)
Monday, November 23rd, 2009
Posted in Uncategorized | Comments Off
Wednesday, August 12th, 2009
This guy on this post looks a lot like someone I know…
Get rid of categories / comments info in Pressrow posts? « WordPress.com Forums.
Tags: doppleganger
Posted in Uncategorized | Comments Off
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 whe
n 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:
Tags: arcade, atari, games, Open Source, video games
Posted in Uncategorized | Comments Off
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
Tuesday, February 3rd, 2009
Posted in Uncategorized | Comments Off
Friday, January 30th, 2009
Here’s a feed for the Economy Blog.
[rssfeedme cat="economy" max="3"]
Posted in Uncategorized | Comments Off
Monday, January 19th, 2009
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.)
Posted in Uncategorized | Comments Off
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:
- Stop parsing my example codes.
- Stop fancifying my plain quotes and double quotes into those damnable fancy curly quotes.And above all…
- 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:
- 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…
- 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..
- I hacked into the Wordpress
formatting.phpfile just a wee bit. To do this, go to thewp-includessubfolder in the folder where your Wordpress blog is installed, open theformatting.phpfile 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 littleThe 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 …
Posted in Uncategorized | Comments Off
Thursday, January 8th, 2009
Ultimate Collection of WordPress Plugins
Another nice collection of WP plugins

Tags: plugin, WordPress
Posted in Uncategorized | Comments Off
Thursday, January 8th, 2009
Cool WordPress Plugins Released In October | Performancing.com
A nice collection of WordPress plugins

Posted in Uncategorized | Comments Off
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
| « Feb | ||||||
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 | |||
Copyright © 2010 - ourlil.com | Entries (RSS) | Comments (RSS)
WordPress theme designed by
web design