• Better dock menus

    OS X has an alternate, and I think better, menu format for dock folders. With the alternate menus you have bigger icons, a cleaner look, better scrolling for long lists, and you can click into nested folders right in the menu.

    To enable the alternate view, open Terminal and type:
    defaults write com.apple.dock use-new-list-stack -boolean YES; killall Dock

    If you find you don’t like these changes, type the command again, replacing YES with NO.

    Source: maclife.com

     
  • Maker vs. Manager schedule

    This essay captures something I struggle with all the time: how to get momentum on a project when your day is dominated by calls & meetings. Short answer, you can’t. You need to do project work in relatively long uninterrupted chunks of time.

    “For someone on the maker’s schedule, having a meeting is like throwing an exception. It doesn’t merely cause you to switch from one task to another; it changes the mode in which you work.”

    Maker’s Schedule, Manager’s Schedule, and also by the same guy (Paul Graham), Good and Bad Procrastination.

     
  • Testing Windows Live Writer

    Just got Windows 7 running in Parallels on my iMac. This post is being written using the Windows Live Essentials download of goodies from Microsoft.

    Windows 7 seems pretty good if Aero is running, but for some reason it is getting disabled at every boot. Annoying.

    Seems to work fine. Kudos Microsoft!

     
  • Exporting subtitles from DVD Studio Pro

    For a recent DVD project I needed to create multiple language subtitles. Basically this involves getting a transcript of the audio track in English, laying it in as subtitles, then exporting the English subtitle track out to a timecode formatted text file to the translation company can translate phrase by phrase. You would think exporting a subtitle track would be built into a professional DVD authoring program, but it’s missing from Apples DVD Studio Pro. Not only is it missing, but finding a utility to help with this was frustratingly difficult.

    If you’re faced with a similar challenge, the program you want is Subtitle Xtractor. It’s a great program that does the job perfectly, and is donationware to boot.

     
  • Keyboard shortcut to paste unformatted text into Word 2008 for the Mac

    First paste the following into the Script Editor and save it to the Word Scripts folder in your Office 2008 identity:

    tell application "/Applications/Microsoft Office 2008/Microsoft Word.app"
    	tell selection
    		try
    			set theClip to Unicode text of (the clipboard as record)
    			type text text theClip
    		end try
    	end tell
    end tell
    

    Then use System Preferences to set a keyboard command for the resulting script menu item. A kludge, but seems to work. I found this here.

     
  • Lightscribe

    Here’s the ultimate simple, free labeling software for lightscribe. Lightscribe takes forever to burn labels, but that is more than made up for by not fiddling with adhesive labels or finicky inkjet disc printers. Get a Lightscribe drive, chuck the $35 graphics-focused program it comes packaged with, and get this from the Lightscribe manufacturer’s site:

    Lightscribe Simple Labeler

    It prints one line of text on the top, one on the bottom, that’s it.

     
  • Goodbye Roxio Toast, Hello Burn!

    Free, and does what you want with way less crap than Roxio Toast. To save DVDs to ISO images (which you can then use as virtual masters for duplicating) choose the Save As CD/DVD Image option. It will produce a .cdr file. The file extensions can be confusing: .cdr (Burn plus some other Mac programs), .toast (Roxio Toast), and .iso (the rest of the world) are all identical — the files produced are bit-identical to each other.  So you can change the resulting file extension from .cdr to .iso if you want. The resulting file can be used as a disc master on virtually any burning program, Mac, Windows, or Unix.

    Burn

     
  • iPhone Buzzing on nearby speakers – low tech solution

    My 3G iPhone works great, but causes an inductive buzz on pretty much anything with speakers within a 5′ radius. After some googling about, I came on the approach of using an anti-static bag (sometimes called ESD packaging). If the phone is shielded by the bag it knocks down the buzzing almost completely, while still allowing the phone to stay in touch with the tower.

    Perfect size ESD bag for the iPhone

    Perfect size ESD bag for the iPhone

    With some experimenting, I have found a small tray with curved sides – just setting the iPhone in the tray on top of the bag solves the problem.

    Perfect no-hassle buzzkill for the iPhone

    Perfect no-hassle buzzkill for the iPhone

    There’s a product idea in here somewhere. In the meantime you can order ESD bags and trays from here: http://www.correctproducts.com

     
  • Turning on screen sharing (VNC) via a terminal connection

    For some reason my Mac Mini running OS X Leopard tends to drop its VNC server. Here’s how to turn it back on via the terminal:

    sudo sh -c “/bin/echo -n enabled > /Library/Preferences/com.apple.ScreenSharing.launchd”

    I think this will also work for Tiger, not sure about previous versions.

     
  • Unprotecting Word documents

    If you are using office XP or 2003, you can change the view to HTML-Code using Microsoft Script-Editor by pressing the [Alt]+[Shift]+[F11] key combination.

    Search for “Password” and you will find somethimg like this:
    ReadOnly
    19E8E61E

    To remove the protection:
    -Just remowe those two lines, and after saving the document , the protection is gone.

    To remove the password:
    -replace the Password, here “19E8E61E”, with “00000000″, save the Document and close “Script-Editor”.

    Alternative you can save your document as .html and use a html-Editor.

    (from Alex Scoble’s blog)