<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Reflected Pensiveness &#187; Fedora</title>
	<atom:link href="http://danielsmw.wordpress.com/tag/fedora/feed/" rel="self" type="application/rss+xml" />
	<link>http://danielsmw.wordpress.com</link>
	<description>beneath the leaky pipe of thought.</description>
	<lastBuildDate>Wed, 11 Nov 2009 14:59:09 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='danielsmw.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/068773adab1d2a4ce43995bd73267cb4?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Reflected Pensiveness &#187; Fedora</title>
		<link>http://danielsmw.wordpress.com</link>
	</image>
			<item>
		<title>Communicating with SPCI</title>
		<link>http://danielsmw.wordpress.com/2009/10/20/communicating-with-spci/</link>
		<comments>http://danielsmw.wordpress.com/2009/10/20/communicating-with-spci/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 23:24:29 +0000</pubDate>
		<dc:creator>Matthew Daniels</dc:creator>
				<category><![CDATA[Science and Mathematics]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Coding Projects]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Physics]]></category>

		<guid isPermaLink="false">http://danielsmw.wordpress.com/?p=245</guid>
		<description><![CDATA[I used SCPI to communicate with a Keithley 6485 Picoammeter. I doubt seriously that many people reading this will ever need to repeat this task, but it's all I have to present some examples.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsmw.wordpress.com&blog=6360008&post=245&subd=danielsmw&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h2>Background Story/Flavor Text</h2>
<p>So I&#8217;m working on getting this ammeter to interface with Linux system for <a href="http://www.ces.clemson.edu/nanoscience">the lab</a>, and it turns out that this thing supports the Standard Commands for Programmable Instruments (SCPI). A few hours, Google searches, and Perl scripts after I started, I&#8217;d done what I would call a reasonable job of communicating with this device and pulling data from it.</p>
<p>So what is SPCI, and how does it work?</p>
<h2>Connecting the Interface</h2>
<p>SPCI is just a standard set of commands, not a defined interface. But it turns out that when you&#8217;re communicating with electronics SPCI is often used over serial connections like GPIB or RS-232. In my case, I was forced to use RS-232 because of hardware limitations.</p>
<p>Now, you can just read and write directly with the device handle. In my case using RS-232, I ended up discovering that</p>
<pre style="padding-left:30px;">/dev/ttyS0</pre>
<p>was right for me.</p>
<h2>Commands</h2>
<p>The entire set of commands is found in <a href="http://www.ivifoundation.org/docs/SCPI-99.PDF">this documentation from the IVI foundation site</a>. The commands are organized in a directory like structure. If I want to execute the command to ask how many errors messages are sitting in the buffer, for example, I&#8217;ll execute this:</p>
<pre style="padding-left:30px;">:SYST:ERR:COUNT?</pre>
<p>What this effectively seems to do is&#8230;</p>
<ol>
<li>Go to the &#8220;root&#8221; directory [:]</li>
<li>Look in the SYST(em) folder [SYST]</li>
<li>Look in the ERR(or) folder [:ERR]</li>
<li>Execute the COUNT command [COUNT]</li>
<li>Note that this is a query; i.e. returned data is expected [?]</li>
</ol>
<p>Each command has as:</p>
<pre style="padding-left:30px;">:SYSTEM:ERROR:COUNT?
:System:Err:Count?
Syst:ERROR:COUNT?</pre>
<p>Note that you can vary capitalization without consequence, you can choose to ignore that prefixed colon, and you can even mix around when you use long and short forms.</p>
<h2>Example</h2>
<p>I used SCPI to communicate with a Keithley 6485 Picoammeter. I doubt seriously that many people reading this will ever need to repeat this task, but it&#8217;s all I have to present some examples.</p>
<p>To turn off the zero check on the picoammeter and take the current reading, we could execute these commands:</p>
<pre style="padding-left:30px;">Syst:ZCh 0
Read?</pre>
<p>Note that I could have used &#8220;OFF&#8221; in place of &#8220;0&#8243;; either is a legitimate boolean value for &#8220;false&#8221;. Meanwhile, a script running in the background that looks something like this:</p>
<pre style="padding-left:30px;">#!/bin/bash
cat /dev/ttyS0 &gt;&gt; datafile</pre>
<p>Will magically receive a line of data from the machine that we can interpret with a simple Perl script.</p>
Posted in Science and Mathematics, Technology Tagged: Coding Projects, Fedora, Linux, Physics <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielsmw.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielsmw.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielsmw.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielsmw.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielsmw.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielsmw.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielsmw.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielsmw.wordpress.com/245/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielsmw.wordpress.com/245/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielsmw.wordpress.com/245/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsmw.wordpress.com&blog=6360008&post=245&subd=danielsmw&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://danielsmw.wordpress.com/2009/10/20/communicating-with-spci/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/46f9713e079a22bbaae588b791117488?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">danielsmw</media:title>
		</media:content>
	</item>
		<item>
		<title>How to: Making Windows Work Like It Should</title>
		<link>http://danielsmw.wordpress.com/2009/09/08/how-to-making-windows-work-like-it-should/</link>
		<comments>http://danielsmw.wordpress.com/2009/09/08/how-to-making-windows-work-like-it-should/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 23:57:50 +0000</pubDate>
		<dc:creator>Matthew Daniels</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Science and Mathematics]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Humor]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[New Users]]></category>

		<guid isPermaLink="false">http://danielsmw.wordpress.com/?p=231</guid>
		<description><![CDATA[I have to commend Microsoft on the incredible user interaction they've instilled in their operating systems.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsmw.wordpress.com&blog=6360008&post=231&subd=danielsmw&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Two days ago, I was trying to help my friend make his WinXP laptop connect to Clemson&#8217;s WPA2 Enterprise network. It knows how to do it (it&#8217;s done it many times before), but at that instant the computer just didn&#8217;t feel like cooperating. We tried several solutions, including rebooting (twice!) and re-entering all of the wireless settings. No success.</p>
<div id="attachment_234" class="wp-caption alignleft" style="width: 310px"><a href="http://danielsmw.files.wordpress.com/2009/09/axeofdeath.png"><img class="size-medium wp-image-234" title="axe_of_death" src="http://danielsmw.files.wordpress.com/2009/09/axeofdeath.png?w=300&#038;h=240" alt="Axe of Death" width="300" height="240" /></a><p class="wp-caption-text">The Axe of Death, threatening to end the IBM Thinkpad if it didn&#39;t comply with our network-related requests.</p></div>
<p>Disgruntled, Mark (my friend) started to verbally assault the computer. Failing, he suggested a new approach: visually letting the computer know how frustrated I was. We opened up mspaint and I started to draw a laptop being hacked by a blood-stained battle axe. As I drew the woosh lines behind my axe &#8211; just so it was clear that the computer was about to be slaughtered &#8211; the innocent beige bubble popped up letting us know that, out of the blue, despite two minutes of sitting there after giving up trying to get an IP address, we had an excellent connection to tigernet (the wireless network).</p>
<p>We laughed. It was funny. What a coincidence, eh?</p>
<p>The next day (last night) the computer did it again. We opened the same bitmap we drew before&#8230; to no avail. This laptop knew what was going on. It knew it couldn&#8217;t actually be harmed by a bitmap image.</p>
<p>So I opened a command prompt and ran &#8216;format C:&#8217;. Before I could finish reading the warning line (Are you sure you want to do this? [y/n]), tigernet was connected.</p>
<div id="attachment_235" class="wp-caption alignleft" style="width: 310px"><a href="http://danielsmw.files.wordpress.com/2009/09/formatc.png"><img class="size-medium wp-image-235" title="format_C" src="http://danielsmw.files.wordpress.com/2009/09/formatc.png?w=300&#038;h=151" alt="Format C:\" width="300" height="151" /></a><p class="wp-caption-text">The ultimate threat to the Windows machine, bringing an otherwise unruly computing device to its knees.</p></div>
<p>I have to commend Microsoft on the incredible user interaction they&#8217;ve instilled in their operating systems. Threatening to slaughter and then vaporize someone would probably make them do what you want, so I suppose this is replicating human interaction, right? Man, it&#8217;s a shame Fedora won&#8217;t respond to threats like that.</p>
<p>In other news, Mark installed Fedora after that incident last night. It connected instantly and hasn&#8217;t dropped the connection. No threatening bitmaps necessary.</p>
<p>In other news, my girlfriend tells me that her computer starting running much better in the past week as well. She also happened to be shopping for new netbooks online last weekend.  <em>Coincidence??</em></p>
Posted in Personal, Science and Mathematics Tagged: Fedora, Humor, Linux, New Users <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielsmw.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielsmw.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielsmw.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielsmw.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielsmw.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielsmw.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielsmw.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielsmw.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielsmw.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielsmw.wordpress.com/231/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsmw.wordpress.com&blog=6360008&post=231&subd=danielsmw&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://danielsmw.wordpress.com/2009/09/08/how-to-making-windows-work-like-it-should/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/46f9713e079a22bbaae588b791117488?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">danielsmw</media:title>
		</media:content>

		<media:content url="http://danielsmw.files.wordpress.com/2009/09/axeofdeath.png?w=300" medium="image">
			<media:title type="html">axe_of_death</media:title>
		</media:content>

		<media:content url="http://danielsmw.files.wordpress.com/2009/09/formatc.png?w=300" medium="image">
			<media:title type="html">format_C</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Voice Transcripts</title>
		<link>http://danielsmw.wordpress.com/2009/08/20/google-voice-transcripts/</link>
		<comments>http://danielsmw.wordpress.com/2009/08/20/google-voice-transcripts/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 12:40:10 +0000</pubDate>
		<dc:creator>Matthew Daniels</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Voice]]></category>
		<category><![CDATA[Humor]]></category>
		<category><![CDATA[Lifestyle]]></category>

		<guid isPermaLink="false">http://danielsmw.wordpress.com/?p=228</guid>
		<description><![CDATA["Those are gonna suffer here at google voicemail"<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsmw.wordpress.com&blog=6360008&post=228&subd=danielsmw&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Man, I hope Google Voice is still considered to be in Beta. An old friend called today (I&#8217;m not sure if it was directly to my number yet, or if it was via my Witticism Dropbox; I guess I&#8217;ll find out when I get back my physical phone).  Part of what he actually said (quite clearly) was:</p>
<blockquote><p>I was very proud of myself for figuring out your google voicemail</p></blockquote>
<p>But Google Voice transcribed this:</p>
<blockquote><p>Those are gonna suffer here at google voicemail</p></blockquote>
<p>Which is much more sadistic and much more wrong. I suppose they&#8217;re still working on getting it right&#8230;</p>
<p>This isn&#8217;t an isolated incident; my voicemail transcriptions are 100% unreliable (which is not to say that they are 100% wrong, but wrong enough to be totally unreliable without checking the message manually). Example #2: I call my phone, looking for it around the house. I say:</p>
<blockquote><p>Hmm&#8230; where are you, dumb phone? *sigh* I guess I&#8217;ll find you in a minute, bye.</p></blockquote>
<p>Transcription:</p>
<blockquote><p>Or you some phone I guess of on June the, but.</p></blockquote>
Posted in Personal, Technology Tagged: Fedora, Google, Google Voice, Humor, Lifestyle <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielsmw.wordpress.com/228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielsmw.wordpress.com/228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielsmw.wordpress.com/228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielsmw.wordpress.com/228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielsmw.wordpress.com/228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielsmw.wordpress.com/228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielsmw.wordpress.com/228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielsmw.wordpress.com/228/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielsmw.wordpress.com/228/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielsmw.wordpress.com/228/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsmw.wordpress.com&blog=6360008&post=228&subd=danielsmw&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://danielsmw.wordpress.com/2009/08/20/google-voice-transcripts/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/46f9713e079a22bbaae588b791117488?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">danielsmw</media:title>
		</media:content>
	</item>
		<item>
		<title>How to configure GDM? (or, Eye Candy = Performance)</title>
		<link>http://danielsmw.wordpress.com/2009/08/08/how-to-configure-gdm-or-eye-candy-performance/</link>
		<comments>http://danielsmw.wordpress.com/2009/08/08/how-to-configure-gdm-or-eye-candy-performance/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 05:31:15 +0000</pubDate>
		<dc:creator>Matthew Daniels</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Customization]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[New Users]]></category>

		<guid isPermaLink="false">http://danielsmw.wordpress.com/?p=225</guid>
		<description><![CDATA[Like many users' personal machines, my computer doesn't run at optimum capacity unless it has the right color scheme and eye candy.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsmw.wordpress.com&blog=6360008&post=225&subd=danielsmw&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Like many users&#8217; personal machines, my computer doesn&#8217;t run at optimum capacity unless it has the right color scheme and eye candy. I spent the better half of the afternoon earlier decking out my Fluxbox setup with some fun new themes, xcompmgr, and some aterm-pimping.</p>
<div id="attachment_226" class="wp-caption aligncenter" style="width: 442px"><a href="http://danielsmw.files.wordpress.com/2009/08/fboxss.png"><img class="size-full wp-image-226  " title="fboxss" src="http://danielsmw.files.wordpress.com/2009/08/fboxss.png?w=432&#038;h=346" alt="Fluxbox screenshot" width="432" height="346" /></a><p class="wp-caption-text">Fluxbox screenshot shamelessly stolen from a gnome-look.org contributer. The User Guide content (in my special XML), however, is completely original.</p></div>
<p>Question, though: what happened to GDM configuration gui? I seem to remember it back in like&#8230; Fedora 7 (Moonshine)? Maybe even F8? I went into /usr/share/backgrounds today and changed up leonidas.xml so I could at least get a different background image at the login screen, but I have no interest in going much further than that.</p>
<p>Was this an upstream thing, or a Fedora thing?</p>
<p>Don&#8217;t tell me! I&#8217;m sure lots of people have asked, and people who are more observant than me are tired of saying why it happened.</p>
<p>Unless you really want to tell me.</p>
<p>Because it bothers me. Although I think I do remember something about it undergoing a rewrite&#8230; but hasn&#8217;t it been a while? Is it being redone from scratch? idk.</p>
<p>I&#8217;m writing the User Guide, directed at people who don&#8217;t know Linux well enough to go edit leonidas.xml, and they&#8217;ll want to change up the eye candy. I know they will. I wish I had an answer for them&#8230;</p>
<p>PS: I added a screenshot of gdmsetup from Fedora 6, but then I opened Empathy from the dock and X though that would be a good reason to crash.  Guess I should file a bug report on that; second time it&#8217;s happened today.  Good thing WordPress autosaves drafts.</p>
Posted in Technology Tagged: Customization, Fedora, New Users, Technology <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielsmw.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielsmw.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielsmw.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielsmw.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielsmw.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielsmw.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielsmw.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielsmw.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielsmw.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielsmw.wordpress.com/225/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsmw.wordpress.com&blog=6360008&post=225&subd=danielsmw&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://danielsmw.wordpress.com/2009/08/08/how-to-configure-gdm-or-eye-candy-performance/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/46f9713e079a22bbaae588b791117488?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">danielsmw</media:title>
		</media:content>

		<media:content url="http://danielsmw.files.wordpress.com/2009/08/fboxss.png" medium="image">
			<media:title type="html">fboxss</media:title>
		</media:content>
	</item>
		<item>
		<title>Seasons of Code</title>
		<link>http://danielsmw.wordpress.com/2009/08/06/seasons-of-code/</link>
		<comments>http://danielsmw.wordpress.com/2009/08/06/seasons-of-code/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 18:12:21 +0000</pubDate>
		<dc:creator>Matthew Daniels</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Coding Projects]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Lifestyle]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[New Users]]></category>
		<category><![CDATA[Students]]></category>

		<guid isPermaLink="false">http://danielsmw.wordpress.com/?p=221</guid>
		<description><![CDATA[What if there was a web community where hackers could post jobs of various difficulty or depth with the intent of having students pick them up? There would (probably) be no payment involved, but I have a feeling that lots of students who need projects for school or who are sort of curious but have no obvious point of entry to the open source community would be happy to pick up small tasks if they're spoon fed to them (at least in the beginning).<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsmw.wordpress.com&blog=6360008&post=221&subd=danielsmw&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>When I joined the Fedora Project last year, it was a pretty big deal to me. A college freshman, I&#8217;d used Linux for a few years and enjoyed it but never really contributed anything back upstream except for the occasional automated bug report.</p>
<p>A year later, I&#8217;m very glad I got involved in open source. But I know plenty of very smart people about my age &#8211; oftentimes people I think would be even better at this stuff than I am &#8211; who don&#8217;t join projects or contribute back upstream for no reason other than that it&#8217;s not easily accessible for them.</p>
<p>I&#8217;ve been sort of monitoring a student from my old high school as he works on his senior thesis. The project is improving security for <a href="http://www.openrdf.org/">Sesame</a>. Some of the first questions he started asking his thesis mentor made it pretty clear that he wasn&#8217;t sure where to start or how contact project members. Moreover, I&#8217;m not entirely sure that he was clear on how open source development even progresses (c&#8217;est á dire, he had never been outside of the Cathedral).</p>
<p>I remembered my own thesis project which involved a new type of spam detection that I built as a plugin of sorts to SpamAssassin. I remembered how confused I was about open source projects too, and now I&#8217;m wondering: if someone makes a conscious effort to open up opportunities in the open source world to students, especially high schoolers and younger college students, could we make:</p>
<ol>
<li>A significant boost in the number of people interested in computers who manifest that hobby in the open source world (in other words, can we increase our contributer numbers?), or</li>
<li>For those that don&#8217;t necessarily become contributers, can we at least get them to try Linux? Consequently, since that&#8217;s one of the strongest demographics in terms of driving the computing market (a statement I&#8217;m completely hypothesizing with no hard numbers), can we make a dent in the consumer world where more developers support OSS or, at the very least, Linux releases?</li>
</ol>
<p>When I thought of this, the first thing that came to mind was Google&#8217;s Summer of Code. But this is a summer thing and it usually targets pretty complex tasks. It also costs money. What if there was a web community where hackers could post jobs of various difficulty or depth with the intent of having students pick them up? There would (probably) be no payment involved, but I have a feeling that lots of students who need projects for school or who are sort of curious but have no obvious point of entry to the open source community would be happy to pick up small tasks if they&#8217;re spoon fed to them (at least in the beginning). Course instructors/professors could even use these postings as projects for their classes which have a real effect in the world &#8211; that&#8217;s perhaps the best case scenario that I could think of.</p>
<p>Maybe.</p>
<p>Maybe not.</p>
<p>Just an idea.</p>
Posted in Personal, Technology Tagged: Coding Projects, Fedora, Lifestyle, Linux, New Users, Students <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielsmw.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielsmw.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielsmw.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielsmw.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielsmw.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielsmw.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielsmw.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielsmw.wordpress.com/221/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielsmw.wordpress.com/221/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielsmw.wordpress.com/221/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsmw.wordpress.com&blog=6360008&post=221&subd=danielsmw&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://danielsmw.wordpress.com/2009/08/06/seasons-of-code/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/46f9713e079a22bbaae588b791117488?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">danielsmw</media:title>
		</media:content>
	</item>
		<item>
		<title>OS X niceties in Linux: a second look</title>
		<link>http://danielsmw.wordpress.com/2009/08/06/os-x-niceties-in-linux-a-second-look/</link>
		<comments>http://danielsmw.wordpress.com/2009/08/06/os-x-niceties-in-linux-a-second-look/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 05:00:24 +0000</pubDate>
		<dc:creator>Matthew Daniels</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Analysis]]></category>
		<category><![CDATA[Coding Projects]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://danielsmw.wordpress.com/?p=218</guid>
		<description><![CDATA[Being both a Linux and OS X user, I'm often left in one operating system wishing I had access to $convenient_feature in the other system. Two big OS X features that I miss in Fedora are Automator and Growl.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsmw.wordpress.com&blog=6360008&post=218&subd=danielsmw&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Being both a Linux and OS X user, I&#8217;m often left in one operating system wishing I had access to $convenient_feature in the other system. Two big OS X features that I miss in Fedora are Automator and Growl.</p>
<p>Yes, I know; a unified notification system has been implemented in GNOME (I think; I know it is in Ubuntu/Mint, but since I usually use Fedora and I usually use barebones Fluxbox, I can&#8217;t really say if it&#8217;s in Fedora yet).  I&#8217;ll go ahead and complain, though, that it isn&#8217;t as extensive as Growl is.  All I&#8217;ve seen it do is brightness and volume.  I&#8217;ve read a tutorial on how to easily implement notifications in applications though, so perhaps it&#8217;ll just take a bit of time for applications to jump on the bandwagon.</p>
<p>The other feature, Automator, is something that, as far as I know, certainly is far off. There is a tool called GNU Xnee which has X11 macro recording capabilities, but the capacities are nowhere close to what&#8217;s available in OS X&#8217;s Automator, because it can&#8217;t harness specific application functions or easily pipe I/O. In my opinion, this is more than another centralization issue; the most popular OS X apps are from Apple, so they all have great Automator support&#8230; but non-Apple applications like Growl, Quicksilver, Fetch, and the Microsoft Office 2008 suite also have hooks in Automator, so I imagine Apple has made it easy to interface with.</p>
<p>Do I really need Automator in Linux? Not really, no. I have this much better thing called the command line. But as I rewrite the Fedora Desktop Guide (more on that later) I think more and more about new users who have little experience with scripting. There are GUI programming tools to teach concepts to newcomers, but I think something that actually has practical purpose would be more useful for a beginner who wants to harness the power of Linux. Besides, in the age of the graphical desktop, I think being able to pipe I/O between applications should be nearly as easy in a graphical fashion as it is on the command line&#8230; if slightly less powerful.</p>
<p>Enough ranting. Just finished a Perl script to run 300ish Monte Carlo simulations for me while I&#8217;m asleep. Time for bed.</p>
<p>PS: This post is a &#8220;second look&#8221; because I already discussed Automator-ish functionality in the comments of <a href="http://danielsmw.wordpress.com/2009/06/26/foss-on-windows-autohotkey/">a previous post</a>.</p>
Posted in Technology Tagged: Analysis, Coding Projects, Fedora, Linux <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielsmw.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielsmw.wordpress.com/218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielsmw.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielsmw.wordpress.com/218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielsmw.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielsmw.wordpress.com/218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielsmw.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielsmw.wordpress.com/218/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielsmw.wordpress.com/218/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielsmw.wordpress.com/218/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsmw.wordpress.com&blog=6360008&post=218&subd=danielsmw&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://danielsmw.wordpress.com/2009/08/06/os-x-niceties-in-linux-a-second-look/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/46f9713e079a22bbaae588b791117488?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">danielsmw</media:title>
		</media:content>
	</item>
		<item>
		<title>Quicktip: Ignoring the fingerprint reader for sudo</title>
		<link>http://danielsmw.wordpress.com/2009/08/05/quicktip-ignoring-the-fingerprint-reader-for-sudo/</link>
		<comments>http://danielsmw.wordpress.com/2009/08/05/quicktip-ignoring-the-fingerprint-reader-for-sudo/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 04:28:26 +0000</pubDate>
		<dc:creator>Matthew Daniels</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Analysis]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://danielsmw.wordpress.com/?p=216</guid>
		<description><![CDATA[The -p flag substitutes sudo's default prompt (which I suppose is provided by fprintd) with one you specify (in this case, "Password: "). And there you have it!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsmw.wordpress.com&blog=6360008&post=216&subd=danielsmw&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I thought that ease of use with fingerprint scanners was a great feature in Fedora 11. I enjoy having it on my desk to login, because it&#8217;s kinda cool and it lights up and such.  I do use it to login from <em>GDM</em> and such.</p>
<p>I have to say, though, it kind of irritates me when I&#8217;m using a console and <em>sudo</em> prompts me for my fingerprint.  I&#8217;m not saying that this is poor functionality, and if I was using a more secure password on my home computer than I might actually appreciate this.  But if you&#8217;re like me and you don&#8217;t really care so much about security on a machine inside your house behind firewalls and such, then maybe you&#8217;re irritated as well.  I thought I&#8217;d share a tiny and easy idea I had that nonetheless makes sudo more convenient for me in the CLI. In your .<em>bashrc</em>, just add an alias so that <em>sudo</em> is called with the -p flag:</p>
<blockquote>
<pre>alias sudo = 'sudo -p "Password: " '</pre>
</blockquote>
<p>The -p flag substitutes <em>sudo</em>&#8217;s default prompt (which I suppose is provided by <em>fprintd</em>) with one you specify (in this case, &#8220;Password: &#8220;). And there you have it! Another option if you don&#8217;t want to ditch the fingerprint scanner all together would be to simply give the alias a different name (like, say, <em>sudopw</em>).</p>
Posted in Technology Tagged: Analysis, Fedora, Linux <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielsmw.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielsmw.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielsmw.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielsmw.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielsmw.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielsmw.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielsmw.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielsmw.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielsmw.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielsmw.wordpress.com/216/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsmw.wordpress.com&blog=6360008&post=216&subd=danielsmw&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://danielsmw.wordpress.com/2009/08/05/quicktip-ignoring-the-fingerprint-reader-for-sudo/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/46f9713e079a22bbaae588b791117488?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">danielsmw</media:title>
		</media:content>
	</item>
		<item>
		<title>IPv6 over Facebook</title>
		<link>http://danielsmw.wordpress.com/2009/07/31/ipv6-over-facebook/</link>
		<comments>http://danielsmw.wordpress.com/2009/07/31/ipv6-over-facebook/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 21:44:15 +0000</pubDate>
		<dc:creator>Matthew Daniels</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://danielsmw.wordpress.com/?p=211</guid>
		<description><![CDATA[The RFC was an April Fools joke, but it's still fun to play with on Facebook.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsmw.wordpress.com&blog=6360008&post=211&subd=danielsmw&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>If you haven&#8217;t checked out the <a href="http://apps.facebook.com/ipoverfb/index.php">IP over Facebook application</a> yet, you should definitely make that your first destination after you&#8217;re done reading this page.  It&#8217;s the first implementation of <a href="http://www.ietf.org/rfc/rfc5514.txt">RFC 5514</a>, &#8216;IPv6 Over Social Networks&#8217;. The RFC was an April Fools joke, but it&#8217;s still fun to play with on Facebook.</p>
<p>My current network topology looks like this:</p>
<div id="attachment_214" class="wp-caption aligncenter" style="width: 310px"><a href="http://people.clemson.edu/~mdaniel/ipv6overfb.png"><img class="size-medium wp-image-214" title="ipv6_over_facebook.png" src="http://danielsmw.files.wordpress.com/2009/07/5057427041.png?w=300&#038;h=160" alt="IPv6 Over Facebook" width="300" height="160" /></a><p class="wp-caption-text">IPv6 Over Facebook</p></div>
<p>Add me to your router on Facebook if you try it out!</p>
Posted in Technology Tagged: Fedora, Linux, Reviews, Technology <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielsmw.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielsmw.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielsmw.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielsmw.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielsmw.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielsmw.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielsmw.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielsmw.wordpress.com/211/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielsmw.wordpress.com/211/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielsmw.wordpress.com/211/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsmw.wordpress.com&blog=6360008&post=211&subd=danielsmw&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://danielsmw.wordpress.com/2009/07/31/ipv6-over-facebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/46f9713e079a22bbaae588b791117488?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">danielsmw</media:title>
		</media:content>

		<media:content url="http://danielsmw.files.wordpress.com/2009/07/5057427041.png?w=300" medium="image">
			<media:title type="html">ipv6_over_facebook.png</media:title>
		</media:content>
	</item>
		<item>
		<title>Perhaps Picard, then?</title>
		<link>http://danielsmw.wordpress.com/2009/07/27/perhaps-picard-then/</link>
		<comments>http://danielsmw.wordpress.com/2009/07/27/perhaps-picard-then/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 15:14:07 +0000</pubDate>
		<dc:creator>Matthew Daniels</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Humor]]></category>
		<category><![CDATA[Lifestyle]]></category>

		<guid isPermaLink="false">http://danielsmw.wordpress.com/?p=207</guid>
		<description><![CDATA[If nothing else, maybe they'll give the offer to Patrick Stewart. I always thought Jean-Luc Picard was a better captain anyway.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsmw.wordpress.com&blog=6360008&post=207&subd=danielsmw&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The other day, through a long chain of tab-opening (something like Gmail &gt; Google Labs &gt; Google Tables &gt; Search for &#8216;Starfleet Vessels&#8217; &gt; USS Enterprise &gt; Disambiguation Page &gt; VSS Enterprise) I came across an article on the VSS Enterprise on Wikipedia.  The VSS Enterprise is a spacecraft being designed by Virgin Galactic to be unveiled in 2011.</p>
<p>They offered William Shatner a free ride on the inaugural flight, and he <em>turned it down</em>. I&#8217;m beyond disappointed, and I&#8217;m not sure that I&#8217;ll ever be able to watch TOS again. Some people have told me &#8220;Well, he is 75&#8230;&#8221; but I think that only makes it worse that he won&#8217;t go up!</p>
<p>If William Shatner were to die in a tragic accident, could there possibly be a better way for it to happen than that?</p>
<p>But they&#8217;ve flown these things before and there&#8217;s never been any trouble. There&#8217;s 3 years of testing before the first flight anyway. Nothing to worry about. So shame on you, Mr. Shatner. I don&#8217;t think it&#8217;s unrealistic to say that Star Trek fueled the imagination of thousands of people to work towards the kinds of technologies we have today, and Shatner carried the banner of that era &#8212; at least on the television. I think he has a strange duty to go up in space.</p>
<p>If nothing else, maybe they&#8217;ll give the offer to Patrick Stewart. I always thought Jean-Luc Picard was a better captain anyway.</p>
Posted in Personal Tagged: Fedora, Humor, Lifestyle <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielsmw.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielsmw.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielsmw.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielsmw.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielsmw.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielsmw.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielsmw.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielsmw.wordpress.com/207/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielsmw.wordpress.com/207/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielsmw.wordpress.com/207/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsmw.wordpress.com&blog=6360008&post=207&subd=danielsmw&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://danielsmw.wordpress.com/2009/07/27/perhaps-picard-then/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/46f9713e079a22bbaae588b791117488?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">danielsmw</media:title>
		</media:content>
	</item>
		<item>
		<title>Witticism Dropbox</title>
		<link>http://danielsmw.wordpress.com/2009/07/10/witticism-dropbox/</link>
		<comments>http://danielsmw.wordpress.com/2009/07/10/witticism-dropbox/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 19:33:28 +0000</pubDate>
		<dc:creator>Matthew Daniels</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Humor]]></category>
		<category><![CDATA[Lifestyle]]></category>

		<guid isPermaLink="false">http://danielsmw.wordpress.com/?p=193</guid>
		<description><![CDATA[Ask John if you need help with this.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsmw.wordpress.com&blog=6360008&post=193&subd=danielsmw&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>A few days ago, I was excited to get my Google Voice invitation in my inbox.  To play around with it, I&#8217;ve setup a little widget that you can use to call my voicebox and leave&#8230; whatever you want (as long as it&#8217;s audible; please don&#8217;t stuff any posters or postcards in my voicemailbox).</p>
<p>You can click the link at the top of my sidebar to access the widget (WordPress.com doesn&#8217;t let you upload them).  Unfortunately&#8230; it&#8217;s Flash based.  Sorry for the non-foss technology, guys.</p>
<p>And if you actually want to talk to me and not just leave a message, you&#8217;re welcome to call.  My number is (843)-<em>k</em>, where <em>k</em> = gtlt(rev(13/18)) + rad(360/2), rounded to seven digits; gtlt(x) := Greatest Triangular number less than x.  A pat on the back and a free drink next time I see you to the first person to get that right.  I don&#8217;t think it&#8217;s that hard, especially to the kind of people who would read my blog anyway, but little coded statements are always fun.</p>
<p>PS: If I accumulate enough cool messages, I&#8217;ll post some of the good ones.  Might take a year or so though. :-)</p>
<p>Edit note: When solving this myself, I realized I initially wrote it wrong.  Note that I&#8217;ve now included a function gtlt(x).</p>
Posted in Personal, Technology Tagged: Fedora, Humor, Lifestyle, Technology <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/danielsmw.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/danielsmw.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/danielsmw.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/danielsmw.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/danielsmw.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/danielsmw.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/danielsmw.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/danielsmw.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/danielsmw.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/danielsmw.wordpress.com/193/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=danielsmw.wordpress.com&blog=6360008&post=193&subd=danielsmw&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://danielsmw.wordpress.com/2009/07/10/witticism-dropbox/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/46f9713e079a22bbaae588b791117488?s=96&#38;d=identicon&#38;r=PG" medium="image">
			<media:title type="html">danielsmw</media:title>
		</media:content>
	</item>
	</channel>
</rss>