<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Technical on Alkahest</title>
    <link>https://fenris.org/categories/technical/</link>
    <description>Recent content in Technical on Alkahest</description>
    <generator>Hugo</generator>
    <language>en</language>
    <lastBuildDate>Tue, 08 Mar 2016 02:14:50 +0000</lastBuildDate>
    <atom:link href="https://fenris.org/categories/technical/feed.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>... and logistic regression</title>
      <link>https://fenris.org/2016/03/07/streaming-movie-pirates-of-the-caribbean-dead-men-tell-no-tales-2017/</link>
      <pubDate>Tue, 08 Mar 2016 02:14:50 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/?p=1259</guid> 
      <description>&lt;p&gt;A follow-up on the &lt;a href=&#34;https://fenris.org/2016/03/07/collaborative-filtering-in-keras&#34;&gt;collaborative filter&lt;/a&gt;, it occurs to me that it should be possible to add a logistic regression layer in Keras. The following is a regularized multinomial logistic regression model:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-fallback&#34; data-lang=&#34;fallback&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;from keras.models import Sequential
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;from keras.layers.core import Dense, Activation
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;from keras.regularizers import l2
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;model = Sequential()
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;model.add(Dense(numClasses, input_shape=(numFeatures, ), \
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    init=&amp;#39;zero&amp;#39;, W_regularizer=l2(0.01)))
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;model.add(Activation(&amp;#39;softmax&amp;#39;))
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;model.compile(loss=&amp;#39;binary_crossentropy&amp;#39;, optimizer=&amp;#39;sgd&amp;#39;)
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;As with the collaborative filter, you can easily modify the code to use multiple regularizers and different learning algorithms, say Adamax or adam instead of SGD.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Collaborative filtering in Keras</title>
      <link>https://fenris.org/2016/03/07/index-html/</link>
      <pubDate>Mon, 07 Mar 2016 14:56:20 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/?p=1236</guid> 
      <description>&lt;p&gt;Ten years ago, Netflix started the Netflix challenge. A contest to see if the community could come up with a movie recommendation approach that beat their own by 10%. One of the primary modeling techniques that came out of the contest was a set of sparse matrix factoring models whose earliest description can be found at &lt;a href=&#34;http://sifter.org/~simon/journal/20061211.html&#34;&gt;Simon Funk&amp;rsquo;s website&lt;/a&gt;. The basic idea is that the actual ratings of movies for each user can be represented by a matrix, say of users on the rows and movies along the columns. We don&amp;rsquo;t have the full rating matrix, instead, we have a very sparse set of entries. But if we could factor the rating matrix into two separate matrices, say one that was Users by Latent Factors, and one that was Latent Factors by Movies, then we could find the user&amp;rsquo;s rating for any movie by taking the dot product of the User row and the Movie column.&lt;/p&gt;</description>
    </item>
    <item>
      <title>The Sounds of Science</title>
      <link>https://fenris.org/2010/06/16/the-sounds-of-science/</link>
      <pubDate>Thu, 17 Jun 2010 02:07:37 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/?p=1192</guid> 
      <description>&lt;p&gt;Last Friday, &lt;a href=&#34;http://www.heathbar.org/weblog/&#34;&gt;hsarik&lt;/a&gt; pointed out an interesting web site: &lt;a href=&#34;http://echonest.com&#34;&gt;Echo Nest&lt;/a&gt;. They provide a web service that allows you to analyze and remix music. The API also can provide information (meta-data) about music, artists, songs etc. and has Python bindings. If you&amp;rsquo;ve seen the &amp;ldquo;&lt;a href=&#34;http://www.morecowbell.dj/&#34;&gt;More Cowbell&lt;/a&gt;&amp;rdquo; website where you can upload an mp3 and have more cowbell (and more Christopher Walken) added to it, well that site uses Echo Nest and if you download the python bindings for their API, you can see the script that adds the sounds. Personally, I&amp;rsquo;m fond of &amp;ldquo;Ob-la-di, Ob-la-da&amp;rdquo; with 80% cowbell and 20% Christopher Walken.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Model update (updated!, updated again)</title>
      <link>https://fenris.org/2010/03/22/model-update/</link>
      <pubDate>Tue, 23 Mar 2010 01:09:45 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/?p=1152</guid> 
      <description>&lt;p&gt;Earlier, I posted my &lt;a href=&#34;https://fenris.org/2010/03/22/they-laughed-at-my-theories&#34;&gt;current model&lt;/a&gt; for predicting the NCAA tournament. Since the whole thing is probabilistic, I figured that I would test it out against the current NCAA standings. I considered four models:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;The one that I described&lt;/li&gt;
&lt;li&gt;A random selection of which team would win (50/50 chance)&lt;/li&gt;
&lt;li&gt;Always picking the top seeded team&lt;/li&gt;
&lt;li&gt;A model suggested by a colleague at work&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;For each model, I ran 10,000 tests and compared them to the current NCAA tournament results, counting the scores for each test. Results are:&lt;/p&gt;</description>
    </item>
    <item>
      <title>They laughed at my theories!</title>
      <link>https://fenris.org/2010/03/22/they-laughed-at-my-theories/</link>
      <pubDate>Mon, 22 Mar 2010 19:09:59 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/?p=1148</guid> 
      <description>&lt;p&gt;They laughed at my theories. They threw tomatoes when I presented my paper at the academy! Tomatoes I tell you! My minions cower in terror, shrinking in fright from the very ideas contained herein! But I will show them! I will PROVE IT TO THEM ONCE AND FOR ALL. &lt;strong&gt;The FOOLS, I WILL DESTROY THEM!!&lt;/strong&gt; &lt;strong&gt;MWAHAHAHAAAA!&lt;/strong&gt;(&lt;a href=&#34;http://www.offworlddesigns.com/p-291-fools-i-will-destroy-you-t-shirt.aspx&#34;&gt;ask me how&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;Oh, sorry. Where was I? Apparently, there’s this basketball thing going on. Some sort of NCAA tournament that will prove who has the best basketball team. But what if it doesn’t? What if it’s all just arbitrary? Could it be that the chances of any team winning a game are not deterministic, but rather stochastic? I’ll admit that I don’t know that much about basketball. I mean, I played the sport in junior high. I do know the rules. And I even think that it’s a pretty game. But I don’t follow the ins and outs of a particular season.&lt;/p&gt;</description>
    </item>
    <item>
      <title>&#34;Hacking&#34; predator drones</title>
      <link>https://fenris.org/2009/12/18/hacking-predator-drones/</link>
      <pubDate>Fri, 18 Dec 2009 18:05:08 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/?p=1113</guid> 
      <description>&lt;p&gt;This just makes me sad. Two articles, one in the &lt;a href=&#34;http://online.wsj.com/article/SB126102247889095011.html&#34;&gt;WSJ&lt;/a&gt;, the other on &lt;a href=&#34;http://www.cnn.com/2009/US/12/17/drone.video.hacked/index.html&#34;&gt;CNN&lt;/a&gt;, describing how insurgents in Iraq are hacking predator drones and receiving the video feeds that the drones are sending back to U.S. ground stations. First things first, let&amp;rsquo;s fix the headlines. Both are running something like &amp;ldquo;Iraqi insurgents hacked Predator drone feeds.&amp;rdquo; That should more clearly read: &amp;ldquo;Iraqi insurgents watching the videos that the Predator drone sends out unencrypted.&amp;rdquo; Or maybe &amp;ldquo;Iraqi insurgents watch Predator drone feeds on TV.&amp;rdquo;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Trash heap of programming history</title>
      <link>https://fenris.org/2009/11/29/trash-heap-of-programming-history/</link>
      <pubDate>Sun, 29 Nov 2009 18:08:23 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/?p=1096</guid> 
      <description>&lt;p&gt;When we put in the massive wall-eating bookcase, I thought that we had enough book space for the next 10,000 years! Or at least the next 10. Unfortunately, things were filling up a bit too fast, so I grabbed some of the books that I know I&amp;rsquo;ll never use again and will send them to recycling. Most are completely out of date (from bottom to top, these are from the mid-80s to the late 90s). Linux Application Development is probably still relevant, but a little too basic. Linux Device Drivers goes all the way through the 2.0 kernel series (and may be relevant for the experimental 2.1 series)! Switched LANs (snicker) and In Search of Clusters were given to me by vendors. And if I ever have to program native X-Windows again, I&amp;rsquo;ll kill myself. I kept the books on C/C++, Python, Perl and PHP - though I&amp;rsquo;ll probably never buy another programming book. Maybe Celeste is right, I should just get a Safari account&amp;hellip; Google works pretty well too. If there&amp;rsquo;s anything you want in here, let me know&amp;hellip;
10258&lt;/p&gt;</description>
    </item>
    <item>
      <title>Great moments in . . .</title>
      <link>https://fenris.org/2009/11/11/great-moments-in/</link>
      <pubDate>Thu, 12 Nov 2009 01:39:44 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/?p=1046</guid> 
      <description>&lt;p&gt;Minor notes, none worth their own post.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Traffic management:&lt;/strong&gt; I get a call from K around 5:30. She’s stuck behind an accident and the cops on the scene, a) don’t tell people to take a detour until they’ve been there for a half hour; and b) once the ambulance has left the scene, don’t direct traffic around the one remaining open lane. So, after waiting a half hour, K has to take a 20+ minute detour home.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Memory:&lt;/strong&gt; Once she gets in, K and I are fixing leftovers for dinner. C: “Hey, where are the mashed potatoes?” K: “Where did you put them?” “In the fridge, but I can’t find them.” “Maybe they’re in the freezer.” “Nope, not there either.” Ten minutes of looking for the potatoes. Did we throw them out on Sunday? Nope, not in the trash. Did C put them in the pantry? Nope. Can’t find ’em, can’t find ’em. Finally, K says, “wait, we fixed rice on Sunday.” There weren’t any potatoes. I would attribute it to getting old, but I’ve always been this way.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;FUD (fear, uncertainty and doubt):&lt;/strong&gt; we’re testing some things at the office – will our authentication system (active directory) honor password failure lockouts when using LDAP authentication? I ask our windows consultant to either a) answer the question, or b) enable an account lockout policy so we can test. He responds back that he can do that, but with the warning that “many Linux services aren’t well-designed for this, and repeatedly try a cached or user-provided password, so that users or service accounts may be mysteriously locked out after one attempt or at some future time when passwords change.” Which is complete and utter B.S. Signs that it’s BS? He references Linux services as opposed to open source, i.e. attempted linux dig. And I used to “own” identity management services, including authentication at a large university and if this was the case, things would have blown up within 10 minutes. I thanked him for the advice and noted that I’ve never seen this, but that it’s why we test.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;OS Performance:&lt;/strong&gt; we’re looking into some new ideas at the office. Things that &lt;em&gt;could&lt;/em&gt; be useful as a preprocessor for a host based intrusion detection system. As part of my testing, I told my laptop to audit &lt;strong&gt;all&lt;/strong&gt; syscalls made to the kernel, by &lt;strong&gt;all&lt;/strong&gt; processes on the system. CPU load spiked, system performance went through the floor, the windowing system became almost completely non-responsive. In the two minutes it took to get access to a terminal, I logged 150 MB of audit logs. On the plus side, all of the information we need can be collected. Now I just need to figure out how to keep a usable system.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Self aggrandizement:&lt;/strong&gt; talking to my technical manager, we need to write up two journal papers based on our recent work. Cool!&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I hope everyone had a good Veteran’s Day and remembered to thank the veterans in their lives.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Facebook security vulnerabilities</title>
      <link>https://fenris.org/posts/facebook-security-vulnerabilities/</link>
      <pubDate>Thu, 05 Nov 2009 15:32:19 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/?p=1035</guid> 
      <description>&lt;p&gt;and &lt;a href=&#34;http://www.techcrunch.com/2009/11/05/massive-facebook-and-myspace-flash-vulnerability-exposes-user-data/&#34;&gt;this&lt;/a&gt; is why I like cross-posting to facebook from my blog. It&amp;rsquo;s a healthy reminder that nothing on fb is actually private. If it&amp;rsquo;s online - it&amp;rsquo;ll be exposed eventually, whether through a new exploit, or just because you &amp;ldquo;friend&amp;rdquo; someone in the future that you had written about in the past.&lt;/p&gt;
&lt;p&gt;h/t &lt;a href=&#34;http://www.heathbar.org/weblog/&#34;&gt;hsarik&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Toy!</title>
      <link>https://fenris.org/2009/11/03/toy/</link>
      <pubDate>Wed, 04 Nov 2009 04:04:36 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/?p=1026</guid> 
      <description>&lt;p&gt;For a guy who uses computers as much as I do, you would think that I would have better machines at home. But really, no. Our last desktop was eight years old before we replaced it. My laptop was an old Thinkpad X31 - maybe six or seven years old. So, for a combination birthday/Christmas present, I got a new (sort of) laptop. I picked up a refurbished thinkpad X200s from the Lenovo outlet. So far it&amp;rsquo;s a nice machine: good processor, lots of high speed memory, and a big LED backlit screen. Lenovo sent me notice that they were shipping the laptop today and the next thing I knew, it arrived at the office. The advantages of working 5 miles from the outlet. The only problem is that they didn&amp;rsquo;t ship all of the parts. I&amp;rsquo;ve contacted them and they&amp;rsquo;ll send the dock/dvd.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Dragged kicking and screaming into the century of the fruitbat</title>
      <link>https://fenris.org/2009/10/29/dragged-kicking-and-screaming-into-the-century-of-the-fruitbat/</link>
      <pubDate>Thu, 29 Oct 2009 13:35:41 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/?p=1016</guid> 
      <description>&lt;p&gt;With apologies to Terry Prachett, I feel like I being dragged (dragging myself?) into the &lt;a href=&#34;http://wiki.lspace.org/wiki/Discworld_calendar#Years_and_centuries&#34;&gt;Century of the Fruitbat&lt;/a&gt;. As I mentioned a long time ago, &lt;a href=&#34;https://fenris.org/2009/04/21/vint-cerf-called&#34;&gt;I don&amp;rsquo;t care for Facebook&lt;/a&gt;. I prefer my blog. That said, many of my friends and most of my family use Facebook. So I&amp;rsquo;m going to start a bit of an experiment. I&amp;rsquo;ve downloaded and installed the &lt;a href=&#34;http://www.tsaiberspace.net/blog/2007/07/29/wordbook&#34;&gt;Wordbook&lt;/a&gt; plugin for my blog software (wordpress). Starting with this post, in theory anything that&amp;rsquo;s published on the blog gets cross-posted to fb.&lt;/p&gt;</description>
    </item>
    <item>
      <title>So, this is important</title>
      <link>https://fenris.org/posts/so-this-is-important/</link>
      <pubDate>Fri, 28 Aug 2009 03:14:27 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/?p=987</guid> 
      <description>&lt;p&gt;I&amp;rsquo;m not a big baseball fan. For that matter, there are few ball sports that interest me. But, this is important. If you recall, a few years ago (2004), there was a big furor over steroids in baseball. The government searched BALCO and found evidence of rampant steroid use by baseball players. Now I hadn&amp;rsquo;t been paying attention to this, but there has been an ongoing legal dispute over that search and how it was conducted.&lt;/p&gt;</description>
    </item>
    <item>
      <title>DDoS-ing good policy</title>
      <link>https://fenris.org/2009/08/26/ddos-ing-good-policy/</link>
      <pubDate>Thu, 27 Aug 2009 02:08:48 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/?p=978</guid> 
      <description>&lt;p&gt;In computer security, one of the most difficult and annoying problems is the distributed denial of service attack (DDoS). The idea behind a DDoS attack is straight forward: the attacker tries to prevent legitimate use of the service by using a large number of other computers. Usually these other computers have been compromised (hacked) and are following the commands of the attacker. Such computers are usually called &amp;ldquo;zombies.&amp;rdquo;&lt;/p&gt;
&lt;p&gt;There are a number of ways to conduct a DDoS attack, but they are typically variations on the following theme. The attacker instructs the zombies to request access to the service. But the zombies have no intention of actually using the service, instead, they often forge network traffic so that it&amp;rsquo;s impossible to tell who is making the request. Because the zombies don&amp;rsquo;t want to use the service, they can make thousands of requests without slowing down. The poor computer hosting the service then sees tens of thousands of requests for access, tries to fulfill the requests and eventually becomes overloaded and dies. The zombies win.&lt;/p&gt;</description>
    </item>
    <item>
      <title>the importance of verifying backups</title>
      <link>https://fenris.org/posts/the-importance-of-verifying-backups/</link>
      <pubDate>Tue, 21 Jul 2009 02:58:46 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/?p=965</guid> 
      <description>&lt;p&gt;I was using my personal laptop at a meeting yesterday and grabbed about a gig of files from someone&amp;rsquo;s usb key. While I was taking minutes, I noticed a lovely new icon that popped up&amp;hellip; your hard disk drive is failing. Eeek! Not cool. So, last night I got home and started backing up my files. A few of the new files and a couple unimportant old files didn&amp;rsquo;t transfer properly. Fine, I could live without them.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Vint Cerf called . . .</title>
      <link>https://fenris.org/2009/04/21/vint-cerf-called/</link>
      <pubDate>Wed, 22 Apr 2009 01:58:23 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/?p=911</guid> 
      <description>&lt;p&gt;&amp;hellip; and &lt;a href=&#34;http://en.wikipedia.org/wiki/Vint_Cerf&#34;&gt;he&lt;/a&gt; and &lt;a href=&#34;http://en.wikipedia.org/wiki/Tim_Berners-Lee&#34;&gt;Tim Berners-Lee&lt;/a&gt; want you to stop breaking the Internet.&lt;/p&gt;
&lt;p&gt;Over the past couple of weeks I&amp;rsquo;ve had several occasions to be invited into someone&amp;rsquo;s walled garden on the internet. You know the places. Lovely little sites that are entirely self-contained and which you can&amp;rsquo;t access unless you are a member? In the old days, Compuserve and AOL were the big walled gardens. These days, it&amp;rsquo;s Facebook and Linked-In.&lt;/p&gt;</description>
    </item>
    <item>
      <title>blog your type?</title>
      <link>https://fenris.org/2008/11/21/blog-your-type/</link>
      <pubDate>Fri, 21 Nov 2008 21:44:47 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/?p=835</guid> 
      <description>&lt;p&gt;&lt;img loading=&#34;lazy&#34; src=&#34;https://fenris.org/wordpress/wp-content/uploads/2008/11/intp.gif&#34;&gt;This is neat. &lt;a href=&#34;http://www.typealyzer.com/&#34;&gt;Typealyzer&lt;/a&gt; claims to examine a blog (or presumably any webpage) in order to identify the Myers-Briggs type of the author. It correctly identifies me as an INTP, but doesn&amp;rsquo;t seem to get &lt;a href=&#34;http://etselec.livejournal.com/&#34;&gt;etselec&lt;/a&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>at home in the (technical) universe</title>
      <link>https://fenris.org/2008/11/20/at-home-in-the-technical-universe/</link>
      <pubDate>Thu, 20 Nov 2008 15:11:26 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/?p=830</guid> 
      <description>&lt;p&gt;Some recent (somewhat) technical notes:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A while back, I &lt;a href=&#34;https://fenris.org/2007/12/04/it-lives&#34;&gt;swapped&lt;/a&gt; the dead harddrive from my ipod with a compact flash card. Unfortunately, at the time, the biggest (affordable) compact flash was 16 GB, so I lost about half the capacity from my ipod. Not a huge problem, but it became more of one as I added more music. Yesterday, a shiny new 32 GB compact flash arrived and now I&amp;rsquo;m back to the nominal amount of space on my ipod, except that it&amp;rsquo;s all solid state and cool. From the technical standpoint, this was something of a PITA, since I didn&amp;rsquo;t have a windows or mac machine around to reinstall the firmware. My ultimate solution: 1) back up /dev/sdb (boot record and partition table) and /dev/sdb1 (firmware) from the ipod using dd; 2) put the CF in my laptop and format it (a camera would work just as well), this just normalizes the card; 3) put the CF in the ipod (or in the laptop); 4) write the patition table using dd; 5) edit the partition table using fdisk, set the size of sdb2 to be 32 rather than 16 GB; 6) write out the firmware to sdb1; 7) format sdb2 using mkfs.vfat. Voila - a 32 GB ipod CF&lt;/li&gt;
&lt;li&gt;If you haven&amp;rsquo;t seen it already, check out &lt;a href=&#34;http://projecteuler.net&#34;&gt;projecteuler.net&lt;/a&gt;. They&amp;rsquo;ve got a bunch of mathematically oriented programming problems online of varying difficulty. Good solutions should all run in 1 minute or less and generally take 100 lines of code or so. It&amp;rsquo;s a good way to get familiar with a new programming language and to exercise your brain. So far, I&amp;rsquo;ve done the first 70 or so problems - they don&amp;rsquo;t take too long, maybe a half hour each on average.&lt;/li&gt;
&lt;li&gt;Finally, I got the clutch in my car replaced yesterday. The mechanic said that it was in pretty bad shape and that the (plastic?) bearing the clutch uses had worn completely away. This probably explains why I&amp;rsquo;ve had no acceleration for the past year (or more?). I had forgotten what it was like to drive a decent car :-)&lt;/li&gt;
&lt;/ul&gt;</description>
    </item>
    <item>
      <title>Computer maps</title>
      <link>https://fenris.org/2008/10/30/computer-maps/</link>
      <pubDate>Thu, 30 Oct 2008 14:17:51 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/?p=784</guid> 
      <description>&lt;p&gt;A few years ago, K was taking some GIS (geographic information systems) classes. That was a lot of fun for me since GIS is something I&amp;rsquo;ve poked at on and off for quite some time. Back when I was first playing with GIS, &lt;a href=&#34;http://grass.itc.it&#34;&gt;GRASS&lt;/a&gt; was probably the best (and may still be) open-source GIS system out there, but it wasn&amp;rsquo;t too user friendly. So it was a lot of fun playing with ESRI&amp;rsquo;s ArcGIS.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Annotate Flickr</title>
      <link>https://fenris.org/2008/10/04/annotate-flickr/</link>
      <pubDate>Sun, 05 Oct 2008 02:59:54 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/?p=761</guid> 
      <description>&lt;p&gt;A while back, Luis Villa &lt;a href=&#34;http://tieguy.org/blog/2008/09/03/creative-commons-picture-script-request/&#34;&gt;asked&lt;/a&gt; about a script to add creative commons licensing information to an image. I just wrapped up a first cut at a &lt;a href=&#34;https://fenris.org/projects/annotate-flickr/&#34;&gt;GreaseMonkey script&lt;/a&gt; to do exactly that. Hopefully someone will find it useful.&lt;/p&gt;</description>
    </item>
    <item>
      <title>E-book blogging</title>
      <link>https://fenris.org/2008/05/06/e-book-blogging/</link>
      <pubDate>Wed, 07 May 2008 01:49:39 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/?p=462</guid> 
      <description>&lt;p&gt;I’ve had the Sony Reader now for about a week. In that time, I’ve taken it on a plane trip, read three full books, multiple days worth of the NY Times and I’m in the middle of two books right now. Observations so far:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;The electronic paper is very readable. On my plane trip, I must have read for several hours straight with no more eye strain than if I had been reading a paper book. The legibility is good regardless of font size. You might still want to increase the font size if your eyes are tired, but otherwise, there is no need.&lt;/li&gt;
&lt;li&gt;The menus and button layouts are pretty reasonable. You can page forward or back. There’s a up-down-left-right cursor that is used to move around on a page. Using the number buttons on the right, you can jump to an arbitrary page in the book. These buttons double as a quick jump to a menu item on the Reader’s standard menus. One gripe, you can only move to different links using up/down on the cursor, left/right don’t do anything. At GB, paideka mentioned that it would be interesting to see what Apple did with the layout and look and feel of a reader. Agreed&lt;/li&gt;
&lt;li&gt;Battery life appears to be as advertised: 7,500 page turns per charge. Keep in mind that a page on the reader contains only about half the content of a standard paper back (depending on page layout and font size). Still, around 3,500 pages of paper back text is still pretty good.&lt;/li&gt;
&lt;li&gt;Updating the screen is slow. It takes about .5 – .75 seconds to update the screen. A few ramifications: 1) this is almost un-noticeable while reading text; and 2) using the cursor keys is painful, you deal with the update time for each cursor pressed – where ever possible I use the numeric shortcuts.&lt;/li&gt;
&lt;li&gt;A third ramification of the slow update time is that the Reader, and almost certainly any other reader using this generation of e-paper, is unusable as a reference book. When I use a reference book, I flip around quite a bit. Forward to the index, back to the text, forward many pages to the next topic, etc. I suppose if the reference book had a really good index, it might be better, but for the most part, this is still not a good tool for referencing which is a real shame.&lt;/li&gt;
&lt;li&gt;The bookmarking system is good. Each book keeps your place in the book. The top level of the reader keeps up with the last book you’ve read and your place in that book. You can set any number of bookmarks in each book and then access the bookmarks on a global or a per book basis. It would be nice if the reader also kept a list of most recently read, rather than just the single most recently read book; but that’s a small issue. Typically, I’ll just set a bookmark when I pause in reading, then delete it when I pick the book back up.&lt;/li&gt;
&lt;li&gt;PDF conversion still leaves something to be desired. I’ve looked into this a bit. The converter I’m using converts PDF -&amp;gt; HTML -&amp;gt; LRF. The PDF -&amp;gt; HTML conversion uses pdftohtml (surprised?) which is good in some ways, but still leaves off certain things (like images!), at least as used by the reader’s converter. Part of this is due to conceptual differences between PDF and HTML. HTML marks up text, flagging paragraphs, noting images, etc. Ideally, all of this is passed to the browser which handles the layout. PDF will have none of that. PDF consists of a set of primitives that indicate what text (in which font and size) should go in which location on the page. There is no markup of paragraphs, instead, each line of text is described individually. There is no easy way to reconstruct paragraphs from a PDF file (as a research note, I wonder if you could use a partially observable markov decision process?). That said, minus the missing images, the LRF result is definitely readable.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;So overall, I’m pretty happy with the reader. The biggest issue is the refresh time on the electronic paper and I hope that will improve over the next couple of years.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Book lover &#43; nerd = ebook</title>
      <link>https://fenris.org/2008/04/29/book-lover-nerd-ebook/</link>
      <pubDate>Tue, 29 Apr 2008 14:45:51 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/?p=436</guid> 
      <description>&lt;p&gt;Yesterday, I bought a &lt;a href=&#34;http://www.sonystyle.com/webapp/wcs/stores/servlet/CategoryDisplay?storeId=10151&amp;amp;mpe_id=1908904905&amp;amp;identifier=S_BrandShowcase_Reader&#34;&gt;Sony Reader&lt;/a&gt; – the electronic book reader that uses E Ink’s electronic paper. The electronic paper display on the reader is very nice. It uses encapsulated white and black pigments that can be brought to the surface of the page. The only power consumption involved happens when you make a change. Once the change is made, it requires no power to keep the image. The upshot is that you’ve got a very long battery life, a decent contrast ration and a display that can be read in any light – in fact, the more the better since it’s reflective (like paper) rather than backlit (like a monitor). Moreover, because it’s not backlit, it’s easier on the eyes when reading for a long time. I read for a couple of hours last night and it was no different than reading a paper book.&lt;/p&gt;</description>
    </item>
    <item>
      <title>tracks 1.5</title>
      <link>https://fenris.org/2008/04/12/tracks-15/</link>
      <pubDate>Sun, 13 Apr 2008 02:46:29 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/2008/04/12/tracks-15/</guid> 
      <description>&lt;p&gt;&lt;a href=&#34;http://tieguy.org/blog/2008/03/30/tracks-15-released/&#34;&gt;Thanks to Luis&lt;/a&gt;, I find out last week that Tracks 1.5 has been released. Tracks is the implementation of the “getting things done methodology which I prefer. 1.5 is pretty nice. In particular, I look forward to hiding actions until a particular date. In the past, I’ve wanted to track a todo some six months in the future. I put it on the list and had to watch it for 180+ days.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Web 2.0 and trusting the users</title>
      <link>https://fenris.org/2008/04/11/web-20-and-trusting-the-users/</link>
      <pubDate>Fri, 11 Apr 2008 13:31:47 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/2008/04/11/web-20-and-trusting-the-users/</guid> 
      <description>&lt;p&gt;The CTO Project &lt;a href=&#34;http://ctoproject.com/?p=38&#34;&gt;makes an interesting observation&lt;/a&gt; that faculty are a bit like some corporations. They feel obligated to use Web 2.0 technologies in order to engage student interest and actually make some token effort to be up to date. But that they only want these technologies if they can exert complete control.&lt;/p&gt;
&lt;p&gt;Trust me, I can relate. We’re currently contracting with a part of the government that wants to do something similar. They want to make use of the knowledge of a number of experts to produce an encyclopedia of a given technology. Of course, this has been dubbed the FOOpedia (where FOO is the technology).&lt;/p&gt;</description>
    </item>
    <item>
      <title>Digital Amway</title>
      <link>https://fenris.org/2008/03/28/digital-amway/</link>
      <pubDate>Sat, 29 Mar 2008 02:22:52 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/2008/03/28/digital-amway/</guid> 
      <description>&lt;p&gt;A few years ago, I was accused of using the word “interesting in subtle ways. Sometimes it means a truly novel idea that I would like to learn more about, other times, it’s a novel idea of which I’m more than a little skeptical. In both cases, I stand by the description, to me, both are interesting – but it can make it a little hard to know what I’m really thinking. So take it with a grain of salt that I just read an interesting article in the February 2008 issue of IEEE Computer on how to turn music lovers (particularly teenagers) into music distributors.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Pros and Cons of VoIP</title>
      <link>https://fenris.org/2008/03/19/pros-and-cons-of-voip/</link>
      <pubDate>Wed, 19 Mar 2008 14:45:46 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/2008/03/19/pros-and-cons-of-voip/</guid> 
      <description>&lt;p&gt;We’ve got voice over IP phones at the office. For the most part, they are a very smart way to handle our communications. We’re too large to want to use individual analog lines through the local telephone company – their rates would be prohibitively expensive. We’re too small to make a private branch exchange (PBX) worthwhile. So sending our voice data over the internet is a good approach. When the phones work, the sound quality is excellent, the cost is relatively inexpensive and the system is fairly reliable. Unfortunately, when the phones don’t work the challenges begin.&lt;/p&gt;</description>
    </item>
    <item>
      <title>FISA extension and telecom amnesty</title>
      <link>https://fenris.org/2008/02/25/fisa-extension-and-telecom-amnesty/</link>
      <pubDate>Tue, 26 Feb 2008 04:10:27 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/2008/02/25/fisa-extension-and-telecom-amnesty/</guid> 
      <description>&lt;p&gt;Few people have been on top of the extension of FISA like &lt;a href=&#34;http://www.salon.com/opinion/greenwald/2008/02/23/mcconell/index.html&#34;&gt;Glenn Greenwald&lt;/a&gt;. As a quick overview for folks that haven’t been paying attention to the issue:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Late last year a real potential problem with the Foreign Intelligence Surveillance Act (FISA) (as written in the 70s and amended after Sept 11) was recognized. Namely, communication between two foreign entities that was routed through the US was subject to the law’s requirements for a court order. This was never the intent of the law and largely crept in due to the routing of Internet traffic through major US networking hubs&lt;/li&gt;
&lt;li&gt;In addition to correcting this, the Whitehouse and the Republican congress pushed for a change to FISA that went beyond correcting the oversight and significantly extended the ability of the government to spy on citizens.&lt;/li&gt;
&lt;li&gt;Congress couldn’t pass this permanently, but did pass a six month bill before the August recess, in large part because of scare tactics used by the FBI (releasing warnings of predicted attacks in DC)&lt;/li&gt;
&lt;li&gt;Six months was up last week and the Whitehouse was pushing to: a) correct the known oversight, b) extend its ability to spy on US citizens without court order, and now they’ve added c) grant retro-active immunity to the telecommunications companies for illegally helping the government spy both before and after Sept 11th. And of course, if they don’t get all of this, we’ll die in our sleep, murdered by terrorists.&lt;/li&gt;
&lt;li&gt;The Senate caved and gave the Whitehouse everything it asked for.&lt;/li&gt;
&lt;li&gt;Surprisingly, the House didn’t and we’re now seeing extra pressure claiming that we’ll all die and it’ll be their fault. This is of course BS, but that’s the state of discourse in the country.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I don’t have much to add on the spying per se, but I will admit to being particularly offended and disturbed by the telecom immunity issue. Essentially, these companies started helping law enforcement to monitor calls, read emails, etc. well before September 11th. Their actions were not scared or patriotic, they were largely motivated by greed.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Wordpress title plugin</title>
      <link>https://fenris.org/2008/02/13/wordpress-title-plugin/</link>
      <pubDate>Wed, 13 Feb 2008 16:01:01 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/2008/02/13/wordpress-title-plugin/</guid> 
      <description>&lt;p&gt;One of the things I dislike about blogs (and actually most webpages) is that the static content is formatted very nicely using different fonts, etc., but the dynamic content is all pure text. And since there are only a few fonts you will find on every computer, the text all looks pretty much the same: sans or serif. On my own blog, I find that particularly annoying. I’ve got, what I think, is a nice clean looking theme that reminds me of a Victorian-era journal (except perhaps not that fancy). But all of the titles and dynamic content are plain text.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Moving day update</title>
      <link>https://fenris.org/2008/02/10/moving-day-update/</link>
      <pubDate>Sun, 10 Feb 2008 20:57:32 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/2008/02/10/moving-day-update/</guid> 
      <description>&lt;p&gt;The ISP move went reasonably well. There were a couple of minor glitches. One was a character set problem when I tried to take the most recent database snapshot from Linksky. I’m not entirely certain what happened, but I wound up with extra characters after some punctuation marks. Rather than spend too much time with it, I just grabbed the latest post and dumped it into the Dreamhost site and changed the time.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Moving day</title>
      <link>https://fenris.org/2008/02/06/moving-day/</link>
      <pubDate>Thu, 07 Feb 2008 04:05:45 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2008/02/06/moving-day/</guid> 
      <description>&lt;p&gt;Saturday is moving day. Nope, we haven’t bought a new house. We hope not to have to do that for a long time. It’s time to change ISPs. After only 10 months with Linksky, I’ve had enough. In the past year, between working on the non-profit’s website and my own, I’ve had the following issues:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;arbitrary version changes with no notification&lt;/li&gt;
&lt;li&gt;random breakage due to “security upgrades – like the time w e couldn’t do anything with a friend’s account or email because his last name contained the letters “curl&lt;/li&gt;
&lt;li&gt;random lockouts of service&lt;/li&gt;
&lt;li&gt;insults from the security “guru because he thinks he knows more about Unix and IT security than anyone else around&lt;/li&gt;
&lt;li&gt;etc.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The last straw for me came earlier this year when a &lt;a href=&#34;https://fenris.org%20/gallery&#34;&gt;gallery page&lt;/a&gt; broke. I tried to login to diagnose the problem and found that they had removed my SSH access. When I emailed, I was to ld there is a “security issue that makes sites with SSH more vulnerable and that they were looking for a workaround and would re-enable SSH by the weekend. Outside of dictionary attacks on passwords, this is really complete BS. Of course, the weekend came and nope, no SSH. Another week rolled around, no SSH. Forget this.&lt;/p&gt;</description>
    </item>
    <item>
      <title>CO2 emissions and compact fluorescent bulbs (updated)</title>
      <link>https://fenris.org/2008/02/02/co2-emissions-and-compact-florescent-bulbs/</link>
      <pubDate>Sat, 02 Feb 2008 19:37:08 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2008/02/02/co2-emissions-and-compact-florescent-bulbs/</guid> 
      <description>&lt;p&gt;There’s something about the idea of global warming that seems to drive people of a certain mindset completely insane. You start seeing things like: “the planet’s not warming up! “Okay, maybe it is warming, but humans couldn’t possibly be causing it. “Fine. We are causing global warming, but we can’t do anything about it. “What, we can? Well it’ll destroy our economy. “You mean it won’t? Well, you must be French.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Diagnostics</title>
      <link>https://fenris.org/2008/01/30/diagnostics/</link>
      <pubDate>Thu, 31 Jan 2008 02:26:42 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2008/01/30/diagnostics/</guid> 
      <description>&lt;p&gt;An interesting conversation at work today. I was talking with the guy, L (no – a different one), who has been responsible for our IT for the past 3.5 years. L isn’t the guy that always does the work, although he can. His real job is as an engineer in the company and that’s his primary focus. However, he does handle the technology strategy and monitors the folks that do the IT work. (He and I are talking quite a bit since I’m trying to take some of the load off in this area).&lt;/p&gt;</description>
    </item>
    <item>
      <title>Work blogging</title>
      <link>https://fenris.org/2008/01/27/work-blogging/</link>
      <pubDate>Mon, 28 Jan 2008 03:37:53 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2008/01/27/work-blogging/</guid> 
      <description>&lt;p&gt;Last week at work was pretty interesting. On Tuesday, L and I flew up to Dayton for the day to meet with our sponsors. That meant a 6am flight out and originally a 11pm return flight. Fortunately, we wrapped it up a bit early and landed home back around 8:30pm. The meeting went well. We were presenting some ideas that I had to the sponsors and they seemed to like them. Strangely enough, in talking to L, he said that he hadn’t really understood what I was proposing until the meeting. Not bad for a guy who wrote a short paper for the sponsors that described what he didn’t understand! But then, I guess that’s why L’s a full professor 🙂&lt;/p&gt;</description>
    </item>
    <item>
      <title>Information markets</title>
      <link>https://fenris.org/2007/12/23/information-markets/</link>
      <pubDate>Sun, 23 Dec 2007 22:32:53 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2007/12/23/information-markets/</guid> 
      <description>&lt;p&gt;One of my projects at work involves information markets: tools to extract aggregate knowledge from groups of people. For example, at &lt;a href=&#34;http://www.intrade.com&#34;&gt;Intrade&lt;/a&gt;, you can buy and sell contracts on questions like, “who will be the democratic nominee for president? or “how likely is it that the US economy will slip into recession? The market price reflects the cumulative belief that a given event has a certain probability.&lt;/p&gt;
&lt;p&gt;IEEE Spectrum also recently did a &lt;a href=&#34;http://www.spectrum.ieee.org/print/5488&#34;&gt;piece on information markets&lt;/a&gt; which talked about Microsoft’s use of a market in 2004 to predict the likelihood of an internal product meeting its production schedule. By opening the market to its employees, who presumably had knowledge of the issues with the product, Microsoft predicted that it would ship three months late – which it did.&lt;/p&gt;</description>
    </item>
    <item>
      <title>It lives</title>
      <link>https://fenris.org/2007/12/04/it-lives/</link>
      <pubDate>Wed, 05 Dec 2007 04:02:37 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2007/12/04/it-lives/</guid> 
      <description>&lt;p&gt;Right before Thanksgiving my &lt;a href=&#34;https://fenris.org/index.php/2007/11/21/tango-uniform/&#34;&gt;iPod went to that great electronics superstore in the sky&lt;/a&gt;. More specifically, the cute little 1.8″ hard drive died. Having looked around, I figured the best (or at least most interesting) fix was to &lt;a href=&#34;https://fenris.org/index.php/2007/11/25/rebuilding-an-ipod/&#34;&gt;replace the drive&lt;/a&gt; with a compact flash card. The connector part finally came in today and we had a lovely (and to spare you the suspense, successful) operation.&lt;/p&gt;
&lt;p&gt;We started with a 30 GB 5th generation iPod video showing the unhappy ipod symbol:&lt;/p&gt;</description>
    </item>
    <item>
      <title>Rebuilding an iPod</title>
      <link>https://fenris.org/2007/11/25/rebuilding-an-ipod/</link>
      <pubDate>Mon, 26 Nov 2007 04:08:48 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2007/11/25/rebuilding-an-ipod/</guid> 
      <description>&lt;p&gt;Over the holiday (I hope everyone had a good Thanksgiving!) I spent some time figuring out what to do about my broken iPod hard drive. The simplest/cheapest thing is to replace the drive with another 30 GB 1.8″ drive. The problem is that this is boring. Okay, next thought – up the drive size. I can get a 40 GB drive that’s the same size and is a drop-in replacement. Only problem is that this isn’t very cost effective in terms of dollars per GB. Apparently the wide-spread use of 30 GB drives in iPods has lowered the price point here. What about a 60 GB? It looks like that’s doable too and at a good price point. Downside is that I need a new back to accommodate the thicker drive. Hrm, that’s no good either.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Two factor authentication</title>
      <link>https://fenris.org/2007/11/06/two-factor-authentication/</link>
      <pubDate>Wed, 07 Nov 2007 02:05:42 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2007/11/06/two-factor-authentication/</guid> 
      <description>&lt;p&gt;A couple of weeks ago, Hunter and I were talking about passwords. More to the point, the inadequacy of passwords and why we haven’t moved beyond them yet. This touches on &lt;a href=&#34;https://fenris.org/index.php/2006/10/13/thinking-about-security-and-usability/&#34;&gt;several points that I made last year&lt;/a&gt;. Specifically, that a password that is secure enough starts to restrict its usability.&lt;/p&gt;
&lt;p&gt;In a nutshell, authentication is proving that you are who you claim to be. The standard ways of authenticating yourself are through: something you know (e.g., a password), something you have (e.g., a token) or something you are (e.g., biometrics, facial recognition, etc.). So the claim here is that the human brain is not good enough at remembering things to make “something you know secure. Unfortunately, it’s cheap and easy to implement. Two things which are always important.&lt;/p&gt;</description>
    </item>
    <item>
      <title>are there no good ISPs?</title>
      <link>https://fenris.org/2007/09/17/are-there-no-good-isps/</link>
      <pubDate>Tue, 18 Sep 2007 00:19:49 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2007/09/17/are-there-no-good-isps/</guid> 
      <description>&lt;p&gt;I’m starting to think that there aren’t any good Internet service providers. hsarik had troubles with Rimu Hosting. My own ISP seems to be far more focused on (their own version of) security than on usability. At work we’ve been using Pair. I’ve been pretty happy with them until this afternoon around 5pm when our project went dead while we had some 50 people using it.&lt;/p&gt;
&lt;p&gt;When we first developed the project, Pair was using php4 (yeah, I know – it’s my own fault for using php 🙂 ). Fortunately, they also provided phpwrap to allow cgi access. Okay, that’s not great, but it at least let our project which required php5 go live. Sometime recently, they made the default php5 without phpwrap. If I had known, well great – but I didn’t see any mention of it. Today, right after I went home they broke phpwrap. Easy enough to fix, but still irritating.&lt;/p&gt;</description>
    </item>
    <item>
      <title>power management and Linux</title>
      <link>https://fenris.org/2007/08/16/power-management-and-linux/</link>
      <pubDate>Fri, 17 Aug 2007 01:12:41 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2007/08/16/power-management-and-linux/</guid> 
      <description>&lt;p&gt;From &lt;a href=&#34;http://skvidal.wordpress.com/&#34;&gt;skvidal&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;If you haven’t seen &lt;a href=&#34;http://www.linuxpowertop.org/&#34;&gt;powertop&lt;/a&gt; yet, you’ve got to look into it. Arjan van de Ven, one of the linux kernel hackers and an employee of Intel, released powertop back in May. What is powertop? Think of the Unix “top, but monitoring power, not CPU, usage. It tells you how long you are spending in different CPU states, how long at different CPU frequencies, what is waking up the CPU most frequently, and best of all, it makes recommendations for saving power.&lt;/p&gt;</description>
    </item>
    <item>
      <title>It&#39;s official...</title>
      <link>https://fenris.org/2007/06/24/its-official/</link>
      <pubDate>Mon, 25 Jun 2007 02:27:02 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2007/06/24/its-official/</guid> 
      <description>&lt;p&gt;K thinks I’m a freak. In her defense, I’m not certain that she would have ordered a $70 keyboard, so she may be right. In my defense, I bought my first IBM-clone in 1990 and have kept the keyboard I chose since then. The company I bought it from, Formosa Computing (for those of you in NC, think Intrex), assembled parts and sold white-box computers. The keyboard that they originally gave me was awful. I didn’t like the mushy keys, so I went back, tried a dozen different keyboards and finally exchanged it for something with a bit more tactile response. With every new computer I bought, I used this keyboard. At one point, it had an AT to PS/2 to USB adapter in order to get it working.&lt;/p&gt;</description>
    </item>
    <item>
      <title>A mental sigh of relief</title>
      <link>https://fenris.org/2007/06/17/a-mental-sigh-of-relief/</link>
      <pubDate>Mon, 18 Jun 2007 02:40:45 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2007/06/17/a-mental-sigh-of-relief/</guid> 
      <description>&lt;p&gt;Working in IT, one of the things that is often on my mind is backing up my data. It’s often on my mind, but I seldom do anything about it. A few years ago, K and I bought an external USB drive to which we occasionally sync our desktop. That made me a bit more comfortable, we’re now covered if the drive crashes. Of course, I then started worrying about a fire in the house. Since my external drive is sitting on top of the computer itself, anything that destroys the one will likely destroy the other.&lt;/p&gt;</description>
    </item>
    <item>
      <title>That&#39;s too cool</title>
      <link>https://fenris.org/2007/06/11/thats-too-cool/</link>
      <pubDate>Tue, 12 Jun 2007 00:46:09 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2007/06/11/thats-too-cool/</guid> 
      <description>&lt;p&gt;Okay, thanks to &lt;a href=&#34;http://agrajag.livejournal.com/104837.html&#34;&gt;Jag&lt;/a&gt;, I’ve seen the coolest thing ever. The steampunk keyboard + monitor:&lt;/p&gt;
&lt;p&gt;&lt;a href=&#34;http://steampunkworkshop.com/lcd.shtml&#34;&gt;&lt;img alt=&#34;m19.jpg&#34; loading=&#34;lazy&#34; src=&#34;https://fenris.org/wp-content/uploads/2007/06/m19.thumbnail.jpg&#34;&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Now all I need is a few dozen hours of free time to build my own.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Javascript and Form Saves</title>
      <link>https://fenris.org/2007/04/18/javascript-and-form-saves/</link>
      <pubDate>Wed, 18 Apr 2007 11:06:00 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2007/04/18/javascript-and-form-saves/</guid> 
      <description>&lt;p&gt;As I’ve been working on the web front end for the &lt;a href=&#34;http://piedmontwildlifecenter.org/&#34;&gt;PWC&lt;/a&gt; database, we ran into an interesting problem. Our patient records are implemented w/ a “tab style for the display of different parts of the record. Unfortunately, the folks using the database kept tabbing over to a different part of the record which wound up not saving any of the changes they made. My original quick fix for this was to have the tab buttons also save. But that made me nervous. I worried that if someone accidentally changed things or if I was giving a demo, a change to a new tab would save bad data.&lt;/p&gt;</description>
    </item>
    <item>
      <title>It&#39;s quiet, too quiet...</title>
      <link>https://fenris.org/2007/04/13/its-quiet-too-quiet/</link>
      <pubDate>Fri, 13 Apr 2007 14:26:56 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2007/04/13/its-quiet-too-quiet/</guid> 
      <description>&lt;p&gt;I haven’t been so much with the blogging lately. For me, that is generally a sign that things are busy enough that I’m living life rather than blogging it [ed note: For all of you young readers, this is what is known as &lt;em&gt;irony&lt;/em&gt;. When I have the most to say, I have the least time to say it in; conversely, when I write the most, I have the least to say].&lt;/p&gt;</description>
    </item>
    <item>
      <title>Copyright infringement on campus</title>
      <link>https://fenris.org/2007/04/02/copyright-infringement-on-campus/</link>
      <pubDate>Mon, 02 Apr 2007 15:33:05 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2007/04/02/copyright-infringement-on-campus/</guid> 
      <description>&lt;p&gt;I can’t turn around anymore without hearing something new about how colleges and universities are public enemy number 1 with the copyright industry. In early February, the Recording Industry Association of America released a top 25 list of the schools to which they have sent notices of alleged copyright infringement. Right after that, they started announced that they would start suing students and that they were going to send “pre-subpoena and “settlement notices to campuses.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Wolverines!!</title>
      <link>https://fenris.org/2007/03/27/wolverines/</link>
      <pubDate>Wed, 28 Mar 2007 01:03:49 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2007/03/27/wolverines/</guid> 
      <description>&lt;p&gt;er, sorry just a minor &lt;a href=&#34;http://www.imdb.com/title/tt0087985/&#34;&gt;Red Dawn&lt;/a&gt; reference – it’s not my fault, I grew up in the 80s.&lt;/p&gt;
&lt;p&gt;Now that I’ve got that out of my system, a note on a new toy. As I mentioned before, &lt;a href=&#34;https://fenris.org/index.php/2006/12/07/going-digital/&#34;&gt;I’m going to go (mostly) digital on my trip to Yellowstone&lt;/a&gt;. I bought 8 GB of memory cards which is only 800 or so pictures in raw format. For the past several years, I’ve shot around 800 pictures in film. On the one hand, I suspect I’ll take more pictures in digital since the marginal cost is basically zero. On the other hand, I’ll have the ability to prune out any bad shots. Still, I suspect that I’ll wind up wanting more memory cards.&lt;/p&gt;</description>
    </item>
    <item>
      <title>John W. Backus dies</title>
      <link>https://fenris.org/2007/03/21/john-w-backus-dies/</link>
      <pubDate>Thu, 22 Mar 2007 02:45:43 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2007/03/21/john-w-backus-dies/</guid> 
      <description>&lt;p&gt;Back when I was a postdoc, I was studying FFTs. Okay, actually, I’m not enough of a mathematician to study FFTs, I was studying the efficient implementation of FFTs on parallel computational clusters. One of the graduate students I was working with on the project penned the following:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;If there’s a working FFT
That’s not in FORTRAN but in C
Alas it twice as slow will go
And that (as always) goes to show
If speed is your greatest asset,
Then what you C is what you get.
-V.V. (Mony) Iyers&lt;/p&gt;</description>
    </item>
    <item>
      <title>and people wonder why the change to DST worries me...</title>
      <link>https://fenris.org/2007/02/28/and-people-wonder-why-the-change-to-dst-worries-me/</link>
      <pubDate>Wed, 28 Feb 2007 23:38:06 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2007/02/28/and-people-wonder-why-the-change-to-dst-worries-me/</guid> 
      <description>&lt;p&gt;In 2005, congress mandated a change to daylight savings time, essentially, starting it three weeks earlier (March 11th, this year) and ending it three weeks later. Our local paper is requesting suggestions for what people will do with their 22 extra hours of daylight. Here’s my suggestion: spend the time fixing all of the computer problems caused by the DST change.&lt;/p&gt;
&lt;p&gt;Essentially, a change to DST is very similar to a self-inflicted Y2K problem. If you want to get a sense of how time/date issues can affect computer systems that aren’t prepared, take a look at &lt;a href=&#34;http://www.dailytech.com/article.aspx?newsid=6225&#34;&gt;this article regarding the new F-22 Raptor and it’s problems with the International Date Line&lt;/a&gt;. I wasn’t worried about Y2K because we knew about the issue for years and most modern operating systems and software had already addressed it. With the DST changes, we haven’t had nearly enough notice or preparation. Now, I’m not stocking up on canned goods, but I’m pretty certain that March 11th is going to bring about extra work.&lt;/p&gt;</description>
    </item>
    <item>
      <title>bah! - updated</title>
      <link>https://fenris.org/2007/01/01/bah/</link>
      <pubDate>Tue, 02 Jan 2007 01:20:26 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2007/01/01/bah/</guid> 
      <description>&lt;p&gt;so Saturday night around 11:30pm, the acid neutralizer I just &lt;a href=&#34;https://fenris.org/index.php/2006/12/29/the-right-tool-for-the-job/&#34;&gt;installed&lt;/a&gt;, exploded. Okay, it didn’t really explode, but the top popped off again. Spoke to the customer support, looked around a bit more and it seems that the threads on the tank were stripped. I’ll call tomorrow and see about getting a replacement tank&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Update:&lt;/strong&gt; I just received a call from the folks that sold me the acid neutralizer (I didn’t even have to call them back). Two interesting things: 1) apparently, the tank head they sent is a down flow head and the system I’ve got is designed to be upflow. Not a big deal, except that I have to reverse the inlet and outlet plumb lines as compared to what’s labeled on the head. Normally they send a note along those lines – this time they didn’t. 2) Given that one of the threads is stripped, they’re going to send me a new tank and an RMA to return the old one.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Web related notes</title>
      <link>https://fenris.org/2006/12/30/web-related-notes/</link>
      <pubDate>Sun, 31 Dec 2006 03:19:32 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2006/12/30/web-related-notes/</guid> 
      <description>&lt;p&gt;Two web-related notes:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;I’ve just migrated the &lt;a href=&#34;http://www.piedmontwildlifecenter.org&#34;&gt;Piedmont Wildlife Center’s website&lt;/a&gt; from a bunch of php webpages (the only reason for the php was to include the template) to the Drupal content management system. I’ve also added in the Coppermine photo gallery to keep our pictures. I would have used gallery2, but it kept dying due to memory errors with the database. I’m guessing our ISP has the ulimit set to small. Overall, the updates went pretty well, the biggest headaches were taking us out of a table based layout into the (more) modern world of CSS. I kept the current look and feel, but the CMS should make it easier to change in the future. But for now, at least I can distribute the web updating responsibilities to others 🙂&lt;/li&gt;
&lt;li&gt;Does anyone know how to get WordPress to do better detection/blocking of comment spam? It’s killing me. Fine, I’ll go google for it.&lt;/li&gt;
&lt;/ol&gt;</description>
    </item>
    <item>
      <title>New books</title>
      <link>https://fenris.org/2006/12/17/new-books/</link>
      <pubDate>Sun, 17 Dec 2006 22:56:11 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2006/12/17/new-books/</guid> 
      <description>&lt;p&gt;I had a chance last week to read a few books, all of which I would recommend in some fashion or another:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;National Geographic’s “The Ultimate Field Guide to Photography&lt;/strong&gt; This is a very good, basic field guide to photography. It covers a huge range of subjects and, not surprisingly, has some beautiful photographs. The book covers both film and digital photography, editing, archiving, composition, and has a great inspirational chapter describing Robert Clark’s photographic travelogue using only the camera in a cell phone. My only complaint about the book is that it covers too many topics, but not much in depth. It’s a great book for a beginner, but there wasn’t too much I hadn’t seen already.&lt;/p&gt;</description>
    </item>
    <item>
      <title>predictions... &#34;Cyber Monday&#34;</title>
      <link>https://fenris.org/2006/11/27/predictions-cyber-monday/</link>
      <pubDate>Mon, 27 Nov 2006 16:40:30 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2006/11/27/predictions-cyber-monday/</guid> 
      <description>&lt;p&gt;Let me get a prediction in here before the data come out tonight or tomorrow. “Cyber Monday will be a disappointment to retailers. They will do more electronic business than they did last year, but not significantly more than they did last Friday or next Monday. Any uptick is going to be small and due to people paying extra attention to online sales.&lt;/p&gt;
&lt;p&gt;“Cyber Monday (sorry, I can’t help but put it in quotes) is yet another marketing ploy. The theory is that when people go back to the office, they’ll use the high-speed connection to shop online. The problem is that the majority of people who shop online already have a high-speed connection at home. Add to that the companies that are cracking down on online shopping (and game playing and general web surfing) from the office and I’m guessing that it’ll be a non-event.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Poindexter</title>
      <link>https://fenris.org/2006/11/24/poindexter/</link>
      <pubDate>Fri, 24 Nov 2006 17:55:40 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2006/11/24/poindexter/</guid> 
      <description>&lt;p&gt;It’s taken me a bit to write about Admiral Poindexter’s visit and the small group talk we had with him. Let me start by reminding folks that here’s a guy who was convicted of lying to congress. The conviction was later overturned on a technicality. He’s also very politically savvy. I once asked my father if he would ever pursue becoming a general in the army. He told me that he was hoping to make full colonel (he later retired as a lt. colonel), but that becoming a general required a literal act of congress and that you needed to become a politician. I would assume the same thing is the case with an admiral and doubly so in the case of Poindexter who managed to become the highest ranking geek in government. All of which is to say take my impressions with a grain of salt.&lt;/p&gt;</description>
    </item>
    <item>
      <title>/me grumbles</title>
      <link>https://fenris.org/2006/11/15/me-grumbles/</link>
      <pubDate>Thu, 16 Nov 2006 02:20:31 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2006/11/15/me-grumbles/</guid> 
      <description>&lt;p&gt;bah – the past few nights, my website/blog keeps getting screwed up because all of the disk space on the drive is consumed. the first night, i freed up some space, but didn’t pay attention to how much was free. it happened last night and again i freed up space, noting that i had about 700 MB free. Tonight, it happened again and I finally tracked down what happened. I do an rsync backup to an external drive every day. A couple of days ago, I rebooted the machine and the external drive didn’t mount back up. So I wound up doing a backup of my home directory and root partition &lt;strong&gt;to the root partition&lt;/strong&gt;. Of course the partition filled up. Oh well, problem solved now. I just need to be more careful in the future&lt;/p&gt;</description>
    </item>
    <item>
      <title>North Korean nuclear test</title>
      <link>https://fenris.org/2006/11/06/north-korean-nuclear-test/</link>
      <pubDate>Tue, 07 Nov 2006 00:03:14 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2006/11/06/north-korean-nuclear-test/</guid> 
      <description>&lt;p&gt;Well, it seems that we finally know what happened with the &lt;a href=&#34;http://www.abc.net.au/science/news/stories/2006/1763160.htm&#34;&gt;North Korean nuclear test that fizzled&lt;/a&gt;. They apparently mistranslated the &lt;a href=&#34;http://www.washingtonpost.com/wp-dyn/content/article/2006/11/03/AR2006110300019.html&#34;&gt;Arabic documents the U.S. posted online&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Okay, so neither of those is really very funny. On the one hand, the U.S. posted a whole host of Arabic documents from Iraq that had never been examined before in the vague hope that someone would be able to find evidence that Iraq had a WMD program before we invaded. This was idiotic. It’s equivalent to my posting an entire database of personal information in the hopes that someone online could determine if there were social security numbers in it.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Biometrics - fingerprint scanners</title>
      <link>https://fenris.org/2006/10/23/biometrics-fingerprint-scanners/</link>
      <pubDate>Mon, 23 Oct 2006 14:00:05 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2006/10/23/biometrics-fingerprint-scanners/</guid> 
      <description>&lt;p&gt;I recently had a small argument with a vendor selling biometric fingerprint scanners tied to your credit card number. He said that they were the greatest and most secure thing ever; I said that there weren’t any standards and that the security of the devices was questionable.&lt;/p&gt;
&lt;p&gt;I wish I had seen &lt;a href=&#34;http://youtube.com/watch?v=zEXGetKk0Gg&#34;&gt;this&lt;/a&gt; earlier.&lt;/p&gt;
&lt;div style=&#34;position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;&#34;&gt;
			&lt;iframe allow=&#34;accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share; fullscreen&#34; loading=&#34;eager&#34; referrerpolicy=&#34;strict-origin-when-cross-origin&#34; src=&#34;https://www.youtube.com/embed/zEXGetKk0Gg?autoplay=0&amp;amp;controls=1&amp;amp;end=0&amp;amp;loop=0&amp;amp;mute=0&amp;amp;start=0&#34; style=&#34;position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;&#34; title=&#34;YouTube video&#34;&gt;&lt;/iframe&gt;
		&lt;/div&gt;</description>
    </item>
    <item>
      <title>Things that make you go blind</title>
      <link>https://fenris.org/2006/10/17/things-that-make-you-go-blind/</link>
      <pubDate>Tue, 17 Oct 2006 20:42:07 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2006/10/17/things-that-make-you-go-blind/</guid> 
      <description>&lt;p&gt;No, not that – Programming.&lt;/p&gt;
&lt;p&gt;I need to do some statistical work to test a theory. The best approach in order to compare my results is to do the work in &lt;a href=&#34;http://www.r-project.org/&#34;&gt;R&lt;/a&gt;. But it looks like I’ll need to extend a package. I download the package from CRAN (the Comprehensive R Archive Network), unpack it and start trying to figure out how it all works. Unfortunately, it is written in Fortran, C and R. Untangling it will take forever.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Thinking about security and usability</title>
      <link>https://fenris.org/2006/10/13/thinking-about-security-and-usability/</link>
      <pubDate>Sat, 14 Oct 2006 03:06:24 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2006/10/13/thinking-about-security-and-usability/</guid> 
      <description>&lt;p&gt;IT security (and for that matter, other security concerns too) are often seen as conflicting with usability. There is something to that. If you take any given technology and turn up the level of security it provides, you will almost always decrease the usability of the system.&lt;/p&gt;
&lt;p&gt;Consider passwords. If people are allowed to choose their own passwords, they will typically choose something very usable for them. They’ll pick their dog’s name, their wife’s name, their userid, etc. These passwords don’t provide much security. To compensate, we often turn up the security knob and require “stronger passwords, e.g., minimum of six characters with no dictionary words and multiple “character classes.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Stock spam</title>
      <link>https://fenris.org/2006/09/24/stock-spam/</link>
      <pubDate>Sun, 24 Sep 2006 22:26:26 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2006/09/24/stock-spam/</guid> 
      <description>&lt;p&gt;One of the disadvantages of having so many email accounts is the number of spam you get. Recently, I’ve been noticing an increase in stock spam making it through my spam filters. I’ve been wondering how effective the spam is and whether or not one could make money shorting these stocks.&lt;/p&gt;
&lt;p&gt;Apparently, I’m not the only one. The local paper carried a NYT article titled “ &lt;a href=&#34;http://www.newsobserver.com/104/story/490154.html&#34;&gt;Many people fall for stock spam&lt;/a&gt;. In the article, the author describes the work of &lt;a href=&#34;http://papers.ssrn.com/sol3/papers.cfm?abstract-id=920553&#34;&gt;Frieder and Zittrain&lt;/a&gt;. Frieder and Zittrain found that pink sheet stocks that were heavily touted in spam were significantly more likely to be traded than non-touted stocks. Purchasing these stocks would lead a 5.25% loss within two days. For the most heavily touted stocks, the average loss was almost 8% in two days.&lt;/p&gt;</description>
    </item>
    <item>
      <title>carrier thermidistat design - let&#39;s put it in the category of needs to be fixed</title>
      <link>https://fenris.org/2006/08/22/carriar-thermidistat-design-lets-put-it-in-the-category-of-needs-to-be-fixed/</link>
      <pubDate>Wed, 23 Aug 2006 02:56:16 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2006/08/22/carriar-thermidistat-design-lets-put-it-in-the-category-of-needs-to-be-fixed/</guid> 
      <description>&lt;p&gt;Back when I was a grad student and just about to finish up, the school of engineering turned a class of 60 freshman over to me to teach intro to numerical methods for engineers. I tried to liven things up by emailing the occassional engineering funny to my students who even reciprocated. The following is a brief excerpt from an engineer identification test that was sent to me by a student.&lt;/p&gt;</description>
    </item>
    <item>
      <title>things that make a security officer cry</title>
      <link>https://fenris.org/2006/08/14/things-that-make-a-security-officer-cry/</link>
      <pubDate>Mon, 14 Aug 2006 19:33:35 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2006/08/14/things-that-make-a-security-officer-cry/</guid> 
      <description>&lt;p&gt;I spent a lot of time last week looking at an application in order to assess its security. The thing that was troubling me was that this is a web application and the primary form for data entry was defined like:&lt;/p&gt;
&lt;p&gt;form name=foo method=post action=&lt;/p&gt;
&lt;p&gt;This means that the nothing happens when you hit submit on the form – at least not in the html world. So, I took a closer look and found that each of the buttons (submit and clear) actually had a field “onclick=’doSomething();&amp;rsquo; attribute.&lt;/p&gt;</description>
    </item>
    <item>
      <title>High dynamic range photography</title>
      <link>https://fenris.org/2006/08/03/high-dynamic-range-photography/</link>
      <pubDate>Fri, 04 Aug 2006 02:59:42 +0000</pubDate>
       <guid isPermaLink="false">https://fenris.org/index.php/2006/08/03/high-dynamic-range-photography/</guid> 
      <description>&lt;p&gt;Okay, now I’m just embarassed. I just heard about high dynamic range (HDR) photography from a NY Times &lt;a href=&#34;http://www.nytimes.com/2006/08/03/technology/03basics.html?ex=1154750400&amp;amp;en=112b21c6d06bf538&amp;amp;ei=5087%0A&#34;&gt;article&lt;/a&gt;. I plead that it’s mostly just a trick and, hey, I primarily shoot slide film anyway.&lt;/p&gt;
&lt;p&gt;So for others who haven’t heard of HDR photography, it’s a technical work around for one of the more difficult photographic problems – the problem of the dynamic range of film vs that of the eye. In a nutshell, the human eye has an enormous dynamic range. It can distinguish between two different very bright shades while simultaneously distinguishing between two very dark shades. It’s dynamic range, IIRC, is somewhere around 10. On the other hand, slide film and prints from print film have a dynamic range of 5, maybe 6. That doesn’t sound like much difference, except that this is a logarithmic scale.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
