Archive for September, 2010


Copy and Paste in PuTTY?


How does this work?
First, highlight a chunk of text in any application, then open a new application and middle-click the mouse. The highlighted text will automatically get pasted into the active application — bypassing the clipboard altogether! In fact, this method will not disturb the existing contents of the clipboard in any way.
This method works fine for Putty …

SUDO: SUper-user DO


The SUDO  command is a program for some Unix and Unix-like computer operating systems that allows users to run programs with the security privileges of another user (normally the superuser, or root).

Remove Thematic Top Menu


Add the following to the functions.php

function thematic_custom_access()
{
?>
<div id=”access”>
<div>
<a href=”#content” title=”<?php _e(‘Skip navigation to the content’, ‘thematic’); ?>”><?php _e(‘Skip to content’, ‘thematic’); ?></a>
</div>
</div><!– #access –>
<?php
}
function thematic_remove_access()
{
remove_action(‘thematic_header’, ‘thematic_access’, 9);
remove_action(‘wp_head’, ‘thematic_head_scripts’);
remove_filter(‘wp_page_menu’,’thematic_add_menuclass’);
}
add_action(‘init’, ‘thematic_remove_access’);
add_action(‘thematic_header’, ‘thematic_custom_access’, 9);