Was just at the new Blue Bottle location yesterday, will def try the siphon thing when I stop by today. This location is great coz I now won’t have to go all the way to Hayes valley to get their Hayes Valley Espresso beans… I pull ristretto (with my triple bottleless PF) with those beans and it’s divine.
Actually it would be awesome if Starbucks start doing siphon, not gonna happen though. I haven’t seen a Starbucks location with a La Marzocco machine for a long long time, the SA machines are taking over, sadly…
So far, the Clover is still something of a cult object, with just over 200 machines scattered around the world. But it might soon become a common sight: Starbucks has just bought two.
In Firefox, you can drag any images to the desktop or anywhere in Finder and it will download it. I turned on Mouse Gestures, and with that on, dragging of the mouse starts a gesture and won’t trigger the default action. To get both gestures and drag-and-drop to work with the left button, i.e., just one finger touching the trackpad, I switched from Mouse Gesture to All-in-One Gestures, and configured it like this:
Now navigation gestures as well as drag-n-drop work perfect.
A problem I’ve been having is that everywhere I go I need to change the SMTP server settings for my personal and consulting accounts. The GMail IMAP accounts have authenticated SMTP and they work great everywhere, but for my personal IMAP accounts, I use the SMTP server provided by my ISP as I don’t want to set up authenticated SMTP over SSL or POP/IMAP before SMTP on my server and I definitely don’t want to run an open relay.
To solve this, I found Marco Polo, with it you can define a set of Contexts, which could be something like Office, Home, or anything else. You then define a set of Rules to figure out which Context you’re in based on Evidence Sources such as the mac address or SSID of the wireless access point you’re connected to, presence of Bluetooth/USB keyboard/mouse, external monitor, ethernet cable plugged in or unplugged, etc. Base on these you can setup rules
Here are screenshots of my setup:
Contexts:
Evidence sources:
Rules:
Once you have these setup it will guess where you’re at based with a confidence score, and you can trigger Actions on entering or leaving a Context.
Here are my actions to set SMTP servers:
Notice the first 3 MailSMTPServer actions were disabled, this is because that action actually changes the smtp server of ALL your accounts in Mail.app. I have 2 GMail over IMAP accounts (GApps for domains) and I want to use GMail’s authenticated SMTP server for those because they manage your sent mail properly when you do that. There is a “User only this server” checkbox in Leopard’s Mail.app but that doesn’t prevent the MailSMTPServer action from changing it! So to get what I want, which is to only set the SMTP server for my personal and consulting accounts, I had to do a little bit of scripting, I like Ruby so I write a rb-appscript like this:
#!/usr/bin/env rubybegin; require'rubygems'; rescueLoadError; endrequire"appscript"include Appscript
['Personal', 'Consulting'].eachdo|account_name|#tell application "Mail" to set smtp server of account_name to argv[0]
app('Mail').accounts[account_name].delivery_account.set(app('Mail').smtp_servers[ARGV[0]])end
#!/usr/bin/env rubybegin; require 'rubygems'; rescue LoadError; end require "appscript" include Appscript['Personal', 'Consulting'].each do |account_name| #tell application "Mail" to set smtp server of account_name to argv[0] app('Mail').accounts[account_name].delivery_account.set(app('Mail').smtp_servers[ARGV[0]]) end
Marco Polo however can only execute shell scripts, so I had to compile the script into a Mac application to use the Open action in Marco Polo. To do that I had to write a shell script for each SMTP, something like this:
#!/bin/sh/Users/ayn/bin/setSMTP.rb comcast
#!/bin/sh /Users/ayn/bin/setSMTP.rb comcast
To make this script into an OS X application, I used Platypus:
It didn’t work at first, I ran it with error outputs and turned out the Ruby library wasn’t setup correctly, so to get it working I had to go add the path for Ruby:
Now you can compile the shell script, which calls the ruby script with an argument, into a Mac application. In Marco Polo you can then use the Open action to call that .app. Kindda a long way to do something relatively simple, I wish the “Use only this server” account option in Mail.app actually works as expected.
Been wanting to do this for a while so my Adium contact list will show on all spaces, it’s not as straight forward to do as with most unix window managers…
If you have a Mac with a FrontRow remote, by default any remote will work with your Mac. I was setting up my security preferences on my new Mac and saw that you can pair your Mac with just 1 remote, pretty neat.
I actually haven’t even opened my remote coz I’m just gonna use the one from Sherry’s MacBook.