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

<channel>
	<title>The life and times of Jeffrey Forman.</title>
	<atom:link href="http://blog.jeffreyforman.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.jeffreyforman.net</link>
	<description>This is my story, and I&#039;m sticking to it.</description>
	<lastBuildDate>Mon, 26 Jul 2010 02:13:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>New and Shiny &#8211; Comcast IPv6</title>
		<link>http://blog.jeffreyforman.net/2010/07/25/new-and-shiny-comcast-ipv6/</link>
		<comments>http://blog.jeffreyforman.net/2010/07/25/new-and-shiny-comcast-ipv6/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 02:13:52 +0000</pubDate>
		<dc:creator>Jeff Forman</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Open Source/Internet]]></category>

		<guid isPermaLink="false">http://blog.jeffreyforman.net/?p=373</guid>
		<description><![CDATA[A few months ago Comcast began publicizing their IPv6 trials for their customers. For those who don&#8217;t have a lot of spare time, IPv6 is the next addressing system for the Internet. Currently IPv4 is the predominant addressing system, akin to a phone number. With the growing number of people using the global Internet, these [...]]]></description>
			<content:encoded><![CDATA[<p>A few months ago <a href="http://www.comcast.net">Comcast</a> began publicizing their <a href="http://www.comcast6.net">IPv6 trials</a> for their customers. For those who don&#8217;t have a lot of spare time, <a href="http://en.wikipedia.org/wiki/IPv6">IPv6</a> is the next addressing system for the Internet. Currently <a href="http://en.wikipedia.org/wiki/IPv4">IPv4</a> is the predominant addressing system, akin to a phone number. With the growing number of people using the global Internet, these numbers are bound to run out. Various predictions have put this exhaustion anywhere from tomorrow to a hundred years from now for that Internet-apocalypse to arrive. IPv6 among other things, offers a near limit-less number of addresses (2^128 for the curious).</p>
<p>Comcast, loved or hated, started IPv6 trials on their own network, turning up customers on their (trial?) IPv6 network. Since IPv6 is not in widespread use today, and not all destinations on the Internet can handle v6 requests, there are several stop-gap solutions. One of them is IPv6 6RD, where RD stands for &#8220;Rapid deployment.&#8221; From my little understanding, this allows Comcast customers to encapsulate v6 traffic inside v4 packets through Comcast&#8217;s network to the IPv6-enabled destinations.</p>
<p>Without further wait, this is how I did it (save the several weeks of headbanging frustration that ensued):</p>
<p>Comcast provides their customers with some network addressing information:</p>
<blockquote>
<pre>IPv6 prefix = 2001:55c::/32
6rd BR FQDN = 6rd.comcast.net
IPv4 prefix length = 0</pre>
</blockquote>
<p>Having only a very cursory knowledge of IPv6 addressing, I stumbled my way through the configuration. The IPv6 prefix is used to determine the breadth of Comcast&#8217;s v6 network, which octets are network bits, and what bits are host bits. The BR FQDN (border router, fully qualified domain name) is the IPv4 hostname for the gateway in which my firewall will connect to reach the &#8220;v6 Internet.&#8221; IPv6 packets are encapsulated inside v4 packets, and passed through this border router for further transit.</p>
<p>On to the configuration. First off, I use <a href="http://www.openbsd.org">OpenBSD</a> 4.7 on my firewall/router. It runs on a <a href="http://www.netgate.com/product_info.php?cPath=60_88&amp;products_id=650">little embedded box</a>, using <a href="http://openbsd.org/faq/pf/index.html">pf</a> as the firewall packet filter.</p>
<p>First we must set some system variables via sysctl (via command line and commit to /etc/sysctl.conf):</p>
<blockquote>
<pre>net.inet6.ip6.accept_rtadv=0</pre>
<pre>net.inet6.ip6.forwarding=0</pre>
</blockquote>
<p>These two variables tell your machine not to accept router advertisements (don&#8217;t act like a DHCP client accepting network configuration), and the second one tells your machine not to forward IPv6 packets. v6 unlike v4, for the most part, obviates the need for NAT. Therefore if this value were &#8217;1&#8242;, you would be forwarding v6 traffic from the external Internet to all v6-enabled devices on your home network. Unless you really intend to open up your home network to the entire Internet, keep this value as 0 for now.</p>
<p>I created a little shell script that creates the tunnel interface (gif0), and then configures the interface and default routes.</p>
<blockquote>
<pre>#!/bin/sh -x</pre>
<pre>WANIP=`ifconfig vr0 | grep -v inet6 | grep inet | awk '{print $2}'`</pre>
<pre>HOSTRD=`host 6rd.comcast.net | awk '{print $4}'`</pre>
<pre>V6PREFIX=`printf '%02x%02x:%02x%02x' $(echo $WANIP | tr . ' ')`</pre>
<pre>ifconfig gif0 destroy</pre>
<pre>ifconfig gif0 create</pre>
<pre>ifconfig gif0 tunnel ${WANIP} ${HOSTRD}</pre>
<pre>ifconfig gif0 inet6 2001:55c:${V6PREFIX}::1 prefixlen 32</pre>
<pre>ifconfig gif0 up</pre>
<pre>route -n add -inet6 default ::1 -ifp gif0</pre>
</blockquote>
<p>The nasty bits are mostly in the first three variables.<br />
<em>WANIP</em> is the external IPv4 IP of my firewall<br />
<em>HOSTRD</em> is the IPv4 IP of Comcast&#8217;s IPv6 border router<br />
<em>V6PREFIX</em>: This takes WANIP and converts the IP into its hexadecimal equivalent. This is the format used in IPv6 addresses, and will make up the rest of my personal IPv6 prefix.</p>
<p>Most of the script is self explanatory, and large chunks are stolen from others on the Comcast IPv6 message boards. I have set my external IPv6 tunnel interface to $prefix::1, and set the route for all IPv6 traffic to go out over the gif0 tunnel interface.</p>
<p>At this point, if pf is disabled (therefore allowing all packets through to your machine), you should be able to ping6/traceroute6 to various IPv6-enabled Internet sites. These include ipv6.google.com, <a href="http://www.kame.net" rel="nofollow">http://www.kame.net</a> and ipv6.comcast.net.</p>
<blockquote>
<pre># traceroute6 ipv6.google.com
traceroute6: Warning: ipv6.l.google.com has multiple addresses; using 2001:4860:800f::63
traceroute6 to ipv6.l.google.com (2001:4860:800f::63) from 2001:55c:MY:PREFIX::1, 64 hops max, 12 byte packets
1  2001:55c:MY:PREFIX::1  21.491 ms  19.103 ms  22.759 ms
2  2001:558:e0:52::1  20.734 ms  19.227 ms  16.623 ms
3  2001:558:e0:24::1  17.903 ms  18.821 ms  19.193 ms
4  te-0-3-0-4-cr01.newyork.ny.ibone.comcast.net  21.704 ms  23.512 ms  24.715 ms
5  pos-1-12-0-0-cr01.mclean.va.ibone.comcast.net  27.821 ms  41.616 ms  31.4 ms
6  pos-0-3-0-0-pe01.ashburn.va.ibone.comcast.net  25.451 ms  34.823 ms  25.43 ms
7  2001:558:0:f749::2  29.801 ms  39.119 ms  33.211 ms
8  Vlan22.icore1.AEQ-Ashburn.ipv6.as6453.net  34.592 ms  36.29 ms  33.039 ms
9  pr61.iad07.net.google.com  34.766 ms  34.493 ms  39.389 ms
10  2001:4860::1:0:9ff  34.941 ms  35.911 ms  32.12 ms
11  2001:4860:0:1::149  37.298 ms 2001:4860:0:1::14b  48.993 ms 2001:4860:0:1::149  37.446 ms
12  iad04s01-in-x63.1e100.net  36.593 ms  31.367 ms  33.089 ms</pre>
</blockquote>
<p>This post only involves getting your gateway machine speaking IPv6. I have been able to wire up the rest of my internal LAN using <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=rtadvd&amp;sektion=8">rtadvd</a>, and allow them IPv6 access. There are a lot more pieces here, including rtadvd and packet filtering that I don&#8217;t quite fully understand yet how they all interact, and will require another post.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.jeffreyforman.net/2010/07/25/new-and-shiny-comcast-ipv6/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Google Wave as an online notepad?</title>
		<link>http://blog.jeffreyforman.net/2010/05/21/google-wave-as-an-online-notepad/</link>
		<comments>http://blog.jeffreyforman.net/2010/05/21/google-wave-as-an-online-notepad/#comments</comments>
		<pubDate>Fri, 21 May 2010 13:35:50 +0000</pubDate>
		<dc:creator>Jeff Forman</dc:creator>
				<category><![CDATA[Open Source/Internet]]></category>

		<guid isPermaLink="false">http://blog.jeffreyforman.net/?p=357</guid>
		<description><![CDATA[Months ago when Google Wave was the new hotness on the block, and everyone and their Internet-connected Mother was trying to get an account, I mostly scoffed at the technology. At the time I felt it was a cross between IRC, a rich real-time Wiki, and some crazy new &#8220;look what we can do Web [...]]]></description>
			<content:encoded><![CDATA[<p>Months ago when Google Wave was the new hotness on the block, and everyone and their Internet-connected Mother was trying to get an account, I mostly scoffed at the technology. At the time I felt it was a cross between IRC, a rich real-time Wiki, and some crazy new &#8220;look what we can do Web 2.0&#8243; type application. I poked around the various incarnations it took through the preview, but mostly forgot about it months ago.</p>
<p>Then today I was talking with <a href="http://blogs.osuosl.org/gchaix/">a friend</a> who mentioned that Google Apps users can now<a href="http://www.theregister.co.uk/2010/05/19/google_wave_announcement/"> get their own Waves for their domain</a>. Google Apps, for those who aren&#8217;t into all the Google Kool-Aid, is hosted email/calendaring/contacts/documents for a domain or organization. I must imagine their target demographic is business users, but I use it for my own personal domain, as do many others.</p>
<p>But back to Google Wave. I was trying to think of a use case for Google Wave for my domain, since previously I had pretty much written it off as some useless toy. After being in a meeting at work where all I wanted was an online notepad where I could add notes, edit them later, and then email out to my team, Google Wave came back to the front of my mind.</p>
<p>At work we use Zimbra for our email/calendaring, and while it has a tasks list and briefcase area for writing documents saved in the Zimbra ecosystem, it doesn&#8217;t quite cover all the bases. There is no way to tell revisions, so I can&#8217;t tell when I edited a piece of the document, and exactly what I modified. While Zimbra does have briefcase documents, it feels like a hacked together solution that does not integrate well. When working with a document, Zimbra decides to open said document in a screen-maximized window, dominating other windows. Why not stick that document into another Zimbra tab?</p>
<p>Comparing the functionality to Google Wave, I wish I could email a wave. I understand that a Wave might contain animated Youtube videos, or other rich content, but even a static-PDF would suffice. Currently all that is provided is the ability to email a link to your particular wave.</p>
<p>Having only used it for a day or so right now, it has proved pretty helpful, along with having the speed and reliability of other Google products.</p>
<p>You might be asking &#8220;what is the difference for this use case, between Google Wave and Google Documents?&#8221;  For me personally, Wave comes across as much more train-of-thought, whereas a Doc feels more like a formalized document. What do you guys think? Are there use cases for Google Wave other than the obvious?</p>]]></content:encoded>
			<wfw:commentRss>http://blog.jeffreyforman.net/2010/05/21/google-wave-as-an-online-notepad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find, you are a dirty mistress</title>
		<link>http://blog.jeffreyforman.net/2010/05/14/find-you-are-a-dirty-mistress/</link>
		<comments>http://blog.jeffreyforman.net/2010/05/14/find-you-are-a-dirty-mistress/#comments</comments>
		<pubDate>Fri, 14 May 2010 17:42:30 +0000</pubDate>
		<dc:creator>Jeff Forman</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.jeffreyforman.net/2010/05/14/find-you-are-a-dirty-mistress/</guid>
		<description><![CDATA[In my latest task at work, I have to write a script to take the most recent file from a particular directory changed within the last 240 minutes and copy it to a particular dated directory, in YYYYMMDDHHMM style. After some digging in the &#8216;find&#8217; manual page and bothering a co-worker I present: find $directory [...]]]></description>
			<content:encoded><![CDATA[<p>In my latest task at work, I have to write a script to take the most recent file from a particular directory changed within the last 240 minutes and copy it to a particular dated directory, in YYYYMMDDHHMM style.</p>
<p>After some digging in the &#8216;find&#8217; manual page and bothering a co-worker I present:</p>
<p>find $directory -mmin -240 -name &#8216;foobarstring&#8217; -printf &#8220;%p\n%CY%Cm%Cd%CH%CM\n&#8221;</p>
<p>This prints out on two successive lines:<br />
$(filename)<br />
$(dated string in the date format above)</p>
<p>The hardest part was getting the printf syntax right. When it works, it just works.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.jeffreyforman.net/2010/05/14/find-you-are-a-dirty-mistress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wine Riot 2010</title>
		<link>http://blog.jeffreyforman.net/2010/04/26/wine-riot-2010/</link>
		<comments>http://blog.jeffreyforman.net/2010/04/26/wine-riot-2010/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 17:26:39 +0000</pubDate>
		<dc:creator>Jeff Forman</dc:creator>
				<category><![CDATA[Boston]]></category>
		<category><![CDATA[Food]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.jeffreyforman.net/?p=351</guid>
		<description><![CDATA[I have been meaning to write this post for a few weeks, both as a recap of the event, and as a reminder to myself of the wine I want to keep a lookout for. For those not familiar with Wine Riot, it&#8217;s basically a beer festival/tasting, but with wine. A bunch of retailers, distributors [...]]]></description>
			<content:encoded><![CDATA[<p>I have been meaning to write this post for a few weeks, both as a recap of the event, and as a reminder to myself of the wine I want to keep a lookout for.</p>
<p>For those not familiar with <a href="http://www.thewineriot.com/" target="_blank">Wine Riot</a>, it&#8217;s basically a beer festival/tasting, but with wine. A bunch of retailers, distributors and vineyards themselves come to the event and give samples of their product to attendees. This happened to be the biggest surprise for me. Having been to several beerfests previously, I am used to the brewer themselves being there. This gives patrons the ability to speak to the people behind the product. You can really learn a lot from those people, all the nuances and thought behind a new series of brews, and upcoming products. Wine Riot had a much higher percentage of distributors and wine purveyors on-hand, as opposed to winemakers themselves. To the best of my memory, I don&#8217;t remmeber speaking to more than a handful of actual winemakers or people from the actual vineyard. In total, there were about 50 booths set up in the Cyclorama in Boston&#8217;s South End.</p>
<p>Below is the list of wine I vaguely scribbled as myself, M, and some friends made our way &#8216;around the world of wine.&#8217; In no particular order.</p>
<ul>
<li>Oyster Bay Marlborough Pinot Noir 2008 (New Zealand)</li>
<li>Esporao Reserva White 2008 (Portugal)</li>
<li>Sequana Vineyards Dutton Ranch Pinot Noir 2007 (California, Russian River Valley)</li>
<li>Corvidae Wine Co Wise Guy Sauvignon Blanc 2009  (Washington, Columbia Valley)</li>
<li>Corvidae Wine Co &#8220;Lenore&#8221; Syrah 2007 (Washington, Columbia Valley)</li>
<li>Charles Smith Wines Kung Fu Girl Riesling 2009 (Washington, Columbia Valley)</li>
<li>K Milbrandt Syrah 2007 (Washigton, Wahluke Slope)</li>
<li>K Viognier 2009 (Washington, Columbia Valley)</li>
<li>Terra Rosa Old Vine Malbec 2007 (Argentina)</li>
<li>Porta Wines Syrah WInemaker Reserva 2008 (Chile, Acongagua Valley)</li>
<li>Terra Andina Reserva Cabernet Sauvignon 2007 (Chile)</li>
<li>Yellow+Blue Torrontes 2009</li>
<li>Herdade do Esporao Touriga Nacional 2007 (Portugal, Alentejo)</li>
<li>Podere San Lorenzo Rosso di Montalcino DOC 2007 (Italy, Toscana)</li>
<li>NV Mionetto Moscato Dolce (Italy)</li>
<li>Corelli 34&#8242; Malbec 2008 (Argentina, Mendoza)</li>
<li>Cahteau Lacombe Noaillac 2006 (France, Bordeaux)</li>
<li>Domain La Croix Belle Champ du Coq 2007 (France, Languedoc)</li>
</ul>
<p>My biggest surprise was the Yellow+Blue Torrontes, a wine served from a plastic container, almost like Franzia&#8217;s popular low cost wine in the square box. It was surprisingly good for the connotation that boxed-wine has.  Overall the event was worth going, especially because I was able to use a Groupon I purchased, saving me $10/ticket from the normally $30/ticket price. Local restaurants Upper Crust Pizza, Legal Seafood, and Redbones BBQ were among others selling food at the event. Given a Groupon being offered for next year, I highly recommend the event for those interested in wine, and will return myself.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.jeffreyforman.net/2010/04/26/wine-riot-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Today is brought to you by: find . -mtim&#8230;</title>
		<link>http://blog.jeffreyforman.net/2010/04/08/today-is-brought-to-you-by-find-mtim/</link>
		<comments>http://blog.jeffreyforman.net/2010/04/08/today-is-brought-to-you-by-find-mtim/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 15:12:12 +0000</pubDate>
		<dc:creator>Jeff Forman</dc:creator>
				<category><![CDATA[Open Source/Internet]]></category>

		<guid isPermaLink="false">http://blog.jeffreyforman.net/2010/04/08/today-is-brought-to-you-by-find-mtim/</guid>
		<description><![CDATA[Today is brought to you by: find . -mtime +14 -exec rm -rfv {} \;]]></description>
			<content:encoded><![CDATA[<p>Today is brought to you by:<br />
find . -mtime +14 -exec rm -rfv {} \;</p>]]></content:encoded>
			<wfw:commentRss>http://blog.jeffreyforman.net/2010/04/08/today-is-brought-to-you-by-find-mtim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sprinkling an &#8216;or&#8217; on your regex</title>
		<link>http://blog.jeffreyforman.net/2010/03/26/sprinkling-an-or-on-your-regex/</link>
		<comments>http://blog.jeffreyforman.net/2010/03/26/sprinkling-an-or-on-your-regex/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 19:07:03 +0000</pubDate>
		<dc:creator>Jeff Forman</dc:creator>
				<category><![CDATA[Open Source/Internet]]></category>

		<guid isPermaLink="false">http://blog.jeffreyforman.net/2010/03/26/sprinkling-an-or-on-your-regex/</guid>
		<description><![CDATA[Had some fun today getting this working. If you need to do a boolean &#8216;or&#8217; comparison inside a regex with python, this is how I did it: if (re.match(r&#8221;([0-9]{6}&#124;[0-9]{8})$&#8221;, mydate)): In this case, I was trying to either match a date string using 8 digits, YYYYMMDD, or 6 digits, YYMMDD.]]></description>
			<content:encoded><![CDATA[<p>Had some fun today getting this working. If you need to do a boolean &#8216;or&#8217; comparison inside a regex with python, this is how I did it:<br />
            if (re.match(r&#8221;([0-9]{6}|[0-9]{8})$&#8221;, mydate)):</p>
<p>In this case, I was trying to either match a date string using 8 digits, YYYYMMDD, or 6 digits, YYMMDD.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.jeffreyforman.net/2010/03/26/sprinkling-an-or-on-your-regex/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Review: Ergotron LX Dual/Triple Display Lift Stand</title>
		<link>http://blog.jeffreyforman.net/2010/02/23/review-ergotron-lx-dualtriple-display-lift-stand/</link>
		<comments>http://blog.jeffreyforman.net/2010/02/23/review-ergotron-lx-dualtriple-display-lift-stand/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 13:58:54 +0000</pubDate>
		<dc:creator>Jeff Forman</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[CES]]></category>
		<category><![CDATA[Ergotron]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://blog.jeffreyforman.net/?p=297</guid>
		<description><![CDATA[During my annual trip to CES in Las Vegas this past year, I entered myself in the Tweet2Win contest hosted by Ergotron. They are a company from St. Paul, Minnesota, who make ergonomic products for work environments, from monitor stands, to portable desks, laptop stands, and everything in between. Turns out,  I was one of [...]]]></description>
			<content:encoded><![CDATA[<p>During my annual trip to CES in Las Vegas this past year, I entered myself in the Tweet2Win contest hosted by <a href="http://www.ergotron.com/" target="_blank">Ergotron</a>. They are a company from St. Paul, Minnesota, who make ergonomic products for work environments, from monitor stands, to portable desks, laptop stands, and everything in between. Turns out,  I was one of the winners. Through a series of conversations, I was able to receive an <a href="http://www.ergotron.com/Products/tabid/65/PRDID/128/Language/en-US/Default.aspx" target="_blank">LX Dual/Triple Display Lift Stand</a> as my winnings. Here are my thoughts:</p>
<p>A before picture. At home I am lucky enough to have two <a href="http://www.samsung.com/me/products/monitor/tftlcddigital/213t.asp" target="_blank">Samsung Syncmaster 213T LCDs</a>. Each with a 21.3&#8243; viewable area, running at a resolution of 1600&#215;1200.</p>
<p style="text-align: center;"><img class="size-medium wp-image-304   aligncenter" style="border: 1px solid black;" title="P1000328" src="http://blog.jeffreyforman.net/wp-content/uploads/2010/02/P1000328-300x225.jpg" alt="" width="300" height="225" /></p>
<p>I lugged the sufficiently heavy box home from the office and began the unpacking. The hardware came in several small plastic bags, each large piece wrapped in bubble wrap. Instructions included are in at least half a dozen languages.</p>
<p style="text-align: center;"><a href="http://blog.jeffreyforman.net/wp-content/uploads/2010/02/P1000333.jpg"><img class="aligncenter size-medium wp-image-310" style="border: 1px solid black;" title="P1000333" src="http://blog.jeffreyforman.net/wp-content/uploads/2010/02/P1000333-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>The first thing I noticed was that on the tripod base, the rubber coasters to protect the base from your desk are awfully small. For someone who has a polished wood desk, the thought of having a 40 pound stand potentially scratch my desk is horrifying. I wish those rubber circles were a bit bigger, if only to ease my scratch concern.</p>
<p style="text-align: center;"><a href="http://blog.jeffreyforman.net/wp-content/uploads/2010/02/P1000331.jpg"><img class="aligncenter size-medium wp-image-311" style="border: 1px solid black;" title="P1000331" src="http://blog.jeffreyforman.net/wp-content/uploads/2010/02/P1000331-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>The instruction for assembly are clear, and pictures are explanatory. Put this part into here, take X-many screws and tighten there, etc. There were a couple pieces whose connections made me scratch my head, where there was a little bit of wiggle room and I wasn&#8217;t sure if things should be aligned to the top of the hole where the screw goes, or the bottom. Considering the unit is supporting my two monitors now, I assume I did it right. The piece I refer to here is the horizontal bar which the monitors connect to. This bar rests on top of a &#8216;lip&#8217; on the vertical support. I was unsure, given the instructions, whether it should &#8216;click in&#8217; or just hang on the lip and be secured with the screws. Turns out, it should just hang on the lip, and be secured with the two provided screws.</p>
<p style="text-align: center;"><a href="http://blog.jeffreyforman.net/wp-content/uploads/2010/02/P1000336.jpg"><img class="aligncenter size-medium wp-image-312" style="border: 1px solid black;" title="P1000336" src="http://blog.jeffreyforman.net/wp-content/uploads/2010/02/P1000336-225x300.jpg" alt="" width="225" height="300" /></a></p>
<p>Once I got the bar secured to the vertical support, the rest was easy. Disconnect the current stands from my monitors, attach the Ergotron square mounting bracket to the back of each monitor, and attach the alligator clip-like brackets to the bar. Be warned, as the instructions say, not to hang the first monitor all the way out on the edge of the arm. This will, which it did for a split second in my case, make the stand tip over. Position the first monitor closer to the center until you can attach the second monitor to balance the weight out.</p>
<p style="text-align: center;"><a href="http://blog.jeffreyforman.net/wp-content/uploads/2010/02/P1000340.jpg"><img class="aligncenter size-medium wp-image-313" style="border: 1px solid black;" title="P1000340" src="http://blog.jeffreyforman.net/wp-content/uploads/2010/02/P1000340-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>Two plastic clips meant for cable management are included. They clip onto the back of the horizontal monitor arm, and are meant for you to feed cables behind. These are handy, but I only wish a few more were provided. I am only running two monitors now, but if I expand to a third, which this stand supports, I&#8217;m not sure those two clips will be enough to handle several thick DVI and power cables.</p>
<p style="text-align: center;"><a href="http://blog.jeffreyforman.net/wp-content/uploads/2010/02/P1000349.jpg"><img class="aligncenter size-medium wp-image-314" style="border: 1px solid black;" title="P1000349" src="http://blog.jeffreyforman.net/wp-content/uploads/2010/02/P1000349-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>I finally connected the cables and basked in the glory of my construction effort. There was one thing wrong though, the monitors were at least 4-5&#8243; above my eye level. The provided Allen-wrench tool is used to loosen the spring inside the vertical support, allowing the bar to stay at a lower height. This became an exercise in curiosity. Should I push down on the bar, and while holding it, decrease the tension? Or do I keep turning the wrench counter-clockwise until the bar lowers and &#8216;hovers&#8217; at your preferred height? Turns out, it is the latter. After what felt like at least 100 turns of the wrench, the bar lowered and stayed at a proper height.</p>
<p style="text-align: center;">
<p style="text-align: center;"><a href="http://blog.jeffreyforman.net/wp-content/uploads/2010/02/P10003601.jpg"><img class="aligncenter size-medium wp-image-337" title="P1000360" src="http://blog.jeffreyforman.net/wp-content/uploads/2010/02/P10003601-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>All told, from un-boxing to both monitors being mounted, I spent about 45 minutes getting the stand put together and installed. While installation was fairly easy, I wish Ergotron had put some more construction tips in English writing, rather than just graphics, to answer my confusion. I&#8217;ve been using the stand now for the past few days, and I really appreciate how it has helped clean up my desk. Having the monitors at eye height is a lot more comfortable. With the addition of a third monitor down the road, this stand will really pay dividends in saving me a ton of desk space rather than each monitor having its own base. Now I just have to convince myself to buy a third monitor.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.jeffreyforman.net/2010/02/23/review-ergotron-lx-dualtriple-display-lift-stand/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Holy Dim Sum</title>
		<link>http://blog.jeffreyforman.net/2010/02/06/holy-dim-sum/</link>
		<comments>http://blog.jeffreyforman.net/2010/02/06/holy-dim-sum/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 00:31:28 +0000</pubDate>
		<dc:creator>Jeff Forman</dc:creator>
				<category><![CDATA[Boston]]></category>
		<category><![CDATA[Food]]></category>

		<guid isPermaLink="false">http://blog.jeffreyforman.net/?p=293</guid>
		<description><![CDATA[I was down in Chinatown a couple weeks ago having shabu shabu while my mother was in town. I was waiting for her to arrive, and wandered over to an area of the neighborhood I don&#8217;t normally frequent (the East side of Surface Road for those curious)t. I came upon Hei La Moon, a resturant [...]]]></description>
			<content:encoded><![CDATA[<p>I was down in Chinatown a couple weeks ago having shabu shabu while my mother was in town. I was waiting for her to arrive, and wandered over to an area of the neighborhood I don&#8217;t normally frequent (the East side of Surface Road for those curious)t. I came upon <a href="http://heilamoon.com/">Hei La Moon</a>, a resturant I had frequently read about via local food blogs and forums. I grabbed a menu and noticed that the dim sum list was at least 20-30 deep. It&#8217;s a big place, one massive room, with pictures on the front doors showing carts weaving their way through a packed weekend lunch service.</p>
<p>Two weeks later, M and I, along with another couple friends who have become our restaurant seekers-in-crime, descended upon HLM at 12:30pm on a Saturday afternoon. To say this place was busy is an understatement. Now I don&#8217;t pretend to speak any Chinese, but that&#8217;s all I heard among the hostess shouting out numbers to parties waiting to be seated. (Being the stereotypical white male, I have heard the adage that a restaurant with &#8216;locals&#8217; to the cuisine is normally very good, so I was psyched.) Without waiting more than 5-10 minutes, we were ushered through the throngs of people and incredible number of staff pushing carts to our table. I looked around and all I saw was a sea of people and staff, working the crowds entering and exiting, ushering food between tables, and turning tables over for the next party.</p>
<p>Within 30 seconds of being seated, we had a cart off to the side of our table, with a waitress offering us various kinds of dumplings. This is all from memory, as I was not able to either take pictures nor write down any of what we had due to the intense commotion of the entire dining room. (In no particular order)</p>
<ul>
<li>Beef Ball</li>
<li>Tripe</li>
<li>Peking Duck</li>
<li>Tofu skins</li>
<li>Pork knuckles with thick wonton noodles (the latter were incredible)</li>
<li>Steamed shrimp dumplings</li>
<li>Steamed Pork buns</li>
<li>Sticky rice with peanuts</li>
<li>and others I am unable to remember.</li>
</ul>
<p>This was a new experience for me, having never had &#8216;cart service&#8217; dim sum. Waitresses did speak English, but over the din of the dining room (it was incredibly loud, but still possible to carry a conversation at your table), we ended up just pointing to things we wanted and that we hoped had the food we expected in them.</p>
<p>There were some hits, like the peking duck, tripes, and wonton noodles. Each had a distinct flavor, never bland, and perfectly cooked, even though they had probably been sitting on the cart for several minutes making their way around the dining room. And there were some misses, although few and far between. Only the beef balls and sticky rice received less-than-rave reviews. We found those dishes to be very single-note, with not much interesting flavor. The beef balls tasted more like meatloaf, of which I am not a fan. The sticky rice had boiled peanuts, which surprisingly added no peanut flavor to the dish. We drank hot tea throughout the meal, but I must imagine cold water and soft drinks are available. Flagging down a waiter or waitress was not a problem when we were looking for more dishes, most of the time they came to us before we were done.</p>
<p>Needless to say, we were full, but not stuffed, after polishing off the food we had &#8216;ordered.&#8217; The one thing we were unsure of was just how much money we spent, given that the dim sum menu has no prices. After giving them my credit card and hoping for the best, a bill of $44 came back. We were blown away that so much food came from $11 a person. While not an every weekend trek for us from the near suburbs, we will definitely be back to try more of the menu and experience the frenzied atmosphere of Hei La Moon.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.jeffreyforman.net/2010/02/06/holy-dim-sum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CES 2010</title>
		<link>http://blog.jeffreyforman.net/2010/01/21/ces-2010/</link>
		<comments>http://blog.jeffreyforman.net/2010/01/21/ces-2010/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 16:14:10 +0000</pubDate>
		<dc:creator>Jeff Forman</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.jeffreyforman.net/?p=270</guid>
		<description><![CDATA[Finally got around to posting this&#8230;. CES 2010 Day One CES 2010 began pretty well today. Arrived in Vegas around 11pm on Thursday night, and went to the hotel. While I expected the down economy to keep a lot of people home, along with big companies, I didn&#8217;t expect the strip to be this quiet. [...]]]></description>
			<content:encoded><![CDATA[<p>Finally got around to posting this&#8230;.</p>
<p>CES 2010<br />
Day One</p>
<p>CES 2010 began pretty well today. Arrived in Vegas around 11pm on Thursday night, and went to the hotel. While I expected the down economy to keep a lot of people home, along with big companies, I didn&#8217;t expect the strip to be this quiet.</p>
<p>Got to the show and headed towards the home theater/media area. I&#8217;ve been contemplating picking up a home media server for a while to hook up to our big 46&#8243; LCD at home. Between Hulu, Youtube, Netflix (if I sign up for it), and downloaded TV shows and movies, it seems like a great addition to cable service where we don&#8217;t subscribe to the premium movie channels. From speaking to friends about the various offers out there, Boxee came up frequently.</p>
<p>The most memorable products I saw:<a href="http://blog.jeffreyforman.net/wp-content/uploads/2010/01/IMG_04535.jpg"><img class="alignright size-medium wp-image-278" title="IMG_0453" src="http://blog.jeffreyforman.net/wp-content/uploads/2010/01/IMG_04535-225x300.jpg" alt="" width="225" height="300" /></a></p>
<p>The iTam tam. This is the most visually appealing iPod dock/speaker i&#8217;ve seen. One problem, you need to let guests know that it isn&#8217;t a seat.</p>
<p>The neatest product that I can&#8217;t find more than one segment to market to:</p>
<p>The Entourage Edge. It&#8217;s a clamshell design product, with an e-book reader on one side, and an Android PC on the other. I can see how this could be handy to students whose teachers send out class notes, where they can annotate and mark-up the e-book pages and transfer those back to the computer for sharing. But, I would find that without an actual keyboard t<a href="http://blog.jeffreyforman.net/wp-content/uploads/2010/01/IMG_0447.jpg"><img class="alignright size-medium wp-image-279" title="IMG_0447" src="http://blog.jeffreyforman.net/wp-content/uploads/2010/01/IMG_0447-300x225.jpg" alt="" width="300" height="225" /></a>he Android PC side of the product is woefully underpowered for things you&#8217;d want to do. Go over to a website? Start typing on the virtual keyboard (you can plug in a USB keyboard). Still, a very cool mashup of two popular technologies.</p>
<p>Sony&#8217;s booth was packed, where my father and I took a break on the Gran Torismo 5 video games. We both left thinking neither of us will get in the car with the other again.</p>
<p><a href="http://blog.jeffreyforman.net/wp-content/uploads/2010/01/IMG_04501.jpg"><img class="size-medium wp-image-282 alignleft" title="IMG_0450" src="http://blog.jeffreyforman.net/wp-content/uploads/2010/01/IMG_04501-225x300.jpg" alt="" width="225" height="300" /></a></p>
<p>The biggest &#8216;gee whiz&#8217; product I saw were the Samsung LED and OLED TV&#8217;s. The worlds slimmiest TV was there, at 6.9mm.  I haven&#8217;t done much research on the current prices of LED TV&#8217;s, but I can&#8217;t imagine they are in the sweet spot for most customers currently. Once prices come down, these incredibly flat and incredibly gorgeous TV&#8217;s will replace today&#8217;s flat screen LCD&#8217;s and Plasmas</p>
<p><a href="http://blog.jeffreyforman.net/wp-content/uploads/2010/01/IMG_0449.jpg"><img class="aligncenter size-medium wp-image-284" title="IMG_0449" src="http://blog.jeffreyforman.net/wp-content/uploads/2010/01/IMG_0449-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>Also swung by the Ergotron booth. While not sexy, they make a lot of ergonomically-correct desks and computer monitor stands. They were having a contest that if you tweet a photo of you and one of their products, you&#8217;ll be entered into win one of them. Check.</p>
<p><a href="http://blog.jeffreyforman.net/wp-content/uploads/2010/01/IMG_0446.jpg"><img class="aligncenter size-medium wp-image-285" title="IMG_0446" src="http://blog.jeffreyforman.net/wp-content/uploads/2010/01/IMG_0446-225x300.jpg" alt="" width="225" height="300" /></a></p>
<p>Day Two:</p>
<p>This was mostly a day to go back over some products that we wanted to hear more about. I went back towards Intel and played around with some of the netbooks there. If I get one, it would be one of the MSI Wind&#8217;s or Lenovo Ideapad. Both had keyboards that didn&#8217;t make my hands feel cramped.</p>
<p>I went back over towards Boxee and played with the interface a bit more. Pretty slick, although from what I saw, it handles network files only via CIFS (Samba), so if I ended up picking one of these up, I&#8217;d have to setup Samba along side NFS at home. No big deal, but something to add to the to-do list.</p>
<p>Saw on my Twitter feed, that I was one of the winners of the Ergotron contest. (Several days later&#8230;.) I&#8217;ve been exchanging emails with a person in their marketing department. Since the contest was for a single monitor stand, and I have two at home, they are donating the single-monitor stand to a local school, and sending me a dual/triple monitor stand to review (and keep). The power of the Internets&#8230;</p>
<p>As part of our annual trip, our group rents a room at a local sports bar or tavern to watch the first Saturday of NFL Games. In years past, we have rented out a room at the ESPN Sports Zone. Big room, bunch of big flat screen TV&#8217;s, some comfortable leather chairs, and a minimum of food/drink we have to order. This year, we booked a &#8216;Luxury Skybox&#8217; at Lagasse&#8217;s Stadium Sports Bar at the Palazzo Hotel. This is now the benchmark for places we rent out. We had about 30-35 guys, and room for more. Three huge couches with ottoman&#8217;s to relax, a pool table, and a terrace with two more couches and TV&#8217;s to match. This terrace by the way, overlooked Las Vegas Blvd. This is the way to watch the games, I highly recommend it.</p>
<p>Had a great time overall, it&#8217;s always neat to see the new products out there. I don&#8217;t know if anything hit me as a &#8216;must have&#8217; for the coming year. Some evolutionary improvements to the home theater space with Boxee and the other products. TV&#8217;s will continue to get brighter, thinner and lighter with better resolution. Intel had its new stable of CPUs to show off, typical enhancements on power and battery-usage.</p>
<p>Until next year.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.jeffreyforman.net/2010/01/21/ces-2010/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>2010, a goal sheet.</title>
		<link>http://blog.jeffreyforman.net/2010/01/01/2010-a-goal-sheet/</link>
		<comments>http://blog.jeffreyforman.net/2010/01/01/2010-a-goal-sheet/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 22:24:05 +0000</pubDate>
		<dc:creator>Jeff Forman</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[goals]]></category>

		<guid isPermaLink="false">http://blog.jeffreyforman.net/?p=267</guid>
		<description><![CDATA[Since everyone is blogging about how they want to make 2010 the best year ever, this is my list of resolutions/goals for the year. Most importantly, is to get married. August 7th seems far away now, but I am sure once things pick up, surviving my wedding will be a great goal to have completed. [...]]]></description>
			<content:encoded><![CDATA[<p>Since everyone is blogging about how they want to make 2010 the best year ever, this is my list of resolutions/goals for the year.</p>
<ul>
<li>Most importantly, is to get married. August 7th seems far away now, but I am sure once things pick up, surviving my wedding will be a great goal to have completed.</li>
<li>Improve my programming skills. I&#8217;m an operational programmer at heart, coding to get the job done. But with all the cool API&#8217;s floating around the Internet, from Google Maps, to Foursquare, and Linode to name a few, I&#8217;d love to get more involved in hacking code and sharing it.</li>
<li>Use the $100 REI gift certificate I have to get a tent, to get back into camping. Given that I got a great new digital camera over the fall, I&#8217;d love to get outdoors more often and use it. Our new condo has a lot of empty walls that I think would look great with some photography up on them.</li>
<li>Get on top of my finances more. While I&#8217;m lucky enough to have the disposable income to not have to worry about it, I&#8217;d love to make my money work for me more, instead of just sitting there.</li>
<li>And last but not least, to feed my vice for great food and wine even more. Exploring, tasting, and learning.</li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://blog.jeffreyforman.net/2010/01/01/2010-a-goal-sheet/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
