<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>This Side</title>
	<atom:link href="http://thisside.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://thisside.wordpress.com</link>
	<description>The view from over here.</description>
	<lastBuildDate>Mon, 12 Jan 2009 18:55:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='thisside.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>This Side</title>
		<link>http://thisside.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://thisside.wordpress.com/osd.xml" title="This Side" />
	<atom:link rel='hub' href='http://thisside.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Replacing Text &amp; Preserving Formatting in a Cell</title>
		<link>http://thisside.wordpress.com/2009/01/12/replacing-text-preserving-formatting-in-a-cell/</link>
		<comments>http://thisside.wordpress.com/2009/01/12/replacing-text-preserving-formatting-in-a-cell/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 18:50:35 +0000</pubDate>
		<dc:creator>tjcoppet</dc:creator>
				<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://thisside.wordpress.com/?p=88</guid>
		<description><![CDATA[I found that if you use the built-in Excel functions to manipulate text, the formatting goes out the window if you have mixed formats within a single cell. I discovered the little written about the Characters class and wrote a grotty VBA function to help me out. Private Sub ReplaceText(row As Integer, col As Integer, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thisside.wordpress.com&amp;blog=658259&amp;post=88&amp;subd=thisside&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I found that if you use the built-in Excel functions to manipulate text, the formatting goes out the window if you have mixed formats within a single cell. I discovered the little written about the Characters class and wrote a grotty VBA function to help me out.</p>
<p><code></p>
<pre>
Private Sub ReplaceText(row As Integer, col As Integer, pos As Integer,
                        oldsub As String, newsub As String)
    Dim fontName As String
    Dim fontSize As Integer
    Dim nlen As Integer

    nlen = Len(newsub)
    With Cells(row, col)
        fontName = .Characters(pos, 1).font.Name
        fontSize = .Characters(pos, 1).font.Size
        .Characters(pos, 1).Insert (newsub)
        .Characters(pos, nlen).font.Name = fontName
        .Characters(pos, nlen).font.Size = fontSize
        .Characters(pos + nlen, Len(oldsub) - 1).Delete
    End With
End Sub
</pre>
<p></code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thisside.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thisside.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thisside.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thisside.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thisside.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thisside.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thisside.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thisside.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thisside.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thisside.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thisside.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thisside.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thisside.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thisside.wordpress.com/88/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thisside.wordpress.com&amp;blog=658259&amp;post=88&amp;subd=thisside&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thisside.wordpress.com/2009/01/12/replacing-text-preserving-formatting-in-a-cell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d9f6093d448f68f1789fec75dc00020?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tjcoppet</media:title>
		</media:content>
	</item>
		<item>
		<title>Get It While You Can</title>
		<link>http://thisside.wordpress.com/2008/12/21/get-it-while-you-can/</link>
		<comments>http://thisside.wordpress.com/2008/12/21/get-it-while-you-can/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 02:40:00 +0000</pubDate>
		<dc:creator>tjcoppet</dc:creator>
				<category><![CDATA[around town]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://thisside.wordpress.com/?p=84</guid>
		<description><![CDATA[I was sitting at my desk when the fog rolled in. Another wave in our weekend storm. I thought it would be great to try some evening shots in the Public Garden playing the Christmas lights against the fog, the recent snowfall, and the clouds reflecting the light of the city. 3 hours later I&#8217;m [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thisside.wordpress.com&amp;blog=658259&amp;post=84&amp;subd=thisside&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was sitting at my desk when the fog rolled in. Another wave in our weekend storm. I thought it would be great to  try some evening shots in the Public Garden playing the Christmas lights against the fog, the recent snowfall, and the clouds reflecting the light of the city.</p>
<p>3 hours later I&#8217;m still typing at my keyboard and there&#8217;s no more fog and no more clouds. I missed it.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thisside.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thisside.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thisside.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thisside.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thisside.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thisside.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thisside.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thisside.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thisside.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thisside.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thisside.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thisside.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thisside.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thisside.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thisside.wordpress.com&amp;blog=658259&amp;post=84&amp;subd=thisside&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thisside.wordpress.com/2008/12/21/get-it-while-you-can/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d9f6093d448f68f1789fec75dc00020?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tjcoppet</media:title>
		</media:content>
	</item>
		<item>
		<title>Boosting Web Browser Performance</title>
		<link>http://thisside.wordpress.com/2008/12/21/browser-performance-boost/</link>
		<comments>http://thisside.wordpress.com/2008/12/21/browser-performance-boost/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 01:55:35 +0000</pubDate>
		<dc:creator>tjcoppet</dc:creator>
				<category><![CDATA[web damage]]></category>

		<guid isPermaLink="false">http://thisside.wordpress.com/?p=71</guid>
		<description><![CDATA[If you use Firefox 3, you can enable HTTP Pipelining to give your browser a performance boost for web sites that support pipelining. It cuts down the additive latency you get from a ping-pong style of protocol by submitting the requests for the same server together. On low-latency connections it won&#8217;t matter as much but [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thisside.wordpress.com&amp;blog=658259&amp;post=71&amp;subd=thisside&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you use <a href="firefox.com" target="_blank">Firefox 3</a>, you can enable <a href="http://www.mozilla.org/projects/netlib/http/pipelining-faq.html" target="_blank">HTTP Pipelining</a> to give your browser a performance boost for web sites that support pipelining. It cuts down the additive latency you get from a ping-pong style of protocol by submitting the requests for the same server together. On low-latency connections it won&#8217;t matter as much but it may be more noticable for those long-distance web sites with a gazillion little gifs.</p>
<p>HTTP Pipelining isn&#8217;t enabled by default because apparently it can have negative effects with servers that don&#8217;t support it (it&#8217;s only been 10 years since HTTP 1.1 was published). So far so good with me, perhaps those servers have an <code>I</code> and an <code>S</code> in their name.</p>
<p>Go to <code>about:config</code> and search for network.http.pipelining. It can be enabled for http and https connections as well as set the number of requests. I jacked it up to 16 and will see what happens.  I don&#8217;t use firefox as my regular browser so I&#8217;m just playing around. Safari feels &#8220;lighter&#8221; to me as an application, and gives me the illusion of performance.</p>
<p>But Safari doesn&#8217;t support HTTP Pipelining. Maybe in another 10 years? I did stumble on <a href="http://www.scifience.net/safarispeed/" target="_blank">SafariSpeed</a> which is a little utility that sets various Safari preferences such as disabling the built-in page display delay and turning off the favorite icons. If you can never remember the names of the preferences, this tool might come in handy. I can feel the difference by disabling these two &#8220;features&#8221; in Safari.</p>
<p>For Internet Explorer, the best thing you can do for a better web experience is to change browsers. The best thing you can do for my web experience is to change browsers. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thisside.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thisside.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thisside.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thisside.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thisside.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thisside.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thisside.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thisside.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thisside.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thisside.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thisside.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thisside.wordpress.com/71/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thisside.wordpress.com/71/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thisside.wordpress.com/71/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thisside.wordpress.com&amp;blog=658259&amp;post=71&amp;subd=thisside&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thisside.wordpress.com/2008/12/21/browser-performance-boost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d9f6093d448f68f1789fec75dc00020?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tjcoppet</media:title>
		</media:content>
	</item>
		<item>
		<title>City of the Future</title>
		<link>http://thisside.wordpress.com/2008/12/18/city-of-the-future/</link>
		<comments>http://thisside.wordpress.com/2008/12/18/city-of-the-future/#comments</comments>
		<pubDate>Thu, 18 Dec 2008 17:27:52 +0000</pubDate>
		<dc:creator>tjcoppet</dc:creator>
				<category><![CDATA[around town]]></category>

		<guid isPermaLink="false">http://thisside.wordpress.com/?p=62</guid>
		<description><![CDATA[I attended a lecture from Richard Dimino, CEO of A Better City. Although I&#8217;m quite familiar with most of the development projects and activities in Boston, especially those related to the CA/T project, what hadn&#8217;t occurred to me that many of the ideas were rooted in activities that occurred 30-40 years ago in Boston. And [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thisside.wordpress.com&amp;blog=658259&amp;post=62&amp;subd=thisside&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I attended a lecture from Richard Dimino, CEO of <a href="http://www.abettercity.org/" target="_blank">A Better City</a>. Although I&#8217;m quite familiar with most of the development projects and activities in Boston, especially those related to the <a href="http://www.masspike.com/bigdig/index.html" target="blank">CA/T project</a>, what hadn&#8217;t occurred to me that many of the ideas were rooted in activities that occurred 30-40 years ago in Boston. And how much of a difference it makes when the communities are involved in design and decision making to preserve neighborhoods and reclaim usable space.</p>
<p>Dimino&#8217;s lecture centered around the theme that transportation projects can provide the biggest opportunities for urban development. Despite its problems, there is no greater example than the Big Dig. It wasn&#8217;t just about building tunnels underground. And to say that it restored downtown is an understatement. The project left a new city in its wake.</p>
<p>I had come to believe that the next big challenge for Boston is dealing with its aging transit system. Here is an opportunity that not only effects downtown Boston but can positively impact the life an economy throughout this region. I was disheartened to hear that the continued strategy will be based on incremental improvements and bus lines.</p>
<p>I first heard of the proposed Silver Line many years ago. A modern light rail system to connect the unfortunate radial design of the current T system. The improved connectivity would release pressure in Boston&#8217;s congested core, restore transit to the South End after the relocation of the Orange line, and expand the reach of the system to neighborhoods in Cambridge and Boston not conveniently situated near the existing lines. What we got was a bus to the airport.</p>
<p>To be fair, this plan falls under the <a target="_blank">Urban Ring</a> and is a visionary idea that dates back to the 70&#8242;s. However, my hope for Boston in 2030 isn&#8217;t a bunch of buses stuck in traffic bringing people to and from the Red Line that stops every 50 feet in rush hour. The Green Line is cute, but it shouldn&#8217;t take 20 minutes to travel a mile. Whether or not the Urban Ring is constructed, what is to come of this growing metropolis in 25 years if we don&#8217;t start taking on the big problems.</p>
<p>The solutions are expensive. It is evident that the downtown subway infrastructure needs to be replaced along with many of the tunnels. The old streetcar pathways cannot support rapid transit. Control systems need upgrading to pilot and manage more capacity. My all time favorite is watching a train stopped on the Longfellow because another hasn&#8217;t cleared Park Street. When you can walk faster than rapid transit, it isn&#8217;t rapid transit.</p>
<p>Commuter rail in eastern Massachusetts needs to be designed as rapid transit. The city has sprawled and real estate prices have forced both residents and businesses to move further out. The frequency of service forces many people to continue drive to the subway stations, if they can find a parking space, if they bother coming into town at all.</p>
<p>Although the current financial situation with the MBTA does not allow for implementing big ideas, it doesn&#8217;t mean we can&#8217;t have them. 35 years ago, there were big ideas put on the table, probably crazy to most at the time. We could have simply replaced the bents of the Fitzgerald expressway or run a new harbor tunnel through East Boston. These incremental actions would have been considered safe bets for the economy of the time. Incremental approaches in long range planning lead to mediocrity. If Boston wants to compete globally it also needs to compete with new urban centers that are building 21st century transit systems. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thisside.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thisside.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thisside.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thisside.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thisside.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thisside.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thisside.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thisside.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thisside.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thisside.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thisside.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thisside.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thisside.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thisside.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thisside.wordpress.com&amp;blog=658259&amp;post=62&amp;subd=thisside&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thisside.wordpress.com/2008/12/18/city-of-the-future/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d9f6093d448f68f1789fec75dc00020?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tjcoppet</media:title>
		</media:content>
	</item>
		<item>
		<title>IE6 Usage Dropping</title>
		<link>http://thisside.wordpress.com/2008/12/09/ie6-usage-dropping/</link>
		<comments>http://thisside.wordpress.com/2008/12/09/ie6-usage-dropping/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 23:20:04 +0000</pubDate>
		<dc:creator>tjcoppet</dc:creator>
				<category><![CDATA[web damage]]></category>

		<guid isPermaLink="false">http://thisside.wordpress.com/?p=52</guid>
		<description><![CDATA[IE6 usage on www.bostonbyfoot.org has dropped to 21% from 39% last year. Interesting, IE7 has only risen 7%. I imagine the increase in Firefox accounts for some defection from Microsoft altogether (however I personally prefer Safari). While these are both good trends, I wouldn&#8217;t mind seeing IE6 disappear altogether. I got used to the CSS [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thisside.wordpress.com&amp;blog=658259&amp;post=52&amp;subd=thisside&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>IE6 usage on <a href="http://www.bostonbyfoot.org" target="_blank">www.bostonbyfoot.org</a> has dropped to 21% from 39% last year. Interesting, IE7 has only risen 7%. I imagine the increase in Firefox accounts for some defection from Microsoft altogether (however I personally prefer Safari).</p>
<p>While these are both good trends, I wouldn&#8217;t mind seeing IE6 disappear altogether. I got used to the CSS tweaks but the PNG alpha channel hacks are flaky at best.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thisside.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thisside.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thisside.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thisside.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thisside.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thisside.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thisside.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thisside.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thisside.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thisside.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thisside.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thisside.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thisside.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thisside.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thisside.wordpress.com&amp;blog=658259&amp;post=52&amp;subd=thisside&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thisside.wordpress.com/2008/12/09/ie6-usage-dropping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d9f6093d448f68f1789fec75dc00020?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tjcoppet</media:title>
		</media:content>
	</item>
		<item>
		<title>The Uprising</title>
		<link>http://thisside.wordpress.com/2008/12/09/the-uprising/</link>
		<comments>http://thisside.wordpress.com/2008/12/09/the-uprising/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 22:39:00 +0000</pubDate>
		<dc:creator>tjcoppet</dc:creator>
				<category><![CDATA[digital imaging]]></category>

		<guid isPermaLink="false">http://thisside.wordpress.com/?p=47</guid>
		<description><![CDATA[Those of us in Boston like our little rebellions. There appear to be a number of people arguing over whether or not the intro price to the Nikon D3X is reasonable and debate over who needs how many pixels. The poor reaction comes from surprise. I think many of us assumed that the D3X would [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thisside.wordpress.com&amp;blog=658259&amp;post=47&amp;subd=thisside&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Those of us in Boston like our little rebellions. There appear to be a number of people arguing over whether or not the intro price to the Nikon D3X is reasonable and debate over who needs how many pixels. </p>
<p>The poor reaction comes from surprise. I think many of us assumed that the D3X would follow the same path as the D2X. It didn&#8217;t. Those who tried to time the product at $5K lost, at least for the time being.</p>
<p>I&#8217;m still a D2X owner and feeling more like a mainframe person every day. I have 3 pain points with this camera. </p>
<ol>
<li>ISO range: D3 does well here but the D3X will likely not be <em>that</em> much better than the D2X (we shall see).</li>
<li>dust bunnies: I was really really looking forward to a button to push.
<li>megapixels: don&#8217;t tell me I don&#8217;t need any</li>
</ol>
<p>The D3 solves one of my 3 pains, and the D3X also solves one. Though if I had to choose, I&#8217;d choose ISO and dynamic range over MP. And for $8K? It better knock all three out of the park and make me dinner.</p>
<p>Nikon sat on this since they leaked out the sensor type in a firmware release last April.  Anticipation built. People are disappointed and they want Nikon to know it &#8212; so stop giving them grief.</p>
<p>And remember what happened when the tax on tea didn&#8217;t drop enough?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thisside.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thisside.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thisside.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thisside.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thisside.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thisside.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thisside.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thisside.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thisside.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thisside.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thisside.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thisside.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thisside.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thisside.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thisside.wordpress.com&amp;blog=658259&amp;post=47&amp;subd=thisside&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thisside.wordpress.com/2008/12/09/the-uprising/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d9f6093d448f68f1789fec75dc00020?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tjcoppet</media:title>
		</media:content>
	</item>
		<item>
		<title>Nikon D3X</title>
		<link>http://thisside.wordpress.com/2008/12/09/nikon-d3x/</link>
		<comments>http://thisside.wordpress.com/2008/12/09/nikon-d3x/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 21:38:25 +0000</pubDate>
		<dc:creator>tjcoppet</dc:creator>
				<category><![CDATA[digital imaging]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://thisside.wordpress.com/?p=45</guid>
		<description><![CDATA[Nikon announced their new flagship camera. I feel like this guy.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thisside.wordpress.com&amp;blog=658259&amp;post=45&amp;subd=thisside&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Nikon announced their new flagship camera.  I feel like <a href="http://www.youtube.com/watch?v=tnwf2RShNV0" target="_blank">this guy</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thisside.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thisside.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thisside.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thisside.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thisside.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thisside.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thisside.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thisside.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thisside.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thisside.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thisside.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thisside.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thisside.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thisside.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thisside.wordpress.com&amp;blog=658259&amp;post=45&amp;subd=thisside&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thisside.wordpress.com/2008/12/09/nikon-d3x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d9f6093d448f68f1789fec75dc00020?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tjcoppet</media:title>
		</media:content>
	</item>
		<item>
		<title>Certified Mail from the IRS</title>
		<link>http://thisside.wordpress.com/2008/12/05/certified-mail-from-the-irs/</link>
		<comments>http://thisside.wordpress.com/2008/12/05/certified-mail-from-the-irs/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 23:41:27 +0000</pubDate>
		<dc:creator>tjcoppet</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://thisside.wordpress.com/?p=55</guid>
		<description><![CDATA[I got to my mailbox at 5:32 to see the letter from the post office. The post office closed at 5:30. I made it to about 5:40 and just had to know what this was about. I couldn&#8217;t sweat this out all weekend waiting for the post office to open. This has been the week [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thisside.wordpress.com&amp;blog=658259&amp;post=55&amp;subd=thisside&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I got to my mailbox at 5:32 to see the letter from the post office. The post office closed at 5:30. </p>
<p>I made it to about 5:40 and just <strong>had to know</strong> what this was about. I couldn&#8217;t sweat this out all weekend waiting for the post office to open. This has been the week of bad luck, and please, not one more thing.</p>
<p>I searched on the web for people who have received certified mail from the IRS and what I found wasn&#8217;t good. Audit. Owe. Court. And owe some more. Weekend is off to a great start.</p>
<p>I went to the IRS web site and found their <a href="http://www.irs.gov/help/article/0,,id=96730,00.html" target="_blank">telephone assistance number</a>. </p>
<p><em>Hello, I received a notice from the post office for certified mail, and I&#8217;m hoping you can tell me what it might be about.</em></p>
<p><em>What did the mail say?</em></p>
<p><em>The post office is closed and I won&#8217;t be able to find out until Monday. Can you tell me now so I don&#8217;t have to stew on this all weekend?</em></p>
<p>[type type type]<em>Your account balance is zero.</em></p>
<p><em>That&#8217;s good, isn&#8217;t it?</em></p>
<p><em>Yes. But we just closed the 2005 returns, maybe it has something to do with that. </em>[type type type] <em>Your 2005 account balance is zero.</em></p>
<p><em>So, that is also good?</em></p>
<p><em>Let me check something else.</em></p>
<p><em>Oh, it says here we sent you a notice this year that you still owed $216 from 2005 return, but we took that out of your 2007 Massachusetts refund.</em></p>
<p><em>Yes, I remember that, and I received that notice already.</em></p>
<p><em>Ok, then the certified mail is the notice asking if you want to contest it.</em></p>
<p>[phew]<em>No not me. I&#8217;m good. </em></p>
<p><em>Have a nice weekend.</em></p>
<p>And I did! It isn&#8217;t often one gets to say something nice about the IRS, but how cool is it that they not only had off-hour service but were able to dig all the records up in real time and settle my worst fears over the phone. I didn&#8217;t think they were that sophisticated. This shows that not all certified mail from the IRS is bad news.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thisside.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thisside.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thisside.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thisside.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thisside.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thisside.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thisside.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thisside.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thisside.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thisside.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thisside.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thisside.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thisside.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thisside.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thisside.wordpress.com&amp;blog=658259&amp;post=55&amp;subd=thisside&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thisside.wordpress.com/2008/12/05/certified-mail-from-the-irs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d9f6093d448f68f1789fec75dc00020?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tjcoppet</media:title>
		</media:content>
	</item>
		<item>
		<title>Macbook Pro Battery Problem</title>
		<link>http://thisside.wordpress.com/2008/05/31/macbook-pro-battery-problem/</link>
		<comments>http://thisside.wordpress.com/2008/05/31/macbook-pro-battery-problem/#comments</comments>
		<pubDate>Sat, 31 May 2008 22:19:59 +0000</pubDate>
		<dc:creator>tjcoppet</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[battery]]></category>
		<category><![CDATA[macbook]]></category>

		<guid isPermaLink="false">http://thisside.wordpress.com/?p=43</guid>
		<description><![CDATA[My laptop has been on my desk charging since yesterday. I was about to head out to one of my branch offices and noticed the battery charge was at 7%! Thank goodness I opted for AppleCare, but the last laptop I brought in (logic board fried) I got the hairy eyeball from a genius because [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thisside.wordpress.com&amp;blog=658259&amp;post=43&amp;subd=thisside&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My laptop has been on my desk charging since yesterday. I was about to head out to one of my <a href="http://www.bostonbeanstock.com/" target="_blank">branch offices</a> and noticed the battery charge was at 7%!</p>
<p>Thank goodness I opted for AppleCare, but the last laptop I brought in (logic board fried) I got the hairy eyeball from a <em>genius</em> because it was also dented. <q>When did you do this?</q> They always want to blame the obvious. And wouldn&#8217;t you know, last week my most recent laptop fell off a chair at one of my <a href="http://www.cafevanilleboston.com/" target="_blank">conference facilities</a> and now the front is dented and doesn&#8217;t close very well. </p>
<p>I was unhappy about this involuntary cosmetic conversion, but the mouse pad works so much better now! It really does. It has a much firmer click to it and better spring. Apple should consider front-end-dented macbook pros for their next release. Anyway, to unnecessary exposure to my clumsiness, I searched, and macbook battery problems returns 1,020,000 results in google. I wasn&#8217;t alone.</p>
<p>Since the charging light was amber, I got to reset the power management <a onclick="return mugicPopWin(this,event);" oncontextmenu="mugicRightClick(this);" href="http://support.apple.com/kb/HT1411" target="_blank">thingy</a> by powering down, removing the charger and battery, then holding the power button for 5 seconds. Now I&#8217;m charging again!</p>
<p>If your light is green and it doesn&#8217;t charge, off to the Apple store you go.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/thisside.wordpress.com/43/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/thisside.wordpress.com/43/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thisside.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thisside.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thisside.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thisside.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thisside.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thisside.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thisside.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thisside.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thisside.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thisside.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thisside.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thisside.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thisside.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thisside.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thisside.wordpress.com&amp;blog=658259&amp;post=43&amp;subd=thisside&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thisside.wordpress.com/2008/05/31/macbook-pro-battery-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d9f6093d448f68f1789fec75dc00020?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tjcoppet</media:title>
		</media:content>
	</item>
		<item>
		<title>Lost Your CS3 Install Disc?</title>
		<link>http://thisside.wordpress.com/2008/05/10/lost-your-cs3-install-disc/</link>
		<comments>http://thisside.wordpress.com/2008/05/10/lost-your-cs3-install-disc/#comments</comments>
		<pubDate>Sat, 10 May 2008 22:35:00 +0000</pubDate>
		<dc:creator>tjcoppet</dc:creator>
				<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://thisside.wordpress.com/?p=42</guid>
		<description><![CDATA[I&#8217;m in the middle of upgrading machines and have no clue what happened to my install disc. Since I had a valid license key that I paid for, how hard could copying over photoshop from one machine to another be? There are a number of directories that need to be copied over &#8220;as is&#8221;, complete [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thisside.wordpress.com&amp;blog=658259&amp;post=42&amp;subd=thisside&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m in the middle of upgrading machines and have no clue what happened to my install disc.  Since I had a valid license key that I paid for, how hard could copying over photoshop from one machine to another be?</p>
<p>There are a number of directories that need to be copied over &#8220;as is&#8221;, complete with permissions, file owners and setuid bits in place. Miss something, and you will encounter &#8220;missing file in application support&#8221; errors, and even problems with the licensing. </p>
<p>This <a href="http://imaginationunbound.blogspot.com/2007/12/adobe-photoshop-cs3-on-mac-os-x-case.html" target="_blank">reference</a> was very helpful. The blog describes case sensitivity problems that I didn&#8217;t have. I just didn&#8217;t know all the magic directories. Here&#8217;s a cheat sheet.</p>
<pre>
/Library/Application Support/Adobe
/Library/Application Support/Adobe PDF
/Library/Application Support/Adobe Systems
/Library/Application Support/FLEXnet Publisher
/Library/Preferences/FLEXnet Publisher
/Library/ScriptingAdditions/Adobe Unit Types
/Library/ScriptingAdditions/Adobe Unit Types.osax
</pre>
<p></p>
<p>And of course, your CS3 application folder. The application itself I dragged-and-dropped via an external disk. All the stuff in /Library I used a tar archive as root to make sure the setuid bits and owners were correct.</p>
<p>Somewhere in there, it copied my license so when I started it up, I simply had to re-activate the program with Adobe. Now I&#8217;m off and running. If you decide to use a case-senstive file system, check out <a href="http://imaginationunbound.blogspot.com/2007/12/adobe-photoshop-cs3-on-mac-os-x-case.html" target="_blank">Imagination Unbound</a>.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/thisside.wordpress.com/42/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/thisside.wordpress.com/42/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thisside.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thisside.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thisside.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thisside.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thisside.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thisside.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thisside.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thisside.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thisside.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thisside.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thisside.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thisside.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thisside.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thisside.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thisside.wordpress.com&amp;blog=658259&amp;post=42&amp;subd=thisside&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thisside.wordpress.com/2008/05/10/lost-your-cs3-install-disc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2d9f6093d448f68f1789fec75dc00020?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tjcoppet</media:title>
		</media:content>
	</item>
	</channel>
</rss>
