Posts Tagged ‘command line’

Interact with Google Apps at the Command Line

June 18th, 2010, 9 comments


Having a ball playing around with the just-released GoogleCL tool, which offers command line access to Google Calendar, contacts, Docs, Picasa, Blogger, and YouTube. With Python-based GoogleCL installed, you can do things such as list today's events on your GCal right in the terminal, like so:

$ google calendar today title
Coffee with Michael and Samir
Dozing off
Lunch at Flingers

Instant use case: Add echo "Next 24 hours:";google calendar today title to your ~/.bash_profile file to see what you've got scheduled for the day when you launch a new Terminal window. Some more GoogleCL fun inside.

Read the rest »

Namebench Benchmarks DNS Services

December 6th, 2009, 1 comment

Namebench
See whether or not your ISP's DNS server is faster or slower than other alternatives like OpenDNS or Google Public DNS with Namebench. This free benchmarking tool pits your current DNS servers against alternatives and generates handy charts and recommendations for which of your DNS choices are the fastest. Using either your browser history or Alexa's top 10,000 global domain names, by default Namebench runs 200 tests to see which resolve most quickly using regional DNS servers, public services like Google's and OpenDNS's, and your current DNS services. Here's what some of the benchmark results look like.

Read the rest »

How to Back Up Your Full-Size Flickr Images by Set

August 5th, 2009, 6 comments

Flickr backup folderIf you email photos to Flickr directly from your phone like I do, you probably don't always have a copy of the images you've published online on your computer. There are a few applications that back up your Flickr photos, but right now I'm digging Dan Benjamin's (admittedly geeky) Python script, FlickrTouchr.

FlickrTouchr doesn't support video uploads or grab any metadata about your photos (like tags, comments, favorites, etc). But it does arrange your backups by set name. In one command, you authorize FlickrTouchr to access our Flickr account, and it gets busy downloading your files. You'll need Python to run this and a folder to save your images. (Python comes in OS X, install it on Windows from here.) Here's what FlickrTouchr looks like in action.

Read the rest »

MinTTY Gives Cygwin a Native Windows Interface

March 26th, 2009, 8 comments

MinTTY next to Cygwin If you need your Unix command line on a Windows PC, chances are you use a terminal emulator like Cygwin--and if you do, you want to check out MinTTY. The MinTTY terminal window for Cygwin puts a native Windows interface on Cygwin which offers more keyboard shortcuts and colors and styles. Check out the difference between Cygwin and MinTTY side-by-side in the thumbnail on the right. Using MinTTY you can turn on window transparency, set your font, and colors, copy and paste output by just selecting it with your mouse, and scroll up using the Shift+arrow key combination. (Once it's installed, right-click on the MinTTY window and choose Options to customize its look and keyboard shortcuts.) Here's what the full MinTTY window with transparency turned on looks like.

Read the rest »

Todo.txt Command Line Interface Updated Today

February 18th, 2009, 9 comments

Todo.txt CLI 2.0 Not only am I the kind of hopeless nerd who spends a lot of time in the terminal, I'm also the kind who, in the face of countless elegant pieces of task management software, decides to write my own.

Today I released the newest version of my three-year-old todo.txt command line interface--a 600-line bash script that lets me add to, check off, and slice and dice my todo.txt file without a full-on editor.

To download it and try it out, or just see a screencast of it in action, check out my full writeup at Lifehacker this morning: Todo.txt CLI Manages Your Tasks from the Command Line.