<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.macgeekery.com" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>Mac Geekery - Get your geek on.</title>
 <link>http://www.macgeekery.com</link>
 <description>Mac Geekery is a community-developed site for moderate to advanced geekery with the Macintosh.  Anyone can publish their tips for the world to see.

Have one?  Publish it.  Have a question that would make a good tip? Ask it.  Need technical support for your Mac? Post it.</description>
 <language>en</language>
<item>
 <title>Use CUPS Classes to Elegantly Handle Different Locations</title>
 <link>http://www.macgeekery.com/tips/automation/use_cups_classes_elegantly_handle_different_locations</link>
 <description>	&lt;p&gt;&lt;span class=&quot;caps&quot;&gt;CUPS&lt;/span&gt; is the name of the service that handles printing in Mac OS X 10.3 to 10.5.  It has a lot of features that aren&amp;#8217;t really pushed in the &lt;span class=&quot;caps&quot;&gt;GUI&lt;/span&gt; in Mac OS X, but users are able to get at those features by using the special administrative interface at &lt;a href=&quot;http://localhost:631/&quot;&gt;http://localhost:631/&lt;/a&gt;.&lt;/p&gt;

	&lt;p&gt;One of those features is classes.  A class, in this context, is a group of printers that can be made to look as if it were one printer.  This is great in lab settings where you have half a dozen printers of the same type as you can add them all to a class on a print server and have everyone print to that queue.  Then whichever printer is free (or round-robin) will print the job. &lt;span class=&#039;read-more&#039;&gt;&lt;a href=&quot;http://www.macgeekery.com/tips/automation/use_cups_classes_elegantly_handle_different_locations&quot;&gt;There&#039;s more &amp;raquo;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

</description>
 <comments>http://www.macgeekery.com/tips/automation/use_cups_classes_elegantly_handle_different_locations#comments</comments>
 <category domain="http://www.macgeekery.com/tips/automation">Automation</category>
 <category domain="http://www.macgeekery.com/os/10_3">10.3</category>
 <category domain="http://www.macgeekery.com/os/10_4">10.4</category>
 <category domain="http://www.macgeekery.com/os/105">10.5</category>
 <category domain="http://www.macgeekery.com/difficulty/moderately_involved">Moderately Involved</category>
 <pubDate>Fri, 30 Nov 2007 23:53:41 -0600</pubDate>
 <dc:creator>Adam Knight</dc:creator>
 <guid isPermaLink="false">884 at http://www.macgeekery.com</guid>
</item>
<item>
 <title>Changing Airport Settings En Masse</title>
 <link>http://www.macgeekery.com/hacks/hardware/changing_airport_settings_en_masse</link>
 <description>	&lt;p&gt;I needed to change many iBooks from having a Preferred Network (and wanting to keep looking for that network) to automatically joining any open network and not giving a preference to that certain network.&lt;/p&gt;

	&lt;p&gt;I found that the two preference files involved were:&lt;/p&gt;

	&lt;ul&gt;
		&lt;li&gt;&lt;tt&gt;/Library/Preferences/SystemConfiguration/com.apple.airport.preferences.plist&lt;/tt&gt;&lt;/li&gt;
		&lt;li&gt;&lt;tt&gt;/Library/Preferences/SystemConfiguration/preferences.plist&lt;/tt&gt;&lt;/li&gt;
	&lt;/ul&gt;

	&lt;p&gt;I also found that the computer name is kept in &lt;tt&gt;preferences.plist&lt;/tt&gt;, so copying these two files out to all the iBooks would have resulted in a same-name-game fiasco.  Soooo, my solution was to:&lt;/p&gt;

	&lt;ol&gt;
		&lt;li&gt;Copy &lt;tt&gt;/Library/Preferences/SystemConfiguration/com.apple.airport.preferences.plist&lt;/tt&gt; out to all the iBooks using Apple Remote Desktop.&lt;/li&gt;
		&lt;li&gt;Issue the following &lt;span class=&quot;caps&quot;&gt;UNIX&lt;/span&gt; command as &lt;code&gt;root&lt;/code&gt; also using Apple Remote Desktop:
   &lt;tt&gt;sed -i.backup -e &amp;#8216;s/Ranked/Automatic/&amp;#8217; /Library/Preferences/SystemConfiguration/preferences.plist&lt;/tt&gt;&lt;/li&gt;
	&lt;/ol&gt;

	&lt;p&gt;This command will search through the &lt;code&gt;preferences.plist&lt;/code&gt; file for the word &lt;em&gt;Ranked&lt;/em&gt; and replace it with the word &lt;em&gt;Automatic&lt;/em&gt;.&lt;/p&gt;</description>
 <comments>http://www.macgeekery.com/hacks/hardware/changing_airport_settings_en_masse#comments</comments>
 <category domain="http://www.macgeekery.com/tips/automation">Automation</category>
 <category domain="http://www.macgeekery.com/tips/configuration">Configuration</category>
 <category domain="http://www.macgeekery.com/hacks/hardware">Hardware</category>
 <category domain="http://www.macgeekery.com/os/10_4">10.4</category>
 <category domain="http://www.macgeekery.com/difficulty/moderately_involved">Moderately Involved</category>
 <pubDate>Mon, 26 Nov 2007 15:50:56 -0600</pubDate>
 <dc:creator>schwankl</dc:creator>
 <guid isPermaLink="false">891 at http://www.macgeekery.com</guid>
</item>
<item>
 <title>Breaking the Glass in the Dock</title>
 <link>http://www.macgeekery.com/tips/quickie/breaking_glass_dock</link>
 <description>	&lt;p&gt;If you move the Leopard dock to the side of the screen you get a dock with a gray background rather than the glassy surface.  If you want that dock on the bottom of the screen as well, simply run the following:&lt;/p&gt;

&lt;pre&gt;
defaults write com.apple.dock no-glass -boolean YES
killall Dock
&lt;/pre&gt;

	&lt;p&gt;This sets a hidden default on the Dock and then forces it to restart. &lt;span class=&#039;read-more&#039;&gt;&lt;a href=&quot;http://www.macgeekery.com/tips/quickie/breaking_glass_dock&quot;&gt;There&#039;s more &amp;raquo;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

</description>
 <comments>http://www.macgeekery.com/tips/quickie/breaking_glass_dock#comments</comments>
 <category domain="http://www.macgeekery.com/tips/customization">Customization</category>
 <category domain="http://www.macgeekery.com/sections/tips/quickie">Quickie</category>
 <category domain="http://www.macgeekery.com/hacks/software">Software</category>
 <category domain="http://www.macgeekery.com/os/105">10.5</category>
 <category domain="http://www.macgeekery.com/difficulty/easy">Easy</category>
 <pubDate>Sun, 18 Nov 2007 12:33:42 -0600</pubDate>
 <dc:creator>Adam Knight</dc:creator>
 <guid isPermaLink="false">883 at http://www.macgeekery.com</guid>
</item>
<item>
 <title>Getting Rid of the Translucent Menu Bar</title>
 <link>http://www.macgeekery.com/tips/quickie/getting_rid_translucent_menu_bar</link>
 <description>	&lt;p&gt;There are a plethora of hacks to change the translucent menu bar in 10.5. While I doubt the sanity of the UI designers at Apple with this release of the operating system, it is relatively easy to change this behavior without installing third party hacks. &lt;span class=&#039;read-more&#039;&gt;&lt;a href=&quot;http://www.macgeekery.com/tips/quickie/getting_rid_translucent_menu_bar&quot;&gt;There&#039;s more &amp;raquo;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

</description>
 <comments>http://www.macgeekery.com/tips/quickie/getting_rid_translucent_menu_bar#comments</comments>
 <category domain="http://www.macgeekery.com/tips/cli">CLI</category>
 <category domain="http://www.macgeekery.com/tips/customization">Customization</category>
 <category domain="http://www.macgeekery.com/sections/tips/quickie">Quickie</category>
 <category domain="http://www.macgeekery.com/hacks/software">Software</category>
 <category domain="http://www.macgeekery.com/os/105">10.5</category>
 <category domain="http://www.macgeekery.com/difficulty/church_of_the_bearded_unix_god">Church of the Bearded Unix God</category>
 <pubDate>Sun, 18 Nov 2007 10:13:30 -0600</pubDate>
 <dc:creator>unixgeek</dc:creator>
 <guid isPermaLink="false">882 at http://www.macgeekery.com</guid>
</item>
<item>
 <title>For the Tooltip Guy</title>
 <link>http://www.macgeekery.com/hacks/software/tooltip_guy</link>
 <description>	&lt;p&gt;I went to the &lt;span class=&quot;caps&quot;&gt;GUI&lt;/span&gt; feedback session at &lt;span class=&quot;caps&quot;&gt;WWDC&lt;/span&gt; last year and in the midst of all the yelling and screaming over the new dock and menu bar there was one guy with a wholly different mission: be able to turn off tooltips.  His complaint (a valid one, I feel) is that every time he wants to sit and think about what&amp;#8217;s on-screen, a little yellow box comes up where the mouse is, and there&amp;#8217;s no real &amp;#8220;safe spot&amp;#8221; for the mouse that doesn&amp;#8217;t do this in most applications.&lt;/p&gt;

	&lt;p&gt;So, I present a little tip I discovered shortly afterwards and appear to have not written up.  I dedicate this to Tooltip Guy, wherever he is.&lt;/p&gt;

	&lt;p&gt;&lt;tt&gt;defaults write -g NSInitialToolTipDelay 99999&lt;/tt&gt;&lt;/p&gt;

	&lt;p&gt;You now have 99.999 seconds to think at a given time.  Replace &lt;code&gt;-g&lt;/code&gt; with the ID of any application to change it in that application.&lt;/p&gt;

</description>
 <comments>http://www.macgeekery.com/hacks/software/tooltip_guy#comments</comments>
 <category domain="http://www.macgeekery.com/hacks/software">Software</category>
 <category domain="http://www.macgeekery.com/os/10_3">10.3</category>
 <category domain="http://www.macgeekery.com/os/10_4">10.4</category>
 <category domain="http://www.macgeekery.com/os/105">10.5</category>
 <category domain="http://www.macgeekery.com/difficulty/easy">Easy</category>
 <pubDate>Wed, 14 Nov 2007 13:57:17 -0600</pubDate>
 <dc:creator>Adam Knight</dc:creator>
 <guid isPermaLink="false">881 at http://www.macgeekery.com</guid>
</item>
<item>
 <title>DTrace Scripts has Launched</title>
 <link>http://www.macgeekery.com/sitenews/dtrace_scripts_has_launched</link>
 <description>	&lt;p&gt;I was at &lt;span class=&quot;caps&quot;&gt;WWDC&lt;/span&gt; this last year and went to a lot of sessions that were interesting, but didn&amp;#8217;t really grab me and tell me that I absolutely had to learn the technology and use it.  It was all interesting, of course, but &amp;#8230; eh.&lt;/p&gt;

	&lt;p&gt;Then I went to a session on using Xray (now Instruments) and DTrace to debug things.  Yes, things.  It&amp;#8217;s not just for developers and their programs, but also for sysadmins and their systems.  After I saw what it could do, well, let&amp;#8217;s just say I had a domain name registered and a site up before the next session (I love Drupal).  That site is &lt;a href=&quot;http://dtracescripts.com&quot;&gt;DTrace Scripts&lt;/a&gt;. &lt;span class=&#039;read-more&#039;&gt;&lt;a href=&quot;http://www.macgeekery.com/sitenews/dtrace_scripts_has_launched&quot;&gt;There&#039;s more &amp;raquo;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

</description>
 <category domain="http://www.macgeekery.com/site_news">Site News</category>
 <category domain="http://www.macgeekery.com/os/105">10.5</category>
 <category domain="http://www.macgeekery.com/difficulty/church_of_the_bearded_unix_god">Church of the Bearded Unix God</category>
 <pubDate>Wed, 07 Nov 2007 14:24:35 -0600</pubDate>
 <dc:creator>Adam Knight</dc:creator>
 <guid isPermaLink="false">878 at http://www.macgeekery.com</guid>
</item>
<item>
 <title>NetInfo is Dead</title>
 <link>http://www.macgeekery.com/hacks/software/netinfo_dead</link>
 <description>	&lt;p&gt;NetInfo is dead.  It&amp;#8217;s gone.  It&amp;#8217;s a part of the past.  It&amp;#8217;s like that ghost of a bad dream you have in the morning where you can&amp;#8217;t quite remember why you&amp;#8217;re shaken, but you just remember that you were and that it was horrible.&lt;/p&gt;

	&lt;p&gt;Leopard ate NetInfo.&lt;/p&gt;

	&lt;p&gt;In its place is a new native Directory Services store based on folders and &lt;span class=&quot;caps&quot;&gt;XML&lt;/span&gt; property list files.  Yep, a replacement for flat files that uses &amp;#8230; flat files.  Kind of. &lt;span class=&#039;read-more&#039;&gt;&lt;a href=&quot;http://www.macgeekery.com/hacks/software/netinfo_dead&quot;&gt;There&#039;s more &amp;raquo;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

</description>
 <comments>http://www.macgeekery.com/hacks/software/netinfo_dead#comments</comments>
 <category domain="http://www.macgeekery.com/hacks/software">Software</category>
 <category domain="http://www.macgeekery.com/os/105">10.5</category>
 <category domain="http://www.macgeekery.com/difficulty/church_of_the_bearded_unix_god">Church of the Bearded Unix God</category>
 <pubDate>Wed, 07 Nov 2007 13:59:40 -0600</pubDate>
 <dc:creator>Adam Knight</dc:creator>
 <guid isPermaLink="false">877 at http://www.macgeekery.com</guid>
</item>
<item>
 <title>Change 10.4 Finder&#039;s &quot;Secure Empty Trash&quot; Options</title>
 <link>http://www.macgeekery.com/hacks/change_10_4_finders_secure_empty_trash_options</link>
 <description>&lt;p&gt;So I&amp;#8217;m paranoid, but not THAT paranoid.&lt;/p&gt;
&lt;p&gt;Sometimes I feel like using &amp;#8220;Secure Empty Trash&amp;#8221;, but that uses &amp;#8217;/usr/bin/srm&amp;#8217; with the &amp;#8217;-m&amp;#8217; option (7 passes), which can take a while to complete. Most of the time, I only care about what might turn up with simple file recovery tools in case my drive gets stolen (as opposed to covering my tracks from say law enforcement or a foreign government) so really, a single pass should be plenty for my needs. I could always use &amp;#8217;srm&amp;#8217; directly, but the convenience the built-in tool offers in handling the Trashes on various volumes, and having a built-in menu item is nice.&lt;/p&gt;
&lt;p&gt;It turns out the &amp;#8217;srm&amp;#8217; option used by &amp;#8220;Secure Empty Trash&amp;#8221; in Tiger is specified in the file: &lt;span class=&#039;read-more&#039;&gt;&lt;a href=&quot;http://www.macgeekery.com/hacks/change_10_4_finders_secure_empty_trash_options&quot;&gt;There&#039;s more &amp;raquo;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;/System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Resources/Locum&lt;/pre&gt;</description>
 <comments>http://www.macgeekery.com/hacks/change_10_4_finders_secure_empty_trash_options#comments</comments>
 <category domain="http://www.macgeekery.com/hacks">Hacks</category>
 <category domain="http://www.macgeekery.com/os/10_3">10.3</category>
 <category domain="http://www.macgeekery.com/os/10_4">10.4</category>
 <category domain="http://www.macgeekery.com/difficulty/easy">Easy</category>
 <pubDate>Fri, 12 Oct 2007 20:44:33 -0500</pubDate>
 <dc:creator>biovizier</dc:creator>
 <guid isPermaLink="false">874 at http://www.macgeekery.com</guid>
</item>
<item>
 <title>Changing File Labels Outside The Finder</title>
 <link>http://www.macgeekery.com/gspot/2007-09/changing_file_labels_outside_the_finder</link>
 <description></description>
 <comments>http://www.macgeekery.com/gspot/2007-09/changing_file_labels_outside_the_finder#comments</comments>
 <category domain="http://www.macgeekery.com/tips">Tips</category>
 <category domain="http://www.macgeekery.com/difficulty/easy">Easy</category>
 <pubDate>Fri, 14 Sep 2007 16:50:22 -0500</pubDate>
 <dc:creator>JC</dc:creator>
 <guid isPermaLink="false">870 at http://www.macgeekery.com</guid>
</item>
<item>
 <title>Cleaning Out the Queue, August Edition</title>
 <link>http://www.macgeekery.com/cleaning_out_the_queue_august_edition</link>
 <description>	&lt;p&gt;Welcome to yet another series of short answers.  I&amp;#8217;d write something larger but there are two factors preventing that:&lt;/p&gt;

	&lt;ol&gt;
		&lt;li&gt;The lack of time to actually write it, these days.&lt;/li&gt;
		&lt;li&gt;The lack of geeky questions in the queue to fuel my desire to slack off on real work and write something fun.&lt;/li&gt;
	&lt;/ol&gt;

	&lt;p&gt;It&amp;#8217;s not you, it&amp;#8217;s both of us.  It&amp;#8217;s just not working out.  However, I think with a little effort we can get this going again.&lt;/p&gt;

	&lt;p&gt;So, with that in mind, let us go forth in my effort to reduce the size of the queue in my search for something to write a long and heavy article about&amp;#8230; &lt;span class=&#039;read-more&#039;&gt;&lt;a href=&quot;http://www.macgeekery.com/cleaning_out_the_queue_august_edition&quot;&gt;There&#039;s more &amp;raquo;&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;

</description>
 <comments>http://www.macgeekery.com/cleaning_out_the_queue_august_edition#comments</comments>
 <category domain="http://www.macgeekery.com/sections/tips/quickie">Quickie</category>
 <pubDate>Wed, 22 Aug 2007 14:47:56 -0500</pubDate>
 <dc:creator>Adam Knight</dc:creator>
 <guid isPermaLink="false">867 at http://www.macgeekery.com</guid>
</item>
</channel>
</rss>
