How to untar a gzipped tar file
tar -xzvf file.tar.gz
posted at: 04:48 | path: | permanent link to this entry
Over the Hills and Far Away
---------------------------
Hey, lady, you got the love I need
Maybe more than enough
Oh, darlin', darlin', darlin', walk a while with me
Oh, you got so much, so much, so much
Many have I loved, many times been bitten
Many times I've ga-yazed along the open road
Many times I've lied and many times I've listened
Many times I've wondered how much there is to know
Many dreams come true, and some have silver linings
I live for my dream and a pocketful of gold
Mellow is the man who knows what he's been missin'
Many, many men can't see the open road
Many is a word that only leaves you guessin'
A-guessin' 'bout a thing you really oughta know, hoh, oh, oh, oh
Really oughta know, oh, oh, I really oughta know-whoa, oh-whoa
You know I should, you know I should, you know I should know
Hoo
posted at: 00:44 | path: | permanent link to this entry
OS X 10.5: How to create custom Mail stationery
Tue, Nov 6 '07 at 7:30AM PST • Submitted by azchipka Apps
I noticed while looking through new hints that people have noted that some stationery options have display variations. Although the easy way noted in that hint only allows for a few adjustments (such as a color here or there), the stationery can easily be changed if you know how to to develop web pages.
All mail stationery files are self-enclosed web pages, much like a package file. Here's how to create your own.
1. Create your desired stationery using your favorite web development tool.
2. Locate the section of your stationery you would like to be able to adjust when in Mail.app, and enclose it with a span tag, with the following options:
> References: http://www.macosxhints.com/article.php?story=20071027225621868
posted at: 00:44 | path: | permanent link to this entry
CSIS 110 – Internet Assignment
References
Academic Subject: Mathematicss
Drexel School of Education. Date Accessed: 7/2/2008. "The Math Forum @ Drexel University". http://www.mathforum.com/
• This online community includes teachers, students, researchers, parents and educators who have an interest in math and math education. The site includes Ask Dr. Math, Problems of the Week, discussion groups and much more.
John Banfill. Date Accessed: 7/2/2008. "AAA MAth". http://www.aaamath.com/
• Customized by grade level and topic, AAA Math features explanations of various mathematical topics, practice problems and fun, challenging games.
Coolmath.com, Inc. Date Accessed: 7/2/2008. "Cool math.com". http://www.coolmath.com/
• This fully interactive site and allows the user to sharpen basic math skills, play games and explore new math concepts.
National Council of Teachers of Mathematics. Date Accessed: 7/2/2008. " Figure This! Math Challenges for Families.” http://www.figurethis.org/
• Created by the National Council of Teachers of Mathematics, this site helps families enjoy mathematics outside school through a series of fun and engaging challenges.
BBC Education Scotland Team. Date Accessed: 7/2/2008. BBC - Education Scotland - Higher Bitesize Revision” http://www.bbc.co.uk/scotland/education/bitesize/higher/maths/index.shtml
• This interactive Web site offers explanations and tests on higher math subjects.
Personal Hobby Subject: 3D Art Creation
http://www.highend3d.com/maya/tutorials/
• Maya FAQs, Maya Frequently Asked Questions and Answers, Maya 3D FAQ
http://www.3d-tutorial.com/
• 3D Studio Max, Lightwave, Maya, SoftImage, Bryce and Cinema 4D Tutorial Database
http://www.3dmayatutorials.com/
• This is a site dedicated to the rare tutorials for Maya.
http://www.3dlinks.com/tutorials_maya.cfm
• Maya Tutorials
http://www.cgtutorials.com/c2/Alias_Maya
• CG Tutorials is becoming fastest growing directory of computer graphics tutorials.
posted at: 00:08 | path: | permanent link to this entry
Copyright (c) 1992-2008 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
The Regents of the University of California. All rights reserved.
FreeBSD is a registered trademark of The FreeBSD Foundation.
FreeBSD 7.0-RELEASE #0: Sun Feb 24 19:59:52 UTC 2008
root@logan.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC
Timecounter "i8254" frequency 1193182 Hz quality 0
CPU: Pentium III/Pentium III Xeon/Celeron (448.97-MHz 686-class CPU)
Origin = "GenuineIntel" Id = 0x673 Stepping = 3
Features=0x383f9ff
posted at: 23:08 | path: | permanent link to this entry
# way to remove the 3d styled dock from leopard
$ defaults write com.apple.dock no-glass -boolean YES
# To change it back simply enter :
$ defaults write com.apple.dock no-glass -boolean YES
# Then Type:
killall Dock
posted at: 23:26 | path: | permanent link to this entry
Script started on Tue Apr 29 03:01:37 2008
$ dmesg
Copyright (c) 1992-2008 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
The Regents of the University of California. All rights reserved.
FreeBSD is a registered trademark of The FreeBSD Foundation.
FreeBSD 6.3-RELEASE #0: Wed Jan 16 04:45:45 UTC 2008
root@dessler.cse.buffalo.edu:/usr/obj/usr/src/sys/SMP
Timecounter "i8254" frequency 1193182 Hz quality 0
CPU: Pentium III/Pentium III Xeon/Celeron (448.97-MHz 686-class CPU)
Origin = "GenuineIntel" Id = 0x673 Stepping = 3
Features=0x383f9ff
posted at: 06:00 | path: | permanent link to this entry
img test 2008 04 08

posted at: 23:30 | path: | permanent link to this entry
how to copy manual pages
recently i was trying to copy a manual page so i could print it out and
read it. originally i was trying $ man screen > screen.txt
however it was rendering the text file all funky.
6:38 < randy> ratpez: $ man screen | col -b > screen.txt
posted at: 13:25 | path: | permanent link to this entry
how to create a process log and view last 35 entries
ps -x >> ~/pid.log; tail -n 35 ~/pid.log
posted at: 13:23 | path: | permanent link to this entry
Using Geektool for Mac OS X to disply COMMODE on desktop
local.machine:~ $ script ~/commode.log
Script started, output file is /Users/localuser/commode.log
local.machine:~ $ ssh sdfusername@sdf.lonestar.org
sdf.lonestar.org:~ $ com
This will begin a log on your home machine of whatever is going on in this terminal window.
In this case COMMODE.
From the Geektool Preference Pane create a new command to display.
tail -n 35 ~/commode.log
This should display the last 35 lines of COM on your desktop.
posted at: 13:22 | path: | permanent link to this entry
setting the terminal to cons25
TERM=cons25; export TERM
posted at: 22:00 | path: | permanent link to this entry
[zeptar] wliao, could you tell me that command to print directories
of files to a file again?
[wliao] ls -lR?
[wliao] or find /path -type f?
[zeptar] no printing the contents of directories to a file
[vn] ls -al > fluff.txt ?
[wliao] both commands can be redirected to a file
[zeptar] yes thanks :)
[vn] beat you to it wl
posted at: 00:09 | path: | permanent link to this entry
i'm bored, i can't sleep. i thought i'd make a helpful resource that i could refer to in case i needed to remember how to do something.
posted at: 07:18 | path: | permanent link to this entry
