<?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>SkaroffBlog &#187; Tech</title>
	<atom:link href="http://skaroff.com/blog/index.php/tag/tech/feed/" rel="self" type="application/rss+xml" />
	<link>http://skaroff.com/blog</link>
	<description>coming at you intermittently from the City of Brotherly Love</description>
	<lastBuildDate>Mon, 11 Apr 2011 15:43:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<item>
		<title>Setting Rhapsody Now Playing to the Adium Status</title>
		<link>http://skaroff.com/blog/index.php/2007/03/28/setting-rhapsody-now-playing-to-the-adium-status/</link>
		<comments>http://skaroff.com/blog/index.php/2007/03/28/setting-rhapsody-now-playing-to-the-adium-status/#comments</comments>
		<pubDate>Wed, 28 Mar 2007 19:21:46 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://skaroff.com/blog/?p=351</guid>
		<description><![CDATA[I&#8217;m not really much of a hacker when it comes down to it but I&#8217;ve been fooling around with a lot more tools and possibilities since I got this 15&#8243; MacBook Pro at work. I run Parallels Desktop and Windows XP most of the day so I have access to Visual Studio development tools, SQL [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not really much of a hacker when it comes down to it but I&#8217;ve been fooling around with a lot more tools and possibilities since I got this 15&#8243; MacBook Pro at work.  I run Parallels Desktop and Windows XP most of the day so I have access to Visual Studio development tools, SQL Server, and of course, the Rhapsody client.</p>
<p>On the Mac side I use Adium for chat and I love the Now Playing status script that shows the current iTunes track in your status.  But since I don&#8217;t use iTunes most of the time I was out of luck.  Well today I managed to whip up an AppleScript that puts the currently playing Rhapsody track (sort of) in the Adium status.</p>
<p>If you want the whole script, it&#8217;s after the jump.</p>
<p><span id="more-351"></span></p>
<p>Bear in mind this is the first AppleScript I&#8217;ve ever written so I&#8217;m sure it&#8217;s got issues (for example, deleting the temp file at the end doesn&#8217;t work).  It&#8217;s also reading the now playing data from the user track history rss feed on rhapsody.com which never seems in sync.  As for running the script regularly, I&#8217;m using the Scheduler in Entourage to make it run every five minutes.  It would probably be better to use a cron job.</p>
<p>Note: WordPress is escaping all the characters so you can&#8217;t just copy and paste.  Here&#8217;s <a href="http://skaroff.com/blog/misc/adium_rhapsody_status.scpt.txt" title="script">a link to the script</a>.</p>
<pre>
<code>

tell application "System Events"
	if (count (every process whose displayed name is "RealNetworks Rhapsody.app")) > 0 and (count (every process whose displayed name is "Adium.app")) > 0 then
		my SetMessage()
	else
		-- my tellAdiumStatus("")
	end if
end tell

on SetMessage()
	set locDir to "/Users/xxxxx/"  -- replace with your temp directory
	set locFile to "rhapsodyTracks.xml"
	set xmlUrl to ("http://feeds.rhapsody.com/user-track-history.rss?rhapUserId=xxxxxxxx&#038;userName=I") -- replace with URL to your track history feed

	-- get RSS
	do shell script "curl \"" &#038; xmlUrl &#038; "\" -o \"" &#038; locDir &#038; locFile &#038; "\" "

	set xmlFile to (locDir &#038; locFile)

	-- get xml data from xml file
	set xmlData to getData(xmlFile)

	tell application "System Events"
		set root to XML element 1 of xmlData
		set channel to XML element 1 of root
		set myitem to XML element "item" of channel

		set artist to value of XML element "rhap:artist" of myitem
		set album to value of XML element "rhap:album" of myitem
		set albumid to value of XML element "rhap:album-rcid" of myitem
		set currtrack to value of XML element "rhap:track" of myitem
		set link to value of XML element "link" of myitem

		-- get album link
		set newlink to "http://www.rhapsody.com/album?albumId=" &#038; albumid

		set statusMessage to "currently hearing: " &#038; artist &#038; " - " &#038; currtrack &#038; " (<a href=\"" &#038; newlink &#038; "\">listen</a>)"

		my tellAdiumStatus(statusMessage)

	end tell

	tell application "Finder"
		--try
		set fileName to locDir &#038; locFile
		if exists file fileName then
			display dialog "exists"
			delete file fileName
		end if
		-- end try
	end tell
	return statusMessage
end SetMessage

on tellAdiumStatus(statusMessage)
	-- display dialog statusMessage
	tell application "Adium"
		set my status message to statusMessage
	end tell
end tellAdiumStatus

on getData(theFile)
	set theXmlfile to (POSIX file theFile) as Unicode text
	tell application "System Events" to return (contents of XML file theXmlfile)
end getData

</code>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://skaroff.com/blog/index.php/2007/03/28/setting-rhapsody-now-playing-to-the-adium-status/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another Way Forward</title>
		<link>http://skaroff.com/blog/index.php/2007/03/26/another-way-forward/</link>
		<comments>http://skaroff.com/blog/index.php/2007/03/26/another-way-forward/#comments</comments>
		<pubDate>Mon, 26 Mar 2007 16:50:16 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://skaroff.com/blog/index.php/2007/03/26/another-way-forward/</guid>
		<description><![CDATA[When I was 12 I&#8217;d already determined that I was a big nerd. And when a big nerd often flies cross country to visit family in California, he looks for the geekiest magazine he can find to pass the time. In 1993, that was quite clearly Wired Magazine. One only needed to scan across the [...]]]></description>
			<content:encoded><![CDATA[<p><a name="When:8:04:19AM"></a>When I was 12 I&#8217;d already determined that I was a big nerd.  And when a big nerd often flies cross country to visit family in California, he looks for the geekiest magazine he can find to pass the time.  In 1993, that was quite clearly Wired Magazine.  One only needed to scan across the covers of the row of computer magazines (always the bottom row it seemed) to see that Wired was in a different world from publications like PC Mag.&nbsp;<a href="/blog/index.php/2007/03/26/another-way-forward/#When:8:04:19AM"><img src="http://www.scripting.com/images/2001/09/20/sharpPermaLink3.gif" width="6" height="9" border="0" alt="Permanent link to this item in the archive."/></a></p>
<p><a name="When:8:05:45AM"></a>From the start I was completely captivated, not only by the writing and ideas, but by the radical design and layout.  If you remember the earlier days of Wired, it could be nearly unreadable at times.  There were no columns or simple pie charts.  Instead it was a seeming hodge podge of color and type set at oblique angles. Just picking apart the levels of detail in a single print page could be quite a challenge.  But it was interesting and wild and completely different.&nbsp;<a href="/blog/index.php/2007/03/26/another-way-forward/#When:8:05:45AM"><img src="http://www.scripting.com/images/2001/09/20/sharpPermaLink3.gif" width="6" height="9" border="0" alt="Permanent link to this item in the archive."/></a></p>
<p><a name="When:8:04:54AM"></a>A few months ago I started subscribing and regularly reading Dave Winer&#8217;s <a href="http://www.scripting.com">Scripting News</a>.  Yesterday while reading the transcript of his interview with <a href="http://en.wikipedia.org/wiki/Robert_Cringely">Robert X. Cringely</a> for <a href="http://www.pbs.org/cringely/nerdtv/transcripts/006.html">NerdTV</a> I realized Dave was one of the original contributing editors to Wired.  And so it made sense that I enjoyed his current writing so much.  I think there is something about the way his mind works that matches up well with my own thought processes.&nbsp;<a href="/blog/index.php/2007/03/26/another-way-forward/#When:8:04:54AM"><img src="http://www.scripting.com/images/2001/09/20/sharpPermaLink3.gif" width="6" height="9" border="0" alt="Permanent link to this item in the archive."/></a></p>
<p><a name="When:8:17:02AM"></a>With some time to kill yesterday, I invested a few hours into learning the <a href="http://support.opml.org/">OPML Editor</a>, Dave&#8217;s tool for creating outlines (and quite a bit more).  It&#8217;s an interesting piece of software because it&#8217;s not immediately intuitive.  But after a bit of exploration, it starts to just click. And with a built in blogging tool, it seemed natural to give it a try.  So here&#8217;s my first (real) entry.  This was composed in the Editor and then manually mirrored to WordPress on <a href="http://skaroff.com">skaroff.com</a>.  The original exists at my OPML blog at <a href="http://blogs.opml.org/jskaroff/"></a><a href="http://blogs.opml.org/jskaroff/">http://blogs.opml.org/jskaroff/</a>.&nbsp;<a href="/blog/index.php/2007/03/26/another-way-forward/#When:8:17:02AM"><img src="http://www.scripting.com/images/2001/09/20/sharpPermaLink3.gif" width="6" height="9" border="0" alt="Permanent link to this item in the archive."/></a></p>
<p><a name="myThoughtsOnTheOpmlEditorSoFar"></a>
<p><b>My thoughts on the OPML Editor so far:</b>&nbsp;<a href="/blog/index.php/2007/03/26/another-way-forward/#myThoughtsOnTheOpmlEditorSoFar"><img src="http://www.scripting.com/images/leftArrow.gif" width="11" height="9" border="0" alt="Permanent link to this item in the archive."/></a></p>
<p>While I certainly recognize the power of outlining (I&#8217;m already a big fan of outlining in the OPML editor&#8217;s scripting environment &#8211; hierarchical outlines make so much sense than curly brackets for code blocks) I&#8217;m not sure it makes quite as much sense for blogging.  Not to say it doesn&#8217;t make sense either.</p>
<p>Now whether that is because the OPML editor itself has such a poor UI, or whether I&#8217;m simply not accustomed to it yet, or whether it&#8217;s just not how my brain works, I&#8217;m not sure.</p>
<p>But I&#8217;m willing to give it a try.  I can already see the way that posts and paragraphs become a time stamped stream makes a ton of sense.</p>
<p>I think there are ways to integrate the editor into WordPress.  That&#8217;s a project for another day.</p>
<p><a name="When:8:48:50AM"></a>As an aside, I desperately need to upgrade my WP install.&nbsp;<a href="/blog/index.php/2007/03/26/another-way-forward/#When:8:48:50AM"><img src="http://www.scripting.com/images/2001/09/20/sharpPermaLink3.gif" width="6" height="9" border="0" alt="Permanent link to this item in the archive."/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://skaroff.com/blog/index.php/2007/03/26/another-way-forward/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Like a Shot of B-Vitamin</title>
		<link>http://skaroff.com/blog/index.php/2006/01/11/like-a-shot-of-b-vitamin/</link>
		<comments>http://skaroff.com/blog/index.php/2006/01/11/like-a-shot-of-b-vitamin/#comments</comments>
		<pubDate>Wed, 11 Jan 2006 17:51:41 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://skaroff.com/blog/?p=289</guid>
		<description><![CDATA[We&#8217;re back baby!! After an extended holiday hiatus, we&#8217;ve decided that teeming masses of SkaroffBlog readers must be satiated with their (semi)daily dispatch of piss and vinegar. Yes, the last month has probably been hard for you dear reader, but despair not, as we have resumed our regular program, already in progress&#8230; So quickly, some [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re back baby!! After an extended holiday hiatus, we&#8217;ve decided that teeming masses of SkaroffBlog readers must be satiated with their (semi)daily dispatch of piss and vinegar.  Yes, the last month has probably been hard for you dear reader, but despair not, as we have resumed our regular program, already in progress&#8230;</p>
<p>So quickly, some things that are exciting.</p>
<ul>
<li>The <a href="http://www.apple.com/macbookpro/" title="">new Macs are here</a>, the new Macs are here!!  Though quite poorly named, every computer nerd out there is salivating over the new Intel-powered MacBook Pro.  Apple claims that these machines are 4 times faster than the previous generation, and combined with the news that <a href="http://tuaw.com/2006/01/11/run-windows-on-the-new-macs/" title="Run Windows on the new Macs">these machines should run Windows</a>, it looks like Apple has really created a killer machine.  If only I actually needed one to justify the expense&#8230;</li>
<li>Google is <a href="http://www.engadget.com/2006/01/06/live-coverage-of-the-google-keynote/" title="Live coverage of Google Keynote with Robin Williams">funny</a> and <a href="http://www.businessweek.com/ap/financialnews/D8ETCN9G0.htm?campaign_id=apn_tech_down&#038;chan=tc" title="Google stock price target rises to $600">worth a fortune</a>.</li>
<li>And surprise, Microsoft <a href="http://www.computerworld.com/securitytopics/security/holes/story/0,10801,107419,00.html" title="Risk of Windows WMF attacks jumps 'significantly,' security firm warns ">Windows is still dangerous</a>!
</li>
</ul>
<p>I&#8217;ll make sure to hit up all the political news, including Bush&#8217;s illegal wiretapping, the Alito confirmation hearings, and Jack &#8220;Me&#8221; Abramoff&#8217;s plea bargain later.  Check out FireDogLake&#8217;s <a href="http://firedoglake.blogspot.com/" title="firedoglake">live blogging of the Alito hearing</a> for lots of detail.</p>
]]></content:encoded>
			<wfw:commentRss>http://skaroff.com/blog/index.php/2006/01/11/like-a-shot-of-b-vitamin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Vindication for Wikipedia</title>
		<link>http://skaroff.com/blog/index.php/2005/12/15/vindication-for-wikipedia/</link>
		<comments>http://skaroff.com/blog/index.php/2005/12/15/vindication-for-wikipedia/#comments</comments>
		<pubDate>Thu, 15 Dec 2005 18:45:34 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Web_2.0]]></category>

		<guid isPermaLink="false">http://skaroff.com/blog/?p=285</guid>
		<description><![CDATA[The world&#8217;s largest encyclopedia, and one of my favorite online resources, Wikipedia, has been in the news a lot recently. The first issue of note was the recent edit war over the Swiftboating entry with bloggers on both the left and right side of the aisle unleashing their readers on the page. Next came an [...]]]></description>
			<content:encoded><![CDATA[<p>The world&#8217;s largest encyclopedia, and one of my favorite online resources, Wikipedia, has been in the news a lot recently.  The first issue of note was the recent <a href="http://en.wikipedia.org/wiki/Edit_war" title="Wikipedia:Edit war">edit war</a> over the <a href="http://en.wikipedia.org/wiki/Swiftboating" title="Swiftboating">Swiftboating</a> entry with <a href="http://blog.thedemocraticdaily.com/?p=1275" title="Rewriting History">bloggers on both the left and right</a> side of the aisle unleashing their readers on the page.  Next came an apparent attempt by Adam Curry, the former MTV VJ and one of the internet&#8217;s first podcasters, to alter the <a href="http://en.wikipedia.org/wiki/Podcasting" title="Podcasting">Podcasting</a> article to bolster his credentials as the father of podcasting by removing some mentions of previous work in the field by others.  And then came the controversy over an article that falsely implicated author John Seigenthaler Sr. in the assassinations of John F. Kennedy and his former boss, Robert Kennedy.   Seigenthaler fired back at the anonymous editor and Wikipedia as an organization in a <a href="http://www.usatoday.com/news/opinion/editorials/2005-11-29-wikipedia-edit_x.htm#" title="A false Wikipedia 'biography'">USA Today Op-Ed</a>.</p>
<p>These issues prompted Wikipedia founder Jimmy Wales to change the rules that govern editing on the open source encyclopedia.  While anyone can still alter an article, now only registered users are allowed to create new entries.  All these problems, combined with <a href="http://news.zdnet.com/2100-9588_22-5996542.html" title="Tracking down the Wikipedia prankster">criticism</a> from many writers and established encyclopedia institutions have not dampened enthusiasm for the service, and a new study, along with one done by IBM that showed the median time for page vandalism to be fixed <a href="http://joi.ito.com/archives/2004/09/07/wikipedia_heals_in_5_minutes.html" title="Wikipedia heals in 5 minutes">was only 5 minutes</a>, further strengthen the legitimacy of the open source encyclopedia model.</p>
<p>Researchers at the British journal Nature examined scientific entries on Wikipedia and the Encyclopedia Britannica and <a href="http://news.bbc.co.uk/1/hi/technology/4530930.stm" title="BBC NEWS | Technology | Wikipedia survives research test">compared them for accuracy</a>:</p>
<blockquote><p>The reviewers were asked to check for errors, but were not told about the source of the information.</p>
<p>&#8220;Only eight serious errors, such as misinterpretations of important concepts, were detected in the pairs of articles reviewed, four from each encyclopedia,&#8221; reported Nature.</p>
<p>&#8220;But reviewers also found many factual errors, omissions or misleading statements: 162 and 123 in Wikipedia and Britannica, respectively.&#8221; </p></blockquote>
<p>Wikipedia is not perfect, as this study shows, but neither is any other source of information.  The simple fact is that the open source model works, and seems to work remarkably well.  Content will be created, shared, commented on, and remixed and altered by anyone and everyone.  The sooner the elites from the science, journalism, entertainment and music industries wake up and realize that they must relinquish their oppresive grip on content, the better.</p>
<p>Want to see what thousands of random people can do?  Check out <a href="http://www.swarmsketch.com/" title="SwarmSketch">SwarmSketch</a>, a &#8220;Collective sketching of the collective consciousness.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://skaroff.com/blog/index.php/2005/12/15/vindication-for-wikipedia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rhapsody takes another step.</title>
		<link>http://skaroff.com/blog/index.php/2005/12/07/rhapsody-takes-another-step/</link>
		<comments>http://skaroff.com/blog/index.php/2005/12/07/rhapsody-takes-another-step/#comments</comments>
		<pubDate>Wed, 07 Dec 2005 17:05:27 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[Web_2.0]]></category>

		<guid isPermaLink="false">http://skaroff.com/blog/?p=278</guid>
		<description><![CDATA[Reading Memeorandum this morning, I&#8217;m surprised to see no mention of the newly unveiled (and still quite beta) Rhapsody.com service. I&#8217;ve raved about Real&#8217;s Rhapsody service for a while now, so it&#8217;s great to see them taking at least tentative steps to broaden their platform and widen their appeal with this new web based approach: [...]]]></description>
			<content:encoded><![CDATA[<p>Reading <a href="http://tech.memeorandum.com/" title="tech.memeorandum">Memeorandum</a> this morning, I&#8217;m surprised to see no mention of the newly unveiled (and still quite beta) <a href="http://www.rhapsody.com" title="Rhapsody.com">Rhapsody.com</a> service.  I&#8217;ve raved about Real&#8217;s Rhapsody service <a href="http://skaroff.com/blog/index.php/2005/04/21/extraordinary-machine-and-songs-for-silverman/" title="Extraordinary Machine and Songs For Silverman">for a while now</a>, so it&#8217;s great to see them taking at least tentative steps to broaden their platform and widen their appeal with this <a href="http://www.theregister.co.uk/2005/12/06/real_rhapsody_mac_linux/" title="Rhapsody 'preview' for Mac, Linux users">new web based approach</a>:</p>
<blockquote><p>RealNetworks is to extend its currently Windows-only Rhapsody music subscription service to Mac and Linux users next week, the company said last night. However, even then, they will not gain access to the full Rhapsody package.</p>
<p>On Monday, Real&#8217;s Rhapsody.com website will go live. It&#8217;s currently in beta-testing mode, but once fully operational will allow Mac and Linux users to log in and stream any number of songs &#8211; provided they continue coughing up the monthly rental fee, of course. The site also incorporates links to Internet radio stations.</p></blockquote>
<p>The Register article does a good job covering the caveats of the service &#8211; no purchasing on Mac or Linux and being limited to US-located IP addresses, but I think they&#8217;re a bit too negative on the service in general.  I find $9.95 a month a perfectly reasonable price to pay for the unlimited ability to stream a very large music catalog, and now from anywhere I can find Firefox.  </p>
<p>The hidden aspect in this is the incredible potential that Rhapsody.com has as a Web 2.0 app.  Now admittedly, Real has to work with the record labels, so much of its innovation and feature set is likely to be either crippled or botched, but I&#8217;m so excited for ideas like RSS feeds of music I&#8217;m listening to, RSS playlists (hopefully taggable), embeddable players, and ideally someday a web service API that will allow anyone to write software that interfaces directly with Rhapsody.  As they give away 25 listens a month to each subscriber for free, I could very well see a situation where I could post a review of an album and you could click a miniplayer right in the post that would stream the album to you.  Or how about a Friday Random Ten with play icons next to each track!</p>
<p>Of course, as of last night, the Windows desktop client wasn&#8217;t really working and I couldn&#8217;t get web streaming working in either Safari or Firefox on OS X (another Web 2.0 &#8220;feature&#8221; &#8211; the perpetual beta), but I&#8217;m sure that they&#8217;ll work the kinks out soon.  Now they just need to get The Beatles and Radiohead on board.  Oh, and higher quality streams.  And how about supporting WordPress from the blogging interface? And a Palm/Windows Mobile client&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://skaroff.com/blog/index.php/2005/12/07/rhapsody-takes-another-step/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Wireless Philadelphia: Some Progress, Some Delays</title>
		<link>http://skaroff.com/blog/index.php/2005/12/02/wireless-philadelphia-some-progress-some-delays/</link>
		<comments>http://skaroff.com/blog/index.php/2005/12/02/wireless-philadelphia-some-progress-some-delays/#comments</comments>
		<pubDate>Fri, 02 Dec 2005 18:32:32 +0000</pubDate>
		<dc:creator>PapaSkaroff</dc:creator>
				<category><![CDATA[Philly]]></category>
		<category><![CDATA[Penn]]></category>
		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://skaroff.com/blog/?p=274</guid>
		<description><![CDATA[The plan to turn Philadelphia into what Mayor Street calls &#8220;the first completely wireless city in the country&#8221; is moving ahead, but with possible delays. Back on Oct. 3, Dianah Neff, the city&#8217;s Chief Information Officer, announced an agreement with Earthlink under which the ISP would finance and build a city-wide Wi-Fi broadband network for [...]]]></description>
			<content:encoded><![CDATA[<p>The plan to turn Philadelphia into what Mayor Street calls <a href="http://etopiamedia.net/emtnn/pdfs/WPELPR1.pdf" title="WIRELESS PHILADELPHIA ENTERS FINAL CONTRACT DISCUSSIONS">&#8220;the first completely wireless city in the country&#8221;</a> is moving ahead, but with possible delays.</p>
<p>Back on Oct. 3, <a href="http://www.phila.gov/mois/cio/" title="Dianah Neff, Philadelphia's Chief Information Officer">Dianah Neff, the city&#8217;s Chief Information Officer,</a> announced an agreement with <a href="http://www.earthlink.net/" title="Earthlink">Earthlink</a> under which the ISP would finance and build a city-wide Wi-Fi broadband network for <a href="http://www.phila.gov/wireless/" title="Wireless Philadelphia">Wireless Philadelphia</a> (WP), a non-profit set up specifically for this project.  Neff, who also heads the WP Executive Committee, said that final contract negotiations would take 60 days, to be followed by City Council&#8217;s approval process and a January construction kickoff.  The project would be complete by the end of 2006.</p>
<p>That 60-day period has just ended, but negotiations are still in progress, according to <a href="http://www.dailypennsylvanian.com/vnews/display.v/ART/2005/12/02/439006abb0185" title="City Council holiday delays Phila. wireless">today&#8217;s Daily Pennsylvanian.</a>  Neff now expects final agreement with Earthlink later this month after Council has begun its long holiday break.  The optimistic timetable now calls for Council to to start a one-month-minimum approval procedure Jan. 24, and finalize the contract in time for a rescheduled March construction launch.  The completion date is still slated for the end of 2006, Neff says.</p>
<p>Construction consists of installing several thousand <a href="http://www.tropos.com/pdf/5210_datasheet.pdf" title="Tropos 5210 Outdoor MetroMesh Router (pdf)">shoebox-size antennas</a> mostly on city-owned telephone poles.  Technically, new areas can go hot as soon as their antennas are installed, meaning that a gradual rollout is possible as construction progresses.</p>
<p>Neff often refers to the WP plan as Mayor Street&#8217;s project.  She credits her boss, a long-time Blackberry user, as the visionary behind WP.</p>
<p>Earthlink, until now primarily a dial-up ISP, is moving into a new business area.  They will finance, build, and manage WP as well as sell wholesale services to the various ISPs to which end-users ultimately subscribe.  To &#8220;bridge the digital divide,&#8221; &#8211;a phrase often used by WP&#8211; discounted access rates of about $10 per month will be offered to qualifying residents.  In its work with comunity groups and schools, WP plans to use some revenue to provide low-cost computers and train users.</p>
]]></content:encoded>
			<wfw:commentRss>http://skaroff.com/blog/index.php/2005/12/02/wireless-philadelphia-some-progress-some-delays/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Putting the &#8216;Long&#8217; in Longhorn</title>
		<link>http://skaroff.com/blog/index.php/2005/10/24/putting-the-long-in-longhorn/</link>
		<comments>http://skaroff.com/blog/index.php/2005/10/24/putting-the-long-in-longhorn/#comments</comments>
		<pubDate>Mon, 24 Oct 2005 21:13:37 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://skaroff.com/blog/?p=238</guid>
		<description><![CDATA[Unfortunately I&#8217;ve been unable to find a full article out there besides the one behind the WSJ subscription wall, but apparently the Journal is reporting that about a year ago the Microsoft developers threw out all the code that had been written for MS&#8217;s next generation operating system, Vista, aka Longhorn, and started from scratch. [...]]]></description>
			<content:encoded><![CDATA[<p>Unfortunately I&#8217;ve been unable to find a full article out there besides the one behind the <a href="http://users1.wsj.com/lmda/do/checkLogin?a=t&#038;d=wsj&#038;sd=users1&#038;url=http%3A%2F%2Fonline.wsj.com%2Farticle%2FSB112743680328349448.html%3Fmod%3Dtodays_us_page_one" title="WSJ.com">WSJ subscription wall</a>, but apparently the Journal is reporting that about a year ago the Microsoft developers <a href="http://www.webpronews.com/news/ebusinessnews/wpn-45-20050927WindowsDevelopmentProcessesTornApart.html" title="Windows Development Processes Torn Apart">threw out all the code</a> that had been written for MS&#8217;s next generation operating system, Vista, aka Longhorn, and started from scratch.  If you don&#8217;t know (or care) what an operating system is, suffice it to say that this can only be seen as a major setback for Microsoft.  The way they made money for many years was by coming out with a new operating system (3.1, 95, 98, ME, 2000, XP) and convincing people they needed to upgrade.  But none of us have been doing any upgrading for a while.</p>
<p>You may have noticed that Windows XP has now been around for quite a while, and when it&#8217;s not getting attacked by viruses and adware, it&#8217;s starting to show its age.  Longhorn was supposed to be revolutionary and exciting, but with the severe delays that have taken place &#8212; expect a 2006 release &#8212; everyone else has caught up and passed Bill Gates and Co.  If any of you are using Mac OS X Tiger&#8217;s <a href="http://www.apple.com/macosx/features/spotlight/" title="Spotlight">Spotlight</a> or Google Desktop&#8217;s <a href="http://desktop.google.com/features.html#quickfind" title="Google Desktop Features">Quick Find</a>, you know what I&#8217;m talking about. </p>
<p>No way will Microsoft die.  It&#8217;s a huge company with huge revenues and storied history in the IT industry.  However I think we are reaching a tipping point where the power of Open Source, <a href="http://en.wikipedia.org/wiki/Folksonomy" title="Wikipedia: Folksonomy ">folksonomies</a>, and the <a href="http://en.wikipedia.org/wiki/Web_2.0" title="Wikipedia: Web 2.0">Web 2.0</a> will make MS just another company, instead of THE company, providing technological solutions.  I imagine the folks over at Sun and Google would argue we&#8217;re already there.</p>
<p>Yes, I did just buy another Apple computer.  But that has nothing to do with this post. <img src='http://skaroff.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://skaroff.com/blog/index.php/2005/10/24/putting-the-long-in-longhorn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I [heart] Apple</title>
		<link>http://skaroff.com/blog/index.php/2005/10/20/i-heart-apple/</link>
		<comments>http://skaroff.com/blog/index.php/2005/10/20/i-heart-apple/#comments</comments>
		<pubDate>Thu, 20 Oct 2005 21:27:22 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[TV]]></category>

		<guid isPermaLink="false">http://skaroff.com/blog/?p=233</guid>
		<description><![CDATA[I&#8217;ll admit it. I love my Powerbook. I love my iPod. I&#8217;ve got lots of other computers and electronic devices that I really enjoy using as well, but there is something about Apple&#8217;s products that brings out another level of joy and yes, techno-lust. Yeah, a Dell laptop or a Creative Zen may do the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll admit it.  </p>
<p>I love my Powerbook.  </p>
<p>I love my iPod.</p>
<p>I&#8217;ve got lots of other computers and electronic devices that I really enjoy using as well, but there is something about Apple&#8217;s products that brings out another level of joy and yes, techno-lust.  Yeah, a Dell laptop or a Creative Zen may do the job, but a 12&#8243; Powerbook is just so darn purty.  Whether it&#8217;s the attention to the little details, like the the LED on the laptop charger that lets you instantaneously see the status of the battery, or the organic touches of the pulsing lid latch and that smooth fade-in/fade-out on the iPod, Apple in the past 5 years has upped the bar on consumer design and really left everyone else in the dust.</p>
<p>So while trying to not be too much of a fanboy, last week&#8217;s announcement of the new ever-sleeker iPod &#8211; now with video playback &#8211; and the announcement of new G5s and Powerbooks, totally got me excited.  But try as I might, I couldn&#8217;t really figure out Steve Jobs&#8217; &#8220;angle&#8221; with this new device.  It still seemed a bit half-baked considering the screen is only 2.5&#8243; and the battery life for watching video is only a few hours.  Well Sam Sugar, over at <a href="http://www.sugarbank.com" title="SugarBank">SugarBank</a>, an adult industry blog, <a href="http://www.sugarbank.com/2005/10/video_has_been_.html" title="Video Has Been Assimilated">seems to have hit the nail on the head</a> IMHO:</p>
<blockquote><p>Apple is selling cheap (just about) video capable iPods, for exactly the same price as its old audio only players, to lock-in market domination of video players. People who just want an iPod, now have to buy an iPod with video. Apple donâ€™t have to sell the machines any differently and they donâ€™t need video content to be a huge success &#8211; sales of iPods with video playback are guaranteed.</p>
<p>Then, when their lead is established, Apple will release a &#8216;true&#8217; iPod video with a bigger screen, sell consumers on a â€˜widescreenâ€™ experience and use the extra bulk to hide a bigger hard drive and a lot more battery. That device will appear at the same time as a full-blown downloadable movie service. The studios will have been sold on the idea of â€˜Eleventy Billion video capable iPods in circulationâ€™ and Apple will make a lot of money from people upgrading the iPods they already have, because they donâ€™t want to watch Toy Story on a square, two and a half inch screen. That might also be when all those engineers Appleâ€™s hired to work on putting wireless capability into the iPod demonstrate what theyâ€™ve come up with.</p>
<p>In a nutshell, Appleâ€™s solved the chicken and egg problem for selling video, by working out how to get people who want to listen to music, to buy video players anyway. They&#8217;re going to force old (clueless, greedy) industries to negotiate reasonable terms, because soon the iPod will be the majority platform for mobile video, and Apple will have total control of the hardware and online distribution. In doing so theyâ€™ve created a format which all companies selling video online (like us pornographers) need to prepare for.</p></blockquote>
<p>As an interesting sidenote, Tuesday night on the Colbert Report, Leslie Stahl said that this week&#8217;s 60 Minutes will be fairly devoid of commercials.  There will only be one sponsor and they are making every attempt to keep the commercial time as short as possible.  The old broadcast television advertising model is dying.  Will video podcasting &#8211; vodcasting (naturally built into the new version of iTunes) &#8211; replace it?</p>
]]></content:encoded>
			<wfw:commentRss>http://skaroff.com/blog/index.php/2005/10/20/i-heart-apple/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iLoveIt</title>
		<link>http://skaroff.com/blog/index.php/2005/10/11/iloveit/</link>
		<comments>http://skaroff.com/blog/index.php/2005/10/11/iloveit/#comments</comments>
		<pubDate>Tue, 11 Oct 2005 17:35:30 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://skaroff.com/blog/?p=219</guid>
		<description><![CDATA[I thought I wanted an iPod Nano before, but with the addition of the iWood case, my technolust has reached a new boiling point. I also saw someone using one of these in person for the first time the other day (first though: what the hell is that? I&#8217;ve never seen a cell phone THAT [...]]]></description>
			<content:encoded><![CDATA[<p>I thought I wanted an iPod Nano before, but with the addition of the <a href="http://www.iwoodnano.com/miniot/index.htm" title="miniot.com">iWood case</a>, my technolust has reached a new boiling point.  I also saw someone using one of these in person for the first time the other day (first though: what the hell is that?  I&#8217;ve never seen a cell phone THAT small!) and it just makes my current iPod feel bulky and insignificant now.</p>
<div align="center"><img src="http://skaroff.com/blog/img/iwood.jpg" alt="iWood" /></div>
<p>Purty.  Though still not quite as nice as this working <a href="http://www.bit-tech.net/modding/2005/07/05/wood_ipod_zapwizard/1.html" title="bit-tech.net | Real Wood iPod by ZapWizard">all-wood handmade 4G iPod</a>.</p>
<p>And to make this post at least somewhat informational and not simply crassly consumeristic, I&#8217;ll mention that the <a href="http://www.tuaw.com/2005/10/05/could-this-be-the-ipod-video/" title="Could this be the iPod video?">rumors</a> <a href="http://www.tuaw.com/2005/10/05/think-secret-no-video-ipod-on-oct-12th/" title="Think Secret: No video iPod on Oct. 12th">are</a> <a href="http://www.tuaw.com/2005/09/08/video-ipod-ready-itunes/" title="Video iPod-ready iTunes">flying</a> about Steve Jobs unveiling either a video iPod or some type of Apple branded home video device at October 12th&#8217;s &#8220;One More Thing&#8221; event.  There almost certainly will be a <a href="http://www.appleinsider.com/article.php?id=1307" title="Rumors of special edition Madonna iPod abound">pink Madonna iPod</a> joining the black U2 line.  Hopefully whatever he reveals it won&#8217;t be an <a href="http://www.forbes.com/markets/2005/09/08/motorola-apple-rokr-0908markets03.html" title="Motorola ROKR Cell Phone Seen As Disappointment ">utter disappointment</a> like the ROKR phone.</p>
<p>(via <a href="http://www.gizmodo.com/gadgets/portable-media/iwood-nano-130218.php" title="iWood nano - Gizmodo">Gizmodo</a>)</p>
<hr />
<p>Meant to write this earlier, but I think I actually want <a href="http://www.macworld.com/news/2005/10/10/splashpower/index.php" title="Splashpower wants to cut the charger cord">this piece of vaporware</a> even more.  It&#8217;s a wireless charging pad that will charge your electronic devices (cell phone, mp3 player, camera, etc.) by simply placing them on the pad.  Hotness.  This one I would pay big bucks for it it actually came to market.</p>
<blockquote><p>Splashpower Ltd., established as the result of a business competition at Cambridge University, has developed a wireless charging system that uses electromagnetic induction to accomplish wireless charging of devices.</p>
<p>â€œItâ€™s basically the concept of creating a magnetic field that goes parallel to the surface of the pad rather than out of the pad and this has many benefits,â€? said Lily Cheng, chief executive officer and cofounder of the company, speaking at a news conference. â€œIt enables us to deliver a very uniform output across the pad and enables us to make a receiver coil that is very thin.â€?</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://skaroff.com/blog/index.php/2005/10/11/iloveit/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FEMA: No Mac For You</title>
		<link>http://skaroff.com/blog/index.php/2005/09/06/fema-no-mac-for-you/</link>
		<comments>http://skaroff.com/blog/index.php/2005/09/06/fema-no-mac-for-you/#comments</comments>
		<pubDate>Tue, 06 Sep 2005 18:48:01 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://skaroff.com/blog/?p=187</guid>
		<description><![CDATA[To follow up on my open source posting, Boing Boing reports that FEMA&#8217;s website, and specifically the assistance registration pages, can only be viewed using Internet Explorer 6.0. FEMA&#8217;s website for disaster registration requires: &#8220;In order to use this site, you must have JavaScript Enabled and Internet Explorer version 6. Download it from Microsoft or [...]]]></description>
			<content:encoded><![CDATA[<p>To follow up on my open source posting, <a href="http://www.boingboing.net/2005/09/06/fema_to_mac_linux_us.html" title="Boing Boing: FEMA to Mac, Linux users: drop dead">Boing Boing reports</a> that FEMA&#8217;s website, and specifically the <a href="http://www.fema.gov/register.shtm" title="FEMA: Registration Requirements">assistance registration</a> pages, can only be viewed using Internet Explorer 6.0.  </p>
<blockquote><p>FEMA&#8217;s website for disaster registration requires:</p>
<p>&#8220;In order to use this site, you must have JavaScript Enabled and Internet Explorer version 6. Download it from Microsoft or call 1-800-621-FEMA (3362) to register.&#8221; </p></blockquote>
<p>This means Windows Firefox users, and all Linux and Mac users simply can&#8217;t access the site.  While not exactly an open source issue (this one is specifically a matter of <a href="http://www.w3.org/WAI/" title="http://www.w3.org/WAI/">accessibility</a> and <a href="http://validator.w3.org/" title="The W3C Markup Validation Service">standards compliance</a>) it chillingly demonstrates the danger in allowing our government to only use products from one vendor.  Especially in mission critical applications such as emergency management, everyone &#8211; including federal agencies &#8211; must go to great pains to make sure that every internet user, no matter their choice of computing platform, has access to the necessary resources.</p>
<p>[<em>And before any <a href="http://www.brianflounders.com" title="Floundies is a nerd">nerds</a> get on my case, I am aware that this page doesn't properly validate.  Philly.com doesn't properly URL-encode ampersands in their RSS links in the Sixers and Eagles links in the sidebar. D'oh.</em>]</p>
]]></content:encoded>
			<wfw:commentRss>http://skaroff.com/blog/index.php/2005/09/06/fema-no-mac-for-you/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (request URI is rejected)

Served from: skaroff.com @ 2012-05-24 13:02:53 -->
