• Home
  • Archives
  • Contact Us

Erase Data Securely Using CCleaner DOD Standards »

tag Categories :  Tips,Tricks and Hacks, Tutorials, Windows Tools
time Posted on Sunday, July 13, 2008 by Venkat | * Comments(0)

CCleaner has become very popular in helping get rid temporary and junk data in our systems,But did you know that just erasing data, ie., just deleting them or even for the sake ” Shift+Del ” deleting can also be recovered using simple tools.

To do away with such problems CCleaner has 3 Secure types of file deletion methods other than the regular Fast Deleting.

  1. 1 Pass Simple Overwrite.
  2. DOD (Department Of Defense) 5220.22-M ( 3 Passes )
  3. NSA 7 Passes

Passes means the number of times your data is overwritten with random alpha numeric values so that the recovery process gets even tougher.

ccleaner-secure-deletion

Open CCleaner — > Click Options to The left and then the Settings Tab

Remember that the Secure File Deletion can get Slower as the number of passes increases.

If you're new here, you may want to subscribe to my RSS feed. Thanks for visiting!

TEST
tag Digg This! tag Stumble it! tag Add to Del.icio.us tag Netscape it! tag Google Bookmark It!

Updated :: Make Your Wordpress Themes Wigitized »

tag Categories :  Tips,Tricks and Hacks, Tutorials, WordPress
time Posted on Thursday, July 3, 2008 by Venkat | * Comments(2)

Most of the themes available now a days are wigitized but there are a few really good ones that are not wigitized.In this tutorial I’ll show how you can wigitize a WP Theme, which can make it really easy to manage the sidebars of a WP Theme.

To check if your theme is widget ready or not just head to Design -> Widgets.

WP-no-widgets

Which means your theme is not widget enable.

Follow these steps to enable widgets for your theme.

  1. Create a file functions.php in your theme directory.
    <?php

    if ( function_exists('register_sidebar') )

        register_sidebar();

    ?>

    If you want 1 side bar

    [ OR ]

    <?phpif ( function_exists('register_sidebars') )register_sidebars(2);?>

    If you want multiple sidebars.You can replace 2 with any number.
  2. After doing that go to Design -> Widgets and you can find thisWP-widgets
  3. Now displaying the sidebars in your theme, open your sidebar.php present in your template theme, look for the unordered list like in the example below and add this text right after the <ul> tag.
    <?php if ( !function_exists('dynamic_sidebar')

         || !dynamic_sidebar() ) : ?>
  4. And finally close the if loop with the endif before the closing unordered list tag</ul>.<?php endif; ?>
  5. For example like this
<ul id="sidebar-right">

<?php if ( !function_exists('dynamic_sidebar')

     || !dynamic_sidebar() ) : ?>

                <li><h2>Categories</h2></li>

        <?php wp_list_categories(); ?>

    <?php endif; ?>

</ul>

NOTE : If you more than one sidebar, the you have to give the sidebar number in the function like this

    <?php if ( !function_exists('dynamic_sidebar')

         || !dynamic_sidebar(2) ) : ?>

Here the 2 is the sidebar number.If there is no number mentioned then the first sidebar is used.

UPDATE : Wigitize the footer

TechUpdates in the comments asked whether the footer can be wigitized.So here’s how we can wigitize the footer

Step 1: open the functions.php that we created above and add the following lines after the register_sidebar() or register_sidebars(2)

    register_sidebar(Array("name" => "bottomleft"));

    register_sidebar(Array("name" => "bottommiddle"));

    register_sidebar(Array("name" => "bottomright"));

for Example :

<?phpif ( function_exists(’register_sidebars’) )

register_sidebars(2);

register_sidebar(Array("name" => "bottomleft"));

register_sidebar(Array("name" => "bottommiddle"));

register_sidebar(Array("name" => "bottomright"));

?>

Step 2 :Open the theme folder and look for footer.php

          In the file look where the footer div block starts and add these lines

<?php if ( !function_exists(’dynamic_sidebar’)|| !dynamic_sidebar(’bottomleft’) ) : ?>

<?php endif; ?>

The footer div block would look start with something like this

<div class="footer-box">


If the footer has some functions by default, you can leave them as is.The wigets will replace the default.

For Ex.

<div class="footer-box">

<?php if ( !function_exists(’dynamic_sidebar’)|| !dynamic_sidebar(’bottommiddle’) ) : ?>

<ul>

<?php get_recent_comments(); ?>

</ul>

<?php endif; ?>

</div>

TEST
tag Digg This! tag Stumble it! tag Add to Del.icio.us tag Netscape it! tag Google Bookmark It!

Stop Windows Date and Time From Synchronizing With Internet Time Server »

tag Categories :  Microsoft, Tips,Tricks and Hacks, Tutorials, Windows OS
time Posted on Sunday, June 29, 2008 by Venkat | * Comments(0)

Did you ever know that the Windows Date and Time Application that shows the time in the system tray in windows connects to the Internet to synchronize with the Internet time server.If you want to stop Windows from doing so, follow these steps

  1. Double click on the clock in the windows system tray.
  2. A new Windows Date and Time properties window opens
  3. Click the 3rd tab that says Internet Tab
  4. Deselect the option as shown in the image below.

windows-data-time 

If your the kind of of person who wants to stop unnecessary applications from connecting to the internet, then you might want to try this.

TEST
tag Digg This! tag Stumble it! tag Add to Del.icio.us tag Netscape it! tag Google Bookmark It!

Link To Old Posts Easily With RB Internal Links »

tag Categories :  Plugins, Tips,Tricks and Hacks, Tutorials, WordPress
time Posted on Friday, June 27, 2008 by Venkat | * Comments(0)

Linking to internal posts is good for SEO but can be at times really a pain if you don’t know the permalink of the post, you will have to search through the published posts list to find out the permalink of the post.RB Internal Links can really ease the way you link to old posts from newer posts.

RB Internal Links is a wordpress plugin lets you easily link to posts and pages within their wordpress blog without having to enter the full URL , It uses wiki style tags to define a link to the post or page.The wiki code can be inserted manually or by using the wysiwyg plugin.

INSTALLATION :

  1. Download rb-internal-links plugin from here.
  2. Upload the “rb-internal-links” folder to your wp-content/plugins/ directory.
  3. Activate the plug-in
  4. Browse to Options > RB Internal Links to take a look at preferences

Note : For this plugin to work you need the Rich Editing Enabled and wysiwyg enabled in your wordpress installation.

To manually link a page/post:
At the place you would like the link to appear write

<!`--{post id="post-slug/post-id" text="link text"--`>
removing the tick (`) if you copy pasting from here.
rbinternal_wysiwyg_edit 

Using the tinymce wysiwyg editor:

  • Make sure you’ve ticked “enable wysiwyg editor” on the plugin preferences page.
  • Select the text for which you want to link.
  • A new icon will appear on the wysiwyg toolbar, it looks like a page with a link over it Clicking on the icon will pop-up a toolbox. [ Image 1  ]
  • Select the category the post you need is in or alternatively, choose pages for a list of pages
  • Click on the post or page you wish to link to  [ Image 2 ]
  • Fill in the optional properties for the link  [ Image 3 ]
  • Click “Insert Link”

rbinternal_wysiwyg_edit2        

                                                 Image 1

     rbinternal_wysiwyg_edit3    

                                             Image 2

             rbinternal_wysiwyg_edit4

                                              Image 3

WP 2.5.1 does not show the post id’s, so only the post-slugs can be used, which can also be a bit a bit hard to find.I feel the TinyMCE WYSIWUG Editor is the better way of using this plugin.

I think this plugin should be a part of Wordpress, I hope this makes it into the upcoming versions of Wordpress.

RB Internal Links  :  Homepage

TEST
tag Digg This! tag Stumble it! tag Add to Del.icio.us tag Netscape it! tag Google Bookmark It!

Have A Verbose Startup For XP For Identifying Startup Problems »

tag Categories :  Microsoft, Tips,Tricks and Hacks, Tutorials, Windows OS
time Posted on Sunday, June 22, 2008 by Venkat | * Comments(0)

Is your system booting or shutting down slowly off late, or is your XP system hanging up at “Windows Is Starting ” during bootup. Then it can be useful to for having a verbose startup during the XP bootup.

windows-verbose-startup

To enable verbose status message in Windows, just follow the few simple steps below.

1. Go to Start > Run, type regedit and click OK.

2. Navigate to

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\
CurrentVersion\Policies\System

3. Right click at an empty area on the right pane, select New > DWORD Value and type VerboseStatus.

4. Now double click on the new verbosestatus key that you just created and enter the value data as 1.

5. Again, right click at an empty area on the right pane, select NEW > DWORD Value and type DisableStatusMessages. By default, the value data should be 0. Leave it as it is.

verbose-registry-hacks

Via - Raymond.cc

Method 2 :

  1. Click Start, and then click Run.
  2. In the Open box, type gpedit.msc, and then click OK.
  3. Expand Computer Configuration, expand Administrative Templates, and then click System.
  4. In the right pane, double-click Verbose vs normal status messages.
  5. Click Enable, and then click OK.
  6. Close Group Policy Object Editor, click OK, and then quit Active Directory Users and Computers.
  7. NOTE: Windows ignores this setting if the Remove Boot / Shutdown / Logon /
    Logoff status messages setting is turned on.

If you enable this setting, the system displays status messages that reflect each step in the process of starting, shutting down, logging on, or logging off the system.

Method 3 :

Copy paste this into notepad and save it as verbose.reg

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system]
“VerboseStatus”=dword:00000001
“DisableStatusMessages”=dword:00000000

Restart your computer, and see which DLL files are being executed during Windows is starting up screen.

TEST
tag Digg This! tag Stumble it! tag Add to Del.icio.us tag Netscape it! tag Google Bookmark It!

Cheat Sheets and Reference Guides For Programmers »

tag Categories :  Freeware, Tutorials
time Posted on Saturday, June 21, 2008 by Venkat | * Comments(0)

If you are learning a new programming language or got stuck with the syntax while programming reference sheets or cheat sheets can be really useful.Cheat-Sheet.org is a really good source for cheats sheets which has the collection of cheat sheets for programming languages, web designing, scripting languages and many more.

The interface is really simple with 2 frames the left hand side having the languages list and the right hand side with the links to the reference guides or cheat sheets.

cheat-sheets-2

TEST
tag Digg This! tag Stumble it! tag Add to Del.icio.us tag Netscape it! tag Google Bookmark It!


Add this blog to my Technorati Favorites!

Enter your email address:

Delivered by FeedBurner

'Most Popular Posts in Tutorials'

  • How To : Place Adsense After The First Post
  • How To : Place Adsense in Blogger Blogs
  • How To : Add Adsense In Wordpress Blogs
  • Make Available You Blog In Different Languages
  • How To Get A Featured Post Section In Wordpress Without Any Plugins
  • Wordpress Hack : Span Category Listing Over 2 Columns
  • Link To Old Posts Easily With RB Internal Links
  • Erase Data Securely Using CCleaner DOD Standards
  • Learn Adobe Illustrator In 30 Days
  • Add 125 x 125 AdSpots To Your Wordpress Themes
  • RSS Guide To A Carrer Abroad

    • TOEFL : What & Who Needs To Give This Exam
    • GUIDE : How To Book Your GRE Slot
    • What Is GRE and TOEFL ?? Who Needs To Give These Exams
    • Visa Experiences
    • What To Expect On Your Way To USA ?
    • Visa Experience Fall 2008 May 20th
    • Visa Expericence May 22, 2008 Mumbai
    • Fall 2008 : Visa Experiences
    • What Are Emergency Slots ?? Availability and Who Qualifies For Them
    • Steps To Schedule A F1 Visa Interview
  • TECH YARD Copyright © 2008 | Disclaimer & Privacy Policy | Slick Blue Theme by Kyle Eslick