<?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>Jeff Malterre &#187; Uncategorized</title>
	<atom:link href="http://www.jeffmalterre.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jeffmalterre.com</link>
	<description>accessible web programmer, SEO specialist, e-commerce professional</description>
	<lastBuildDate>Tue, 05 Oct 2010 18:23:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Ubuntu 9.10 &#8211; Logitech MX 5500 &#8211; Getting keyboard mail notifications to work</title>
		<link>http://www.jeffmalterre.com/2010/03/07/ubuntu-9-10-logitech-mx-5500-getting-keyboard-mail-notifications-to-work/</link>
		<comments>http://www.jeffmalterre.com/2010/03/07/ubuntu-9-10-logitech-mx-5500-getting-keyboard-mail-notifications-to-work/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 21:17:47 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.sibble.com/?p=996</guid>
		<description><![CDATA[First I&#8217;d like to say how happy I am that *every* key/mouse button works except the Flip 3D/Zoom keyboard buttons &#8211; which I&#8217;m going to be working on soon. Everything works out of the box, even horizontal scrolling with mouse wheel tilt left/right. I&#8217;m pretty impressed! With all the keys working and utilities available for [...]]]></description>
			<content:encoded><![CDATA[<p>First I&#8217;d like to say how happy I am that *every* key/mouse button works except the Flip 3D/Zoom keyboard buttons &#8211; which I&#8217;m going to be working on soon.  Everything works out of the box, even horizontal scrolling with mouse wheel tilt left/right.  I&#8217;m pretty impressed!</p>
<p>With all the keys working and utilities available for the MX5500, getting mail notifications via keyboard is really easy to do.  What keyboard notifications am I talking about?  In Windows, the keyboard will give a little <em>beep</em> when a new email is received.  Also, a mail icon will pop up in the LCD on the keyboard.</p>
<p><span id="more-996"></span></p>
<p>First we need a mail notification application that can run custom commands on new email received and email checked (we need something to get rid of the mail icon once the mail notification has been acknowledged.)  Here&#8217;s a good one: <a href="http://www.nongnu.org/mailnotify/">Mail Notification</a>.  Note: if you have problems with getting SSL to work, you&#8217;ll need to add a source to the repository to get an updated version (see <a href="https://launchpad.net/~mail-notification-ssl/+archive/ppa">https://launchpad.net/~mail-notification-ssl/+archive/ppa</a>).</p>
<p>Once we get Mail Notification installed, we&#8217;re going to need a utility to control the keyboard functions (such as the <em>beep</em> and LCD icons.)  This utility is called mx5000-tool.  We&#8217;re not going to go into instructions on installing this, as they are readily available via a quick Google search.  Here is a good link to follow to get this utility installed: <a href="http://www.gentoo-wiki.info/Logitech_Cordless_Desktop_MX_5000#Installing_mx5000-tools">http://www.gentoo-wiki.info/Logitech_Cordless_Desktop_MX_5000#Installing_mx5000-tools</a>.</p>
<p>Next we&#8217;re going to make two scripts, one for new mail and one for read mail.  I like to keep things organized in my home directory, you can place these scripts anywhere you want.<br />
~/.scripts/mx5500/mail_new.sh:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/sh</span>
&nbsp;
<span style="color: #666666; font-style: italic;">#send a beep to the keyboard</span>
mx5000-tool <span style="color: #660033;">--device</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>hiddev0 <span style="color: #660033;">-b</span>
&nbsp;
<span style="color: #666666; font-style: italic;">#set the mail icon on the keyboard to 1 - on</span>
mx5000-tool <span style="color: #660033;">--device</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>hiddev0 <span style="color: #660033;">-i</span> <span style="color: #000000;">1000</span></pre></td></tr></table></div>

<p>~/.scripts/mx5500/mail_read.sh:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/bash</span>
&nbsp;
<span style="color: #666666; font-style: italic;">#set the mail icon on the keyboard to 0 - off</span>
mx5000-tool <span style="color: #660033;">--device</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>hiddev0 <span style="color: #660033;">-i</span> 0000</pre></td></tr></table></div>

<p>Remember you need to make these 2 files executable: <strong>chmod +x ~/.scripts/mx5500/*</strong></p>
<p>Now to pass these scripts as custom commands for the mail notification app.</p>
<p>Run <strong>gconf-editor</strong> by either running that in a terminal or hit ALT+F2, type &#8216;gconf-editor&#8217; an hit ENTER.  Browse to apps -> mail-notification -> commands.  Here we see &#8216;mail-changed&#8217;, &#8216;mail-read&#8217; and &#8216;new-mail&#8217;.</p>
<p>Click on &#8216;new-mail&#8217; and change the &#8216;command&#8217; value to &#8220;~/.scripts/mx5500/mail_new.sh&#8221; (without quotes.)</p>
<p>Click on &#8216;mail-read&#8217;.  Now when I was entering the custom command for this function, the &#8216;command&#8217; value was set as an integer.  Go ahead and double click it and change it to a string.  Now, change the &#8216;command&#8217; value to &#8220;~/.scripts/mx5500/mail_read.sh&#8221; (again, without quotes.)</p>
<p><strong>That&#8217;s it!</strong>  You can now sit back and enjoy the keyboard <em>beep boop</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jeffmalterre.com/2010/03/07/ubuntu-9-10-logitech-mx-5500-getting-keyboard-mail-notifications-to-work/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>DD-WRT350N &#8211; USB Multimedia</title>
		<link>http://www.jeffmalterre.com/2009/03/01/dd-wrt350n-usb-multimedia/</link>
		<comments>http://www.jeffmalterre.com/2009/03/01/dd-wrt350n-usb-multimedia/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 21:35:05 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.sibble.com/?p=937</guid>
		<description><![CDATA[So I run DD-WRT on my Linksys WRT-350N router. I know the router comes with a media server, allowing music and videos to be played through a wireless connection. My goal is to get this working using DD-WRT, but I&#8217;m having trouble figuring out how to do this. My first step was to upgrade my [...]]]></description>
			<content:encoded><![CDATA[<p>So I run DD-WRT on my Linksys WRT-350N router.  I know the router comes with a media server, allowing music and videos to be played through a wireless connection.  My goal is to get this working using DD-WRT, but I&#8217;m having trouble figuring out how to do this.</p>
<p>My first step was to upgrade my version of DD-WRT to v24-FINAL.  Doing this gave me the option to enable USB via the web control panel.  The upgrade went flawlessly.  I enabled USB and my external hard drive is connected.</p>
<p>This is where I am right now.  I&#8217;m doing a bit of reading into where to go from here, but it looks like I&#8217;m going to have to install some Optware packages.  My main concern now is how much space I have on the router to be able install the packages I will need.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jeffmalterre.com/2009/03/01/dd-wrt350n-usb-multimedia/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>HERE&#039;S THE PLAN: INVESTIGATE BILL READINGER&#039;S FRAUDULENT PROFILE</title>
		<link>http://www.jeffmalterre.com/2008/11/15/heres-the-plan-investigate-bill-readingers-fraudulent-profile/</link>
		<comments>http://www.jeffmalterre.com/2008/11/15/heres-the-plan-investigate-bill-readingers-fraudulent-profile/#comments</comments>
		<pubDate>Sat, 15 Nov 2008 05:49:39 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bill readinger]]></category>
		<category><![CDATA[cause]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[fraudulent profile]]></category>

		<guid isPermaLink="false">http://www.sibble.com/?p=31</guid>
		<description><![CDATA[Bill is a good guy, Bill is a simple guy.  He works, drinks Budweiser, and drives a Camaro.  Bill&#8217;s driveway attracts friendly rabbits, wounded squirrels, and Peeps.  Recently, someone &#8220;friend&#8221; of his made a fraudulent Facebook profile of Bill, thinking it would be funny.  Now, this so called &#8220;friend&#8221; is receiving personal messages from friends [...]]]></description>
			<content:encoded><![CDATA[<p>Bill is a good guy, Bill is a simple guy.  He works, drinks Budweiser, and drives a Camaro.  Bill&#8217;s driveway attracts friendly rabbits, wounded squirrels, and Peeps.  Recently, someone &#8220;friend&#8221; of his made a fraudulent Facebook profile of Bill, thinking it would be funny.  Now, this so called &#8220;friend&#8221; is receiving personal messages from friends and family.</p>
<div id="attachment_71" class="wp-caption aligncenter" style="width: 142px"><a href="http://www.sibble.com/wp-content/k8j.jpg"><img class="size-medium wp-image-71" title="Bill Readinger" src="http://www.sibble.com/wp-content/k8j-220x300.jpg" alt="A picture of Bill Readinger." width="132" height="180" /></a><p class="wp-caption-text">A picture of Bill Readinger.</p></div>
<p style="text-align: center;"><a class="aligncenter" title="Help Bill out, join the cause!" href="http://apps.facebook.com/causes/150706?recruiter_id=29195086" target="_blank">Help Bill out, join the cause!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jeffmalterre.com/2008/11/15/heres-the-plan-investigate-bill-readingers-fraudulent-profile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>website updates</title>
		<link>http://www.jeffmalterre.com/2007/03/14/website-updates/</link>
		<comments>http://www.jeffmalterre.com/2007/03/14/website-updates/#comments</comments>
		<pubDate>Wed, 14 Mar 2007 22:33:25 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[under construction]]></category>

		<guid isPermaLink="false">http://www.sibble.com/index.php/2008/03/05/website-updates/</guid>
		<description><![CDATA[beginning to implement new blog, i’ll be working on the site as well as templates over the following days]]></description>
			<content:encoded><![CDATA[<p>beginning to implement new blog, i’ll be working on the site as well as templates over the following days</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jeffmalterre.com/2007/03/14/website-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

