<?xml version="1.0"?>
<!-- name="generator" content="blosxom/2.0" -->
<!DOCTYPE rss PUBLIC "-//Netscape Communications//DTD RSS 0.91//EN" "http://my.netscape.com/publish/formats/rss-0.91.dtd">

<rss version="0.91">
  <channel>
    <title>Zeptar's Helpful Resource   </title>
    <link>http://zeptar.motd.org/blog/blosxom.cgi</link>
    <description>Terminal help, desktop publishing, random computer help</description>
    <language>en</language>

  <item>
    <title>Google for unsecured webcams:</title>
    <link>http://zeptar.motd.org/blog/blosxom.cgi/2008/09/22#webcams</link>
    <description>
inurl:&quot;ViewerFrame?Mode=&quot;

</description>
  </item>
  <item>
    <title>How to untar a gzipped tar file</title>
    <link>http://zeptar.motd.org/blog/blosxom.cgi/2008/08/02#how-to-untar</link>
    <description>tar -xzvf file.tar.gz
</description>
  </item>
  <item>
    <title>OS X 10.5: How to create custom Mail stationery</title>
    <link>http://zeptar.motd.org/blog/blosxom.cgi/2008/07/10#stationary</link>
    <description>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:
      &lt;span contenteditable=&quot;true&quot; apple-content-name=&quot;body&quot; style=&quot;display;block;&quot;
   3. Move all items needed for the page (html files and images) into a new folder called Resources.
   4. Using your favorite plist editor, create a new plist called Description.plist in that same Resources folder. Add a string called HTML File and set the value to content.html. Add the following additional strings: Display Name, Folder Name, Thumbnail Image, and stationery ID. The values for everything thing but stationery ID should be self-explanatory. In the stationery ID string, enter a value based on this &quot;72A27F00-FF50-43E8-A304-B2F85Ere89tfb&quot; but it should not be exactly the same this is only an example.
   5. Add an Array called Images, and in it, place string entries titled 0 through nn, where nn is the total number of images in your HTML file minus one. For the value of each string, list the file name of your image; the order doesnt matter.
   6. If you are using a background image, create an additional array titled Background Images and list your background images the same way you did in the last step. Background images must also be listed in the Images array from the prior step.
   7. Save your plist file.
   8. Create a new folder and place your Resources folder inside of it. Name your new folder mytemplate.mailstationery, where mytemplate is the name of your stationery.
   9. Double-click your stationery file, and you will be asked if you would like to install the stationery
Reference files can be found on your machine at /Library/Application Support/Apple/Mail/Stationery/Apple/Contents/Resources. Using the same methods described above, you can fully customize all the Apple Stationery files pre-installed with Mail.app, if you wish.
[robg adds: For the stationery ID entry, you can use uuidgen in Terminal to create a guaranteed unique identifier string.]
&gt;&gt; References: http://www.macosxhints.com/article.php?story=20071027225621868</description>
  </item>
  <item>
    <title># way to remove the 3d styled dock from leopard</title>
    <link>http://zeptar.motd.org/blog/blosxom.cgi/2008/05/29#dock_hack</link>
    <description>

$ 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
</description>
  </item>
  <item>
    <title>how to copy manual pages</title>
    <link>http://zeptar.motd.org/blog/blosxom.cgi/2008/04/06#howtocopymanpages</link>
    <description>
recently i was trying to copy a manual page so i could print it out and 
read it. originally i was trying $ man screen &gt; screen.txt
&lt;br&gt;
however it was rendering the text file all funky.&lt;br&gt;
6:38 &lt; randy&gt; ratpez: $ man screen | col -b &gt; screen.txt
</description>
  </item>
  <item>
    <title>how to create a process log and view last 35 entries</title>
    <link>http://zeptar.motd.org/blog/blosxom.cgi/2008/04/06#gtpsx</link>
    <description>ps -x &gt;&gt; ~/pid.log; tail -n 35  ~/pid.log</description>
  </item>
  <item>
    <title>Using Geektool for Mac OS X to disply COMMODE on desktop</title>
    <link>http://zeptar.motd.org/blog/blosxom.cgi/2008/04/06#geektooltip1</link>
    <description>local.machine:~ $ script ~/commode.log &lt;br&gt;
Script started, output file is /Users/localuser/commode.log &lt;br&gt;
local.machine:~ $ ssh sdfusername@sdf.lonestar.org &lt;br&gt;
sdf.lonestar.org:~ $ com&lt;br&gt;
&lt;br&gt;
This will begin a log on your home machine of whatever is going on in this terminal window.
In this case COMMODE.
&lt;br&gt;
From the Geektool Preference Pane create a new command to display.
tail -n 35 ~/commode.log
&lt;br&gt;
This should display the last 35 lines of COM on your desktop.
</description>
  </item>
  <item>
    <title>setting the terminal to cons25</title>
    <link>http://zeptar.motd.org/blog/blosxom.cgi/2008/02/09#setting_terminal_cons25</link>
    <description>TERM=cons25; export TERM</description>
  </item>
  <item>
    <title>[zeptar]   wliao, could you tell me that command to print directories</title>
    <link>http://zeptar.motd.org/blog/blosxom.cgi/2008/02/09#dir_to_file</link>
    <description>           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 &gt; fluff.txt ?
[wliao]    both commands can be redirected to a file
[zeptar]   yes thanks :)
[vn]       beat you to it wl
</description>
  </item>
  </channel>
</rss>