This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |