piyo's computer tips
2004/04/21
Modifying the Normal.dot template
Microsoft Word 2000

Sometimes you want to change the default size of paper, default font. Here's how you do it.

src: http://word.mvps.org/FAQs/Customization/CustomizeNormalTemplate.htm
 
2004/04/20
Use keychain faster on the second run
Unix

THIS IS INCORRECT! (2004/05/17)

You don't need to use keychain to check if an instance of ${SSH_AGENT} is running, just check ${SSH_AGENT_SOCK} exists and is working or not. Cut and paste the following into your .zprofile or .bash_profile (be careful about spaces at the line ends, however). Of course you should have keychain installed.


function start_keychain() {
    /usr/bin/keychain --quiet \
        ${HOME}/.ssh/identity ${HOME}/.ssh/id_rsa ${HOME}/.ssh/id_dsa
    source ${HOME}/.keychain/${HOST}-sh
}

# Start keychain (a tool for ssh usage)

if [[ ! -f ${HOME}/.keychain/${HOST}-sh ]] ; then
    start_keychain
else
    source ${HOME}/.keychain/${HOST}-sh
    if [[ ! -e ${SSH_AUTH_SOCK} ]] ; then
        start_keychain
    fi
fi

 
2004/04/15
Changing the default forms in Outlook 2000
Windows

I'd like to edit the default look of the compose mail window and read mail window, so that I can see the catagories I use. In Outlook parlance, that means editing the default form (IPM.Note).

Checkout the Outlook 2000 Forms Administrator

src: http://www.outlookcode.com/d/newdefaultform.htm

 
How I keep remembering new ways of using computers. My (computer-centric) new-optimization learning blog.

Name:
Location: Kobe, Hyogo, Japan
September 2003 / October 2003 / December 2003 / March 2004 / April 2004 / May 2004 / June 2004 / July 2004 / August 2004 / September 2004 / February 2005 / March 2005 / April 2005 / May 2005 / June 2005 / July 2005 / August 2005 / September 2005 / December 2005 / January 2006 / February 2006 / March 2006 / April 2006 /


Powered by Blogger