I stumbled upon this when Blogulate.com’s first post was made. I didnt want the Blog Reviews to appear on the homepage.
This is actually very simple. All you have to do is modify some PHP code.
First, goto Manage > Categories and get the ID of the Category you wish to exclude. Then, go to WP admin and selet Presentation > Theme Editor ..
For your current theme, edit the loop where the posts are displayed. (It varies according to the theme… It was theloop.php for my K2 theme. )
Here is the sample from K2 Theme’s post display loop.
<?php /* Start the loop */ while ( have_posts() )
{
the_post();
?>
MODIFIED CODE :
<?php /* Start the loop */ while ( have_posts() )
{
the_post();
if (is_home()) if (in_category(’14′)) continue;
if (is_home()) if (in_category(’47′)) continue;
?>
The modified code doesnt show posts that belong to Categories 14 and 47 in homepage.
Most of you must be aware that setting config.trim_on_minimize’s value to TRUE would minimize RAM usage of Firefox when minimized.
1. Open Firefox and go to the Address Bar. Type in about:config and then press Enter.
2. Right Click in the page and select New -> Boolean.
3. In the dialog box that pops up, enter config.trim_on_minimize and hit Enter.
4. Now set value to True.
5. Restart Firefox.
Now, FF would use very less memory, which is very evident from the Task Manager too.
However, when you restore Firefox again, it takes more time as everything needs to be brought back status quo. This can make your surfing experiences a lot slower, having to wait for FF to regain virility again.
So, it’s better not to enable trim_on_minimize if you have a decent enough system.
Do you get many trackbacks that goes :
unknown wrote an interesting post today on ‘your_blog_post_title’
Here’s a quick excerpt
your_post_content here …………………………………..
……..
…..
Read the rest of this great post ‘your_blog_post_link’
Although these trackbacks looks harmless, they come from subdomains of cheap sites that are trying to boost up their pagerank.
The splogs (spam blogs) installed on subdomains of sites are made exclusively to get posts from other blogs and get a trackback.
Akismet does a good job by holding back these pings. Just delete them off. 
This simple patch removes all the adverts from Yahoo! Messenger 9 Beta
Download Yahoo! Messenger 9.0 Beta Ad Remover
Updated : The earlier Rapidshare Link was reported to have a trojan .. DO NOT DOWNLOAD http://rapidshare.com/files/68157650/Yahoo__Messenger_9_Beta_Ad_Remover.zip.html from other sites too .
The leaked file (DMG format) has a size 6.56GB, so you need a DVD9 to burn it. Although it can be installed in original Apple hardware directly.
With some modifications, you may also try to run the OSX Leopard on an IBM x86 PC.
Download the torrent Here ( Source : Demonoid, Size : 6.56GB )
MD5 = c38902e728dc47a4ccb34aa6143b9bbe [osx-leopard105.dmg]
Add these Trackers for faster download rates
http://inferno.demonoid.com:3416/announce
http://www.moviex.info:2710/r12xjr0azivx42cjuyzn3c73mdqxj31q/announce
http://vip.tracker.thepiratebay.org/announce
http//araditracker.com/announce.php?pid=241eac72250a7cd33b0ae3c7080e2e7d
Get OS X Now!
The Credit goes to BraizlMac@osx86scene forum who made the original patch to make all these possible.This currently works on INTEL system with SSE3 support ONLY. An AMD/SSE2 patch should come shortly. Use CPU-Z to check the system capability if you are not sure. Continue reading ‘Installing Mac OS X 10.5 Leopard on an IBM x86 - A Step by step Guide’

Apple officially released their latest Mac OS X Leopard on the 26th of October. A hacked version of Leopard that works on the x86 IBM PC has been released just 2 days after apple’s official release. Now, you don’t have to practically own a Mac to install and experience the Leopard.
An entry at dailyapps provides you with an easy 3 step guide on how to install Leopard on your PC.