Weekly Tweets (2012-02-19)

By , February 19, 2012 12:41 pm

Weekly Tweets (2012-02-12)

By , February 12, 2012 12:41 pm

Weekly Tweets (2012-02-05)

By , February 5, 2012 12:41 pm
  • @pablo069eh *I* am not offering anything. As to the "why" of The Rumpus's offer…no idea! Ask one of the 1200+ who signed up for it… in reply to pablo069eh #
  • RT @cogdog Internet memes done as minimalistic movie posters http://t.co/7OgEa1c9 #
  • Speaking of the epistolary: it's not too late (never is) to take part in the "Month of Letters" challenge: http://t.co/irv4ap4A #
  • The Rumpus has a subscription for $5/month to receive a weekly paper letter from an author. Props for originality! http://t.co/tNqfVjHb #
  • @cljennings I think it can be taught well to youth, but they just don't know enough about the world to get the most important stuff. in reply to cljennings #
  • @suifaijohnmak experience, maturity, knowledge of the world… as youth is wasted on the young, so is Shakey in reply to suifaijohnmak #
  • I'm starting to panic…it will soon be too late for a Magnum P.I. reunion movie #
  • Shakespeare is wasted on the young… #
  • "A nation that destroys its systems of education, degrades its public information, guts its public…" http://t.co/mCUnfSQF #
  • Watching Romney speak is what I imagine it would be like to watch a robot competing on American Idol #
  • Dear God: WTF? http://t.co/wGmgpBY4 #

Weekly Tweets (2012-01-22)

By , January 22, 2012 12:41 pm
  • So the Republican primary comes down to Egomaniacal Whack Job vs Really Rich Robot. It's hard to see why even Republican voters care. #
  • @cogdog I think it's been warmer than -20F once since we got back from Hawaii on December 30. I'm in involuntary hibernation… in reply to cogdog #
  • @sleslie Thanks! The holidays go on and on… at least when it comes to presents I still need to send out… in reply to sleslie #
  • Damn you, flickr uploader and your non-sensical ordering. #

Weekly Tweets (2011-12-11)

By , December 11, 2011 12:41 pm

Weekly Tweets (2011-11-27)

By , November 27, 2011 12:41 pm

Weekly Tweets (2011-11-20)

By , November 20, 2011 12:41 pm
  • @glassbeed If it's any consolation, it's -28C here… first real cold of the winter. Though we'll see -40, so I'm kind of thankful. in reply to glassbeed #
  • @ottonomy metaphorically speaking, so do I … in reply to ottonomy #
  • Trying to exorcise some demons by writing a letter or two. Why won't the past stop whispering darkly to me? #
  • Just figured out that my mini-research project is WAY TOO BIG. Which means backing up and redesigning. Sigh. #

Weekly Tweets (2011-11-13)

By , November 13, 2011 12:41 pm
  • Fascinating insight into our own minds and our assumptions: Part II – Debunking Myths of the Medical World – http://t.co/yWrH5CfA #
  • Fascinating insight into our own minds and our assumptions: Part I – Michael Lewis on King of Human Error http://t.co/TrdOveOi #
  • @HHG it's intellect inflation… in reply to HHG #
  • @freeryan Yep… it allows me to easily have my entire junk drawer on *every* computer! in reply to freeryan #
  • Learning Webs from Deschooling Society – At present, attention is focused on the disparity between rich and… http://t.co/gwkPv4j8 #
  • Of course I'm schedule to fly to Nome just as the biggest storm in 113 years (at least) is going to hit the town. #bitememothernature #
  • RT @gsiemens: see @snowded's post this morning? http://t.co/FVnyxlfb Language is the master of (wo)man [late response: great post!] #
  • #dropbox and LAN Sync… you saved my butt again! #

Launchbar to Twitter (to Toodledo)

By , November 7, 2011 9:11 am

I’m a big fan of LaunchBar–the best quick launcher for Mac I have yet found–and have become a heavy user of Toodledo for task management–which I also recommend. So it was natural that I would want a way to add tasks to Toodledo quickly using Launch Bar. The easiest intermediary seemed to be Twitter–you can add tasks to Toodledo using a direct message–so after much searching and stealing of code (I’ve never used AppleScript before), I cobbled together the following system using AppleScript and the Twurl command-line Twitter client. This could be modified relatively easily to be a quick way of just posting to Twitter generally.

Step A

If you haven’t already, you obviously need to:

  1. Install LaunchBar
  2. Join Twitter
  3. Join Toodledo

Step B

Install Growl, which I use to notify the user that the addition was successful. You can hack those lines out of the code if you want.

Step C

Install the Twurl package (which is a Ruby “gem”). This is easily done via the command line. Fire up your terminal and use the following command to install Twurl:

sudo gem install twurl

Then add your Twitter keys so Twurl can post to Twitter using your identity:

twurl authorize --consumer-key YOUR CONSUMER KEY  --consumer-secret YOUR SECRET KEY

(You get these keys from the Twitter Dev site. If you don’t have anything there yet, sign in and use the create an application link. Choose a name you can remember, such as ASTwitter, and use your web site as the “callback” address)

Step D

Open up the AppleScript Editor and create a new script with a name that matches the command you want to use in LaunchBar. I call mine td.scpt. Paste in the following code, and save the script to to the ~/Library/Application Support/Launchbar/Actions folder:

on handle_string(inTweet)
    tell application "System Events"
        set isRunning to (count of (every process whose bundle identifier is "com.Growl.GrowlHelperApp")) > 0
    end tell
    if isRunning then
        set qTweet to quoted form of ("screen_name=toodledo&text=" & inTweet)
        set twitterPost to "twurl -d " & qTweet & " /1/direct_messages/new.json"
        set twitterResponse to do shell script twitterPost
        my growlRegister()
        if twitterResponse contains "<error>" then
            growlNotify("Error Adding ToodleDo Task", "Post Failed. Twitter Down?")
        else
            growlNotify("ToodleDo Task Added", inTweet)
        end if
    end if
end handle_string

using terms from application "Growl"
    on growlRegister()
        tell application "Growl"
            register as application "Toodledo Add" all notifications {"Alert"} default notifications {"Alert"} icon of application "Growl.app"
        end tell
    end growlRegister

    on growlNotify(grrTitle, grrDescription)
        tell application "Growl"
            notify with name "Alert" title grrTitle description grrDescription application name "Toodledo Add"
        end tell
    end growlNotify
end using terms from

Step E

Use your new action! Invoke LaunchBar and type the name of the script (aka the shortcut):

Launch script using LaunchBar

Press enter and add the title and other info for your task:

Entering a task

Press enter again and when the Tweet has been posted, you will receive a confirmation from Growl:

Growl notification

Notes

  • Your mileage may vary. Use at your own risk. No lifeguard on duty.
  • I’ll try to help if you ask in the comments, but I have limited time and expertise to do so!
  • The script doesn’t actually check that the task was added to Toodledo, only that the Tweet was sent. There can be a lag between the Tweet and your new task’s appearance on Toodledo.
  • This code is cobbled together from various sources and help files… thanks to all those folks.

Evolve with Hitler

By , November 6, 2011 5:37 pm

Evolve with Hitler (Bay of Fundie)

via @jasongreen — and there are more (ymmv).

Panorama Theme by Themocracy

Creative Commons Attribution 3.0 Unported
This work by Chris Lott is licensed under a Creative Commons Attribution 3.0 Unported.