You love your comfortable command line, but all the cool kids are
playing in the Web 2.0 web space, and you want to stay true to your
roots? Want a Web 2.0 calendar, but still love (or need) command line
access?
I just found the answer: gcalcli.
This little tool will let you list your appointments, get an list your
events, get an agenda, print ascii rendering of your calendar for the
week or month. You can even add events to the calendar.
I like the fact that I can easly get at my gcalendar from anywhere (even
my cell phone), and now I can do it from my shell.
The only downsides so far? The code has not been updated since October
of 2007, and the speed can be a little slow sometimes. I am going to
play with it for a while to see if I like it enough to replace remind.
Back in my article on Remind, I
talked about the simple power of remind to power your scheduling needs.
That is all fine and good, but how to you get it to tell you when you
have an event?
In its simplest form, when you run remind from the command line, it
will not only display the current day’s reminders, but it will run in
the background and wake up to tell you about other reminders on the
screen while you work.
This is fine, but what happens if you do not have that termial open in
front of you? Well, I have two ways I approach that issue.
First, when I run under X (yeah, yeah, I know, but I use cli tools
under X), I have this added to my
.xinitrc:
remind -z -k’xmessage -buttons okay:0 -default okay %s&’ ~/.reminders
&
Let’s look at the command line:
- The -z tells remind to wake up every 5 minutes and reread the
.reminders file.
- The -k tells remind to run a command instead of simply printing
the reminder to the screen
- xmessage -buttons okay:0 -default okay %s& is the secret sauce
of this. This is the command run when there is an alarm. This
command line calls xmessage (which is on pretty much any box with X)
to display the alert. You could use zenity or kmessage, or
winpopup, or whatever. This is what puts the alert in your face
when you are not looking at the screen. The & is needed to make
this command non-blocking by putting it in the background.
That all good if you are setting at your computer. But, what do you do
when gasp you leave to computer? This is a little tricker. For this,
my solution needs two things: 1) a computer which is always on and 2) a
way to send messages to your cell phone/pager (sms or email). I have a
cron job which checks to make sure remind is running, and restarts it if
it is not (I use a hosting provider which does not like long running
processes). The command line is similar to the one for X, but with a
difference:
TZ=CDT6CST ~/bin/remind -z -k"echo %s
Want a pizza, and do not want to fire up that pesky GUI? We have the solution for you: Pizza Party - Command Line Pizza ordering program (was at beigerecords.com/cory/pizza_party/)
Currently, only from Dominos, so if you do not have one near you who accepts on-line orders (sigh, mine does not), then you are out of luck.