Hide confidential files INSIDE other image, music or video files!
Powered by MaxBlogPress 

Nov
13

Dynamic Disk Storage in Windows

posted by thinkdj at 12:09 am in Tips n Tricks,Windows

Dynamic storage is supported in Windows 2000 and Windows XP Professional. Dynamic disk does not use partitions / logical drives. Instead, it contains dynamic volumes, such as simple volumes, spanned volumes, striped volumes, mirrored volumes and RAID 5 volumes created by Disk Management Console.

Dynamic Disks are very flexible. The number of volumes that you can create on a physical hard disk is only limited by the amount of free space available. You can also extend a volume, if it needs more space (if unallocated space is available). Dynamic storage management lets you manage disks and volumes even without a need to restart Windows after a change has been made.

Windows XP Professional can repair a corrupted database on one dynamic disk by using the database on another dynamic disk. 

You can upgrade from Basic to Dynamic storage any time. Sstart Disk Management (Start > Control Panel > Performance and Maintenance > Administrative Tools > Computer Management > Disk Management). Right-click the Basic disk you want to convert to Dynamic, and click Convert to Dynamic Disk.

Note: After you convert to a dynamic disk, the dynamic volumes cannot be changed back to partitions. You must first delete all dynamic volumes on the disk, and then convert the dynamic disk back to a basic disk. If you want to keep your data, you must first back up or move the data to another volume. Also, do not try Dynamic Disks with multi boot OSes like multiple installations of WIndows on a single system.

Nov
12

Exclude categories from wordpress frontpage

posted by thinkdj at 6:02 pm in PHP,Tips n Tricks,Tweaks,Wordpress

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.

Nov
12

Make a web 2.0 logo from text

posted by thinkdj at 12:22 pm in Internet,Tips n Tricks,Web 2.0

Alex P’s Web 2.0 LOGO creator helps you make a web 2.0 logo for your blog very easily. All you have to do is enter the text, choose options on if you want the Reflection and BETA tags and voila !

Here’s a sample logo : blogulatebeta.png

Newer Posts »« Older Posts
Snippets from the web featuring Technology, Gadgets, Gaming, Downloads and Industry news.

 Subscribe in a reader


Categories

open all | close all