Skip to content

Instantly share code, notes, and snippets.

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>GetGlue Test</title>
<meta name="description" content="GetGlue Test">
<meta name="author" content="Clinton Paquin">
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>GetGlue Test</title>
<meta name="description" content="GetGlue Test">
<meta name="author" content="Clinton Paquin">
#!/bin/bash
user=clinton.paquin
pass=$(security find-internet-password -w -a "$user" -s "accounts.google.com")
curl -u "$user:$pass" --silent "https://mail.google.com/mail/feed/atom"| perl -ne '
print "Subject: $1 " if /<title>(.+?)<\/title>/ && $title++;
print "(from $1)" if /<email>(.+?)<\/email>/;
' | terminal-notifier -title "Gmail" -sound default;
Vagrant isn't bullet proof
Several of my co-workers have been evangelizing about Vagrant for sometime. I actually think it's a pretty cool concept, so when the opportunity came around today to give it a try, I jumped.
Getting Startedd
http://docs.vagrantup.com/v2/getting-started/index.html
Despite what the directions provided at Vagrant might have you believe, this isn't enough to get you started:
$ vagrant init precise32 http://files.vagrantup.com/precise32.box