Zehnder's Snowfest

The roomie and I, along with some friends, are headed up to Zehnder's Snowfest this year so I thought I'd take a look at the website. I must be trapped in some sort of temporal loop.

snowfest wrong year

January 27, 2013 at 1:10pm | 0 Comments
Tagged:

Full-Color Mail Flags

Jim Whimpey brought up a complaint about flags in OS X Mail:

Why does Mail have these much too subtle flags instead of full colour labels like the rest of the OS!?

Jim Whimpey via Twitter

I figured I'd tackle the problem because I imagine other users have the same issue. I've made some OS X services to assign flags with matching message backgrounds. These services just contain a few lines of AppleScript that change the flag and the background color of the selected messages. If you want to take a look, you can open them in Automator. Here's how you use it.

  1. Quit Mail if it's running.
  2. Download Full Color Flags
  3. Extract the contents to ~/Library/Services/

    Services folder

  4. Optional: Assign keyboard shortcuts to the Services.

    Keyboard Prefs

To use these, open Mail, select a message or messages, then go to Mail > Services and choose your desired flag.

Menu.png

And this is the result:

Menu.png

This solution works for me. There is no guarantee that it will work for you. I am not liable if it does not work for you or if it damages your computer or data. Proceed at your own risk! You may use this solution free of charge for any purpose.

October 30, 2012 at 12:48am | 0 Comments
Tagged: , and

Bacon & Blue Cheese Guacamole

  • 5 avocados
  • 10 strips bacon, cooked and crumbled
  • 1/2 cup blue cheese crumbles
  • 3-4 scallions, finely sliced
  • 1/4 cup fresh lime juice (about 2 limes)
  • hot sauce to taste
  • salt, to taste

Cut avocados in half and remove the pit. Scoop the flesh into a gallon-size zip-top bag and remove most of the air. Squish the avocado until it is mostly smooth—chunks are good!

In a bowl, combine the avocado, bacon, scallions, lime juice, hot sauce, and salt. Gently fold in the blue cheese. Put plastic wrap directly on the surface of the guacamole and chill for 2 hours. Serve with tortilla chips and/or carrot sticks.

September 24, 2012 at 4:43pm | 0 Comments
Tagged: and

Cake Anytime

If you enjoy cake but don't want to make a whole one, make individual servings of cake with the following recipe.

3 2 1 Cake Mix

  • 1 box angel food cake mix
  • 1 box cake mix (any flavor)

Combine ingredients thoroughly. Store in an airtight container.

3 2 1 Cake

  • 3 tablespoons 3 2 1 Cake Mix (see above)
  • 2 tablespoons water

Put ingredients in a microwave-safe container such as a coffee cup. Mix to combine. Microwave mixture for one minute. Top with frosting, fruit, whipped cream, jam, or whatever you like.

It's called "3 2 1 cake" because it's 3 tablespoons of mix, 2 tablespoons of water, 1 minute in the microwave. Thanks to my Grandma for sharing this with me!

April 9, 2012 at 11:03pm | 0 Comments
Tagged: and

AppleScript to Reboot into Windows

If you're running Boot Camp, it can be a pain to restart your Mac running Windows: you either have to go to Startup Disk preference pane and change your startup disk or you have to remember to hold down the "option" key when you start up your computer and then click on your Windows disk to start from it.

From the Windows side, it's easy: Apple provides a Boot Camp app that runs in the task bar. All you have to do is right-click it and choose "Restart in OS X" and you're good to go. Why can't it be that easy under OS X?

With the AppleScript I came up with, it is!

Be advised that I am not an AppleScript expert. I pieced this together from code snippets I found on the Internet and changed to meet my needs. It works for me. There is no guarantee that it will work for you. I am not liable if it does not work for you or if it damages your computer or data. Proceed at your own risk! You may use this code free of charge for any purpose.

set adminpass to "YOURPASSWORDHERE"
 
tell application "Finder"
	set iconPath to (get name of startup disk) & ":Applications:Utilities:Boot Camp Assistant.app:Contents:Resources:DA.icns" as alias
end tell
 
set askRestart to display dialog "Restart in Windows?" buttons {"Cancel", "Restart"} default button 1 with icon iconPath
set doRestart to button returned of askRestart
 
if doRestart is equal to "Cancel" then
	quit
end if
 
if doRestart is equal to "Restart" then
	do shell script "bless -mount /Volumes/BOOTCAMP/ -legacy -setBoot -nextonly; shutdown -r now" password adminpass with administrator privileges
end if

Open This Code in AppleScript Editor and change the text YOURPASSWORDHERE to your administrator password. If you've changed the name of your Boot Camp volume, you'll need to change BOOTCAMP on line 15 to the name of your Boot Camp Volume.

Once you've done this, just save as an Application to somewhere convenient then drag it to your Dock. When you click on it, you'll get this:

Restart in Windows

Click the "Restart" button to restart your Mac running Windows or click the "Cancel" button to quit this app.

October 1, 2011 at 12:26pm | 2 Comments
Tagged: , , and

 1 2 3  36 Next →

Recent Comments

Monthly Archives

More...

Tags

More...