<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>I Can Has Linux? &#187; reminders</title>
	<atom:link href="http://icanhaslinux.com/category/reminders/feed/" rel="self" type="application/rss+xml" />
	<link>http://icanhaslinux.com</link>
	<description>Invisible Patent Infringement!</description>
	<lastBuildDate>Mon, 29 Aug 2011 13:37:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>5 ways to drop yourself reminders/alarms in Linux</title>
		<link>http://icanhaslinux.com/2007/10/03/5-ways-to-drop-yourself-reminders-in-linux/</link>
		<comments>http://icanhaslinux.com/2007/10/03/5-ways-to-drop-yourself-reminders-in-linux/#comments</comments>
		<pubDate>Wed, 03 Oct 2007 15:47:50 +0000</pubDate>
		<dc:creator>LightningCrash</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[reminders]]></category>

		<guid isPermaLink="false">http://icanhaslinux.com/2007/10/03/5-ways-to-drop-yourself-reminders-in-linux/</guid>
		<description><![CDATA[A lot of services on the web offer wake up calls, reminder calls, or just other services meant to drop you an e-mail or phone call at a specific time. You can do many of these things via a Linux box, and maybe save yourself some money in the process. Send yourself a one-time reminder [...]]]></description>
			<content:encoded><![CDATA[<p>A lot of services on the web offer wake up calls, reminder calls, or just other services meant to drop you an e-mail or phone call at a specific time. You can do many of these things via a Linux box, and maybe save yourself some money in the process.</p>
<ol>
<li>Send yourself a one-time reminder e-mail about something.</li>
<p>You can do this via the handy &#8216;at&#8217; command. For instance, if I wanted to shoot myself an e-mail after work reminding me to pick up my laundry from the dry cleaners, I could do the following:<br />
<code>echo "mail -s 'Get dry cleaning' me@myemailaddress.com &lt; /dev/null" | at 17:45</code></p>
<p>I can also send this e-mail to my cell phone, giving me another reminder away from my computer. US AT&amp;T users can send messages to their telephone number @txt.att.net and it will be received as an SMS message on the phone.</p>
<li>Pop up a one-time reminder on your computer about something.</li>
<p>The &#8216;at&#8217; command comes in handy again. If I want to remind myself to let my dogs in from the back yard, I can simply type:<br />
<code>echo "DISPLAY=$DISPLAY xmessage Let dogs in!" | at 18:15</code></p>
<p>At 6:15, a little message box will pop up telling me to let the dogs in.<br />
You can also specify times for &#8216;at&#8217; by using NOW + interval.<br />
For instance, using<br />
<code>at "NOW + 30 minutes"</code></p>
<p>will give me an execution time of 30 minutes from now. I could use hours, days, or weeks to get whatever effect I wanted. In addition, an e-mail log of everything will be sent to my local e-mail account, detailing what went on.</p>
<li>Alarm Clock with &#8216;at&#8217;</li>
<p>If you need to wake up early one morning, or you want to wake up from a nap, you can use your computer as an alarm clock and play an MP3 for you to wake up to. This one is straightforward enough. You&#8217;ll need mpg321 installed to use this, and know the path to the mp3 file you want to play.<br />
<code>echo "mpg321 ~/Trivium/Rain.mp3" | at 5:30AM</code></p>
<p>You&#8217;ll have to execute <code>pkill mpg321</code> in a terminal to make it shut up, though.</p>
<li>Alarm Clock with &#8216;cron&#8217;</li>
<p>Now we&#8217;re going to do the same thing, but on every weekday of every month.<br />
Execute <code>crontab -e</code> and then type in the following:<br />
<code>30 5 * * 1-5 mpg321 ~/Trivium/Rain.mp3 &gt;/dev/null</code></p>
<p>Now, every weekday at 5:30, you&#8217;ll get that mp3 blasting out over your speakers. Obviously you&#8217;ll need to specify your own MP3 file. You&#8217;ll also need to execute <code>pkill mpg321</code> to make this one shut up. Your spouse may not like this idea, but assure your spouse that it will make you wake up more easily.</p>
<li>Alarm Clock with KAlarm</li>
<p>You&#8217;ll need to install KAlarm for this one. KAlarm will let you run XWindows applications (or even command line apps) via a cron-like process. It can also send e-mails and pop up messages. Check out their documentation <a href="http://www.astrojar.org.uk/kalarm/doc/index.html">here</a>.<br />
You can schedule MP3s with XMMS and Totem much in the same way as you can mpg321.<br />
<code>xmms ~/Trivium/Rain.mp3</code><br />
<code>totem ~/Trivium/Rain.mp3</code></p>
<p>You can set up Kalarm to run these programs and blast out your music for a specified time. If you haven&#8217;t killed the application within that set time period, Kalarm can kill it for you. Which is handy when you&#8217;re not home and you have heavy metal blasting through your 7.1 Surround Sound speakers at 5:30 in the morning for your neighbors to hear. Eviction isn&#8217;t high on anybody&#8217;s priorities list.</ol>
<p>Did I miss anything? Leave it in the comments section.<br />
Until next time!<br />
-LightningCrash</p>
]]></content:encoded>
			<wfw:commentRss>http://icanhaslinux.com/2007/10/03/5-ways-to-drop-yourself-reminders-in-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

