<?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>firsttube.com &#187; Web</title>
	<atom:link href="http://firsttube.com/tag/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://firsttube.com</link>
	<description>crunchy nuggets, served semi-daily</description>
	<lastBuildDate>Wed, 10 Mar 2010 03:38:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<atom:link rel='hub' href='http://firsttube.com/?pushpress=hub'/>
		<item>
		<title>Why Degrade Gracefully?</title>
		<link>http://firsttube.com/read/why-degrade-gracefully/</link>
		<comments>http://firsttube.com/read/why-degrade-gracefully/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 23:11:25 +0000</pubDate>
		<dc:creator>Adam S</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://firsttube.com/?p=1472</guid>
		<description><![CDATA[I got thinking today, as I near roll out of an internal helpdesk app heavily using jQuery, why we bother to degrade our scripts so they work without javascript.  I get it: some people have javascript disabled in their browser&#8230; but my question is this: so what?
Javascript is a core part of web experience [...]]]></description>
			<content:encoded><![CDATA[<p>I got thinking today, as I near roll out of an internal helpdesk app heavily using jQuery, why we bother to degrade our scripts so they work without javascript.  I get it: some people have javascript disabled in their browser&#8230; but my question is this: so what?</p>
<p>Javascript is a core part of web experience today.  In fact, I&#8217;d say that, on the desktop in the full browser front, if your browser doesn&#8217;t support at least HTML 4, javascript, and CSS 2, you&#8217;re not playing with the right tools.  After all, we expect that people can parse HTML, why not expect that javascript is a pre-requisite for web usage?</p>
<p><a href="http://firsttube.com/uploads/2009/07/javascript_1.jpg" rel='lytebox[why-degrade-gracefully]'><img class="aligncenter size-full wp-image-1473" title="javascript" src="http://firsttube.com/uploads/2009/07/javascript_1.jpg" alt="javascript" width="400" height="300" /></a></p>
<p>Some of us go to great pains to make sure our sites work should a user have javascript disabled.  But I&#8217;m actually considering the opposite: hiding certain critical elements if you don&#8217;t have javascript enabled to ensure that each visitor is on an even playing field.  Wrapping submit buttons in jQuery&#8217;s <em>append()</em> method, submitting data on <em>click()</em>, and plentifully exchanging JSON data via AJAX throughout ought to properly cripple participation of those who opt out of script execution on my site.</p>
<p>It all comes down to this: if you want your site to reach the widest audience possible, you need to anticipate that the client may not allow you scripting capability.  Conversely, on our intranet, and maybe one day on my websites, I&#8217;m doing the opposite: if you want to use the site, you&#8217;ve got to enable javascript: if you don&#8217;t, well&#8230; your loss.</p>
]]></content:encoded>
			<wfw:commentRss>http://firsttube.com/read/why-degrade-gracefully/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>IE: Sucking Hard Since Version 5</title>
		<link>http://firsttube.com/read/ie-sucking-hard-since-version-5/</link>
		<comments>http://firsttube.com/read/ie-sucking-hard-since-version-5/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 13:27:00 +0000</pubDate>
		<dc:creator>Adam S</dc:creator>
				<category><![CDATA[Rant]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web Browser]]></category>
		<category><![CDATA[Web Browsers]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://firsttube.com/?p=1336</guid>
		<description><![CDATA[This code (extracted from a javascript file) works in every major browser except IE (including IE8):

     $&#40;'a[rel*=fancybox]'&#41;.fancybox&#40;&#123;
          'frameWidth' : 500,
          'frameHeight' : 465,
          'hideOnContentClick' [...]]]></description>
			<content:encoded><![CDATA[<p>This code (extracted from a javascript file) works in every major browser except IE (including IE8):</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">     $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'a[rel*=fancybox]'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">fancybox</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>
          <span style="color: #3366CC;">'frameWidth'</span> <span style="color: #339933;">:</span> <span style="color: #CC0000;">500</span><span style="color: #339933;">,</span>
          <span style="color: #3366CC;">'frameHeight'</span> <span style="color: #339933;">:</span> <span style="color: #CC0000;">465</span><span style="color: #339933;">,</span>
          <span style="color: #3366CC;">'hideOnContentClick'</span> <span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">false</span><span style="color: #339933;">,</span>
          <span style="color: #3366CC;">'centerOnScroll'</span> <span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">true</span><span style="color: #339933;">,</span>
     <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>This is the fix:</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">     $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'a[rel*=fancybox]'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">fancybox</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>
          <span style="color: #3366CC;">'frameWidth'</span> <span style="color: #339933;">:</span> <span style="color: #CC0000;">500</span><span style="color: #339933;">,</span>
          <span style="color: #3366CC;">'frameHeight'</span> <span style="color: #339933;">:</span> <span style="color: #CC0000;">465</span><span style="color: #339933;">,</span>
          <span style="color: #3366CC;">'hideOnContentClick'</span> <span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">false</span><span style="color: #339933;">,</span>
          <span style="color: #3366CC;">'centerOnScroll'</span> <span style="color: #339933;">:</span> <span style="color: #003366; font-weight: bold;">true</span>
     <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>See the difference? Yeah, neither did I.  The difference is the last comma in the argument list.</p>
<p>That&#8217;s 3 consecutive major versions of IE that have been absolutely crap.  Why anyone continues to use IE is beyond me.  IE: sucking hard since version 5.</p>
]]></content:encoded>
			<wfw:commentRss>http://firsttube.com/read/ie-sucking-hard-since-version-5/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>ACID3, Safari 3, Opera 10, Take 2</title>
		<link>http://firsttube.com/read/ACID3-Safari-3-Opera-10-Take-2/</link>
		<comments>http://firsttube.com/read/ACID3-Safari-3-Opera-10-Take-2/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 10:34:51 +0000</pubDate>
		<dc:creator>Adam S</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Opera]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web Browsers]]></category>
		<category><![CDATA[Webkit]]></category>

		<guid isPermaLink="false">http://firsttubecom/read/ACID3-Safari-3-Opera-10-Take-2</guid>
		<description><![CDATA[And so the real race begins.  Yesterday, Opera software announced via blog post that their post Opera 9.5 builds are passing the ACID3 test.  Cool! 
But alas, the Webkit team &#8211; who really have a great track record of being successful with bleeding edge, one upped them by not only passing the test, [...]]]></description>
			<content:encoded><![CDATA[<p>And so the real race begins.  Yesterday, Opera software announced via blog post that their <a href="http://my.opera.com/desktopteam/blog/2008/03/26/opera-and-the-acid3-test">post Opera 9.5 builds are passing the ACID3 test</a>.  Cool! </p>
<p>But alas, the <a href="http://firsttube.com/tag/webkit">Webkit</a> team &#8211; who <i>really</i> have a great track record of being successful with bleeding edge, one upped them by not only passing the test, but releasing the code.  So behold, this is Webkit nightly for Windows, build 31368 from 2008-03-26.  </p>
<p><img src="http://firsttube.com/uploads/ACID3-Webkit.jpg" alt="ACID3 on Webkit" class="instant" style="border:0;" /></p>
<p>We know that Safari 3.1 doesn&#8217;t and <a href="http://firsttube.com/tag/opera">Opera</a> 9.5 won&#8217;t pass ACID3.  We know IE8 is a long way off.  We know <a href="http://firsttube.com/tag/firefox">Firefox</a> 3 is still pretty far from it too.  But now we have browsers that <i>can</i> do it.  The the big question is, who will have the first stable general release that does it? <a href="http://firsttube.com/tag/safari">Safari</a> 3.2? Opera 10? </p>
<p>It&#8217;s an exciting time in web development, and I hate to admit that I think it&#8217;s largely due to IE8.  If the <a href="http://firsttube.com/tag/ie">IE</a> team steps it up, some of themes technologies have the potential to reinvigorate the web.  No serious e-commerce site would alienate all IE users &#8211; even today, they make up 80% or so of internet users.  But as things progress here, we&#8217;re likely to start seeing some incredible things in the next few years.   </p>
<p><b>Update</b>: <a href="http://ln.hixie.ch/?start=1206578003&#038;count=1">A bug in ACID3</a> was apparently noticed as a result of the Webkit team&#8217;s work.  This <a href="http://webkit.org/blog/173/webkit-achieves-acid3-100100-in-public-build/">awesome detailed blog post from the Webkit site</a> chronicles the final steps of the adventure.  Note that the &#8220;animation smoothness&#8221; criteria is subjectively, and that the team is apparently giving themselves a fail, but nothing that they think they are &#8220;<i>faster than all other browsers</i>&#8220;.  Congrats again, Webkit team.  Well done!</p>
]]></content:encoded>
			<wfw:commentRss>http://firsttube.com/read/ACID3-Safari-3-Opera-10-Take-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Acid 3 on Webkit Nightly</title>
		<link>http://firsttube.com/read/Acid-3-on-Webkit-Nightly/</link>
		<comments>http://firsttube.com/read/Acid-3-on-Webkit-Nightly/#comments</comments>
		<pubDate>Mon, 10 Mar 2008 12:25:20 +0000</pubDate>
		<dc:creator>Adam S</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web Browsers]]></category>
		<category><![CDATA[Webkit]]></category>

		<guid isPermaLink="false">http://firsttubecom/read/Acid-3-on-Webkit-Nightly</guid>
		<description><![CDATA[The Acid 2 test has, for a few years now, been the de facto test for your browser&#8217;s CSS capabilities.  The Acid test, fewer people know, is not really about conforming to standards &#8211; passing it does not make your browser standards compliant or complete, so it&#8217;s best to understand that all it really [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.webstandards.org/files/acid2/test.html#top">Acid 2 test</a> has, for a few years now, been the de facto test for your browser&#8217;s CSS capabilities.  The Acid test, fewer people know, is not really about conforming to standards &#8211; passing it does not make your browser standards compliant or complete, so it&#8217;s best to understand that all it really means is that it properly handles the elements tested as well as certain errors properly.  Sometime in 2005, Safari passed Acid 2, becoming the first mainline browser so earn that honor.  A few years later, the current or development versions of all major browsers &#8211; including Firefox 3, IE8, Opera 9.5 &#8211; all pass the Acid 2 test.  </p>
<p>Enter <a href="http://acid3.acidtests.org">Acid 3</a>.  Acid 3 measure even more goodness, including these six &#8220;buckets&#8221;:</p>
<ul>
<li>Bucket 1: DOM Traversal, DOM Range, HTTP</li>
<li>Bucket 2: DOM2 Core and DOM2 Events</li>
<li>Bucket 3: DOM2 Views, DOM2 Style, CSS 3 selectors and Media Queries</li>
<li>Bucket 4: Behavior of HTML tables and forms when manipulated by script and DOM2 HTML</li>
<li>Bucket 5: Tests from the Acid3 Competition (SVG,[5] HTML, SMIL, Unicode&#8230;)</li>
<li>Bucket 6: ECMAScript</li>
</ul>
<p>Using recent browsers, everything fails pretty spectacularly.  My Opera 9.26 install gets a 42/100.  Safari (including iPhone) does 39/100.  IE7 does 12/100, Firefox 2 does the most respectable with 52/100.  Even IE8 only does 17/100 while Firefox 3 tops out at 59/100 and Opera 9.5 at 60/100.  The current generation, even the next generation of major browsers are still far from coming close to rendering Acid 3 with any accuracy.    </p>
<p>I have been playing, now and again, with Webkit nightlies, since Webkit is actually a really neat engine, and guess what it kicks out? This:</p>
<p><img src="http://firsttube.com/uploads/webkit-acid3.jpg" class="instant itiltleft" style="width:500px;border:0;margin:0 auto;" /><br />
<small>Webkit nightly on Windows Vista</small></p>
<p>Pretty impressive.  Safari is pretty limited when it comes to extending its function &#8211; it doesn&#8217;t even support a &#8220;new tab&#8221; button.  But the webkit and javascript core engines are respectable both in rendering skill and speed.</p>
]]></content:encoded>
			<wfw:commentRss>http://firsttube.com/read/Acid-3-on-Webkit-Nightly/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Fifteen Percent Rule</title>
		<link>http://firsttube.com/read/The-Fifteen-Percent-Rule/</link>
		<comments>http://firsttube.com/read/The-Fifteen-Percent-Rule/#comments</comments>
		<pubDate>Tue, 22 Jan 2008 09:04:37 +0000</pubDate>
		<dc:creator>Adam S</dc:creator>
				<category><![CDATA[OSNews]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://firsttubecom/read/The-Fifteen-Percent-Rule</guid>
		<description><![CDATA[As a general rule, 15% of any online community is comprised of ninnies, fools, and jerks.  On some sites, this percentage is much higher, and for others, it&#8217;s slightly lower.  But every community has them and too often, they are impossibly loud and attention seeking.  
On the whole, I find OSNews to [...]]]></description>
			<content:encoded><![CDATA[<p>As a general rule, 15% of any online community is comprised of <i>ninnies, fools, and jerks</i>.  On some sites, this percentage is much higher, and for others, it&#8217;s slightly lower.  But every community has them and too often, they are impossibly loud and attention seeking.  </p>
<p>On the whole, I find <a href='http://osnews.com'>OSNews</a> to be way above average.  The noise ratio is generally low, so it&#8217;s really only the trolling &#8211; both intentional and unintentional &#8211; that gets people riled up.  But the rule still applies.  </p>
<p>Recently, I had a user incredibly angry at me because I &#8220;forced&#8221; him to use the mobile site on his mobile device.  I reminded him that it&#8217;s been that way since the first day Eugenia rolled out the code, but he was having none of that.  I told him that most devices won&#8217;t support the site and he said his did.  Finally, he uploaded a video of his usage and saw him using&#8230; an iPhone!  The best part? The iPhone is <b>not</b> served the mobile version.  So he was going to <a href="http://mobile.osnews.com">mobile.osnews.com</a> and them complaining that we served him the mobile version! </p>
<p>Then yesterday, in an admittedly heated discussion about KDE4, I was discussing how I am disappointed with the release <i>as a 4.0 release</i> and some got incredibly angry.  They pounded upon me that the only proper thing to do is release the code and let users find the bugs.  But I didn&#8217;t relent when I probably should have just ignored it, I was a bit too salty at worst, I should have just moved on and stayed above it, but alas, I didn&#8217;t, and it ended with a bang.  </p>
<p>A lot of people think that by being a part of the <a href='http://osnews.com'>OSNews</a> staff, we&#8217;re not allowed to have any opinions.  They forget that we&#8217;re software users too, and that we participate in our own community.  </p>
<p>So, anyway, in this KDE4 &#8220;ready or not&#8221; discussion, I insisted that it was naive to suggest that the average user would follow the development or news closely enough to know that the KDE team suggested that 4.0 is not ready for users, I was called &#8220;stupid&#8221; by one user and &#8220;an ejit&#8221; by another.  It&#8217;s a fatal flaw for IT people to assume everyone is like them, that everyone is subscribed to 400+ RSS feeds and knows the news before it&#8217;s even cooled off.  But the battle waged on.  In retrospect, I really don&#8217;t think anything I said was wrong or off base, so I&#8217;m not really regretting this interchange.   </p>
<p>While digging through the responses, I found a user misusing his mod points &#8211; a clear violation of <a href='http://osnews.com'>OSNews</a> rules &#8211; by modding down every comment that disagreed with his (not just mine) and modding up every comment that agreed.  A cursory review showed that every up-mod he&#8217;s handed out in the last few days was to pro-KDE posts, while every down-mod in the last several days dared to question them.  This is a cleare violation: this doesn&#8217;t help us prevent forum misuse, it just filters out differing opinions, which leads to <a href="http://firsttube.com/read/Bye-bye-Reddit">groupthink</a>.  I was tempted to reverse all of his recent moderations straightaway, but I witheld and swallowed his downmods of even my own comments.  You stay classy, <strike>K&#8212;&#8212;&#8211;</strike> (name redacted).  </p>
<p>Yes, even the best communities have a few bad apples, a few sour pusses who want only to be stroked and reinforced in their own opinions, and when there is any challenge, they lash out.  They&#8217;re present in every community, real life included.</p>
]]></content:encoded>
			<wfw:commentRss>http://firsttube.com/read/The-Fifteen-Percent-Rule/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Review of Online Photo Services</title>
		<link>http://firsttube.com/read/a-review-of-online-photo-services/</link>
		<comments>http://firsttube.com/read/a-review-of-online-photo-services/#comments</comments>
		<pubDate>Wed, 03 Oct 2007 14:30:06 +0000</pubDate>
		<dc:creator>Adam S</dc:creator>
				<category><![CDATA[Review]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[Found Online]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[MySpace]]></category>
		<category><![CDATA[Photobucket]]></category>
		<category><![CDATA[Picasa]]></category>
		<category><![CDATA[PicasaWeb]]></category>
		<category><![CDATA[SmugMug]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Websites]]></category>
		<category><![CDATA[Zooomr]]></category>
		<category><![CDATA[Zoto]]></category>

		<guid isPermaLink="false">http://firsttubecom/read/A-Review-of-Online-Photo-Services</guid>
		<description><![CDATA[Some time ago, I switched to Google&#8217;s Picasa Web Albums online photo management software.  Although it&#8217;s simple to use, Picasa Web has been missing too many features for too long, and after Google locked me out of their software for a few days due to a bug of some sort, and their iPhoto plug-in [...]]]></description>
			<content:encoded><![CDATA[<p>Some time ago, <a href="http://firsttube.com/read/Picasweb-goes-Gold">I switched to Google&#8217;s Picasa Web Albums</a> online photo management software.  Although it&#8217;s simple to use, Picasa Web has been missing too many features for too long, and after <a href="http://firsttube.com/read/My-Faith-in-Google-Is-Now-In-Question">Google locked me out of their software for a few days due to a bug of some sort</a>, and their iPhoto plug-in stopped working, I decided it was time to start checking out the alternatives.  I have played with a few services, and judged them based on a number of criteria, including these 15 questions:</p>
<p>1.  How easy is it to do batch uploads?<br />
2.  Are there decent Mac and Windows upload tools?<br />
3.  Does it work in all major browsers (Opera and Safari are both important)<br />
4.  Will the default display scale to upwards of 2500 photos?<br />
5.  How fast does each page load?<br />
6.  Is the image scaled down? If so, is the original available?<br />
7.  Is it a fly-by-night startup that I can count on to be around?<br />
8.  How much does it cost for a pro membership, if anything? What are the benefits?<br />
9.  What are my storage requirements?<br />
10. What is my traffic/bandwidth limit, if any?<br />
11. Are there integrated ads?<br />
12. How easy is it for others to access my photos?<br />
13. Is there any sort of privacy?<br />
14. What type of tools exist for me to manage my photos once they are online?<br />
15. Is there some sort of embed/slideshow for my webpages?</p>
<p>I&#8217;ve tested the following services: Picasa Web Albums, Flickr, Zoto, Zooomr, SmugMug, Photobucket, Facebook, and MySpace.  Read on for my initial results.<br />
<span id="more-111"></span><br />
<span style="text-decoration: underline;"><strong>PicasaWeb</strong></span><br />
<a href="http://picasaweb.google.com">Picasa Web Albums</a> (hereafter Picasa), obviously, is not fully sufficient for me, which is why I&#8217;m looking at other solutions.  My problems, although <a href="http://firsttube.com/tag/picasaweb">chronicled in exhausting detail on <a href='http://firsttube.com'>firsttube.com</a> in the past</a>, are numerous. Firstly, and most importantly, no &#8220;sub-albums,&#8221; which means the number of albums on my page gets uncontrollable very quickly.  Secondly, no real privacy: each album can be made &#8220;private&#8221; which simply gives it a unique key in the URL&#8230; in short, security by obscurity.  Lastly, the tagging mechanism <em>sucks</em>.  Want to tag all photos in an album? Ya can&#8217;t! One by one is all they offer, and since I had well over 1300 photos upload when they introduced tags, it was a no-go from the get-go.  In addition, Picasa Web doesn&#8217;t offer a view count, or a way to mark a photo a &#8220;favorite.&#8221;  Oh yeah, and Google wants to charge me $25 for the same thing that everyone else pays $20 for.</p>
<p>I have had problems getting Picasa to run flawlessly in Opera.  It does run properly in Gecko, Webkit, and IE based browsers, however, in Opera, I&#8217;ve had issues where the photo refuses to advance after a few clicks.  Of course, the entire interface is extremely AJAX heavy, which means that when it does work, at the photo level, at least, it&#8217;s about as responsive as you could ask for.</p>
<p>That said, Picasa is far from bad.  They have cross platform upload tools.  6GB of space now costs $20, and you know there will not be downtime and your photos won&#8217;t go up in smoke because the funding dries up.  There are no ads and it&#8217;s very easy to find and navigate your albums, even for someone who has never seen Picasa.  There is a photo embed and a slideshow embed, the ability to upload video, and even geographical information.  Also, you can access the photo&#8217;s EXIF data, if it exists.</p>
<p>Picasa also has a great mobile interface, and works like a charm on the iPhone.  Google is a great company with fantastic web products, and I do believe that eventually, this app will be a powerhouse, but for now, it&#8217;s nice, but far from perfect.</p>
<p><span style="text-decoration: underline;"><strong>Flickr</strong></span><br />
<a href="http://flickr.com">Flickr</a> is the original daddy of online photos, and owned by Yahoo!, which means, like Picasa, your photos aren&#8217;t going anywhere.  That is, unless <a href="http://www.google.com/search?q=flickr+censorship">Flickr decides to censor your photos</a>.  Actually, Flickr is generally very reliable and very heavily used.  As a result, Flickr has a large and vibrant community.  Flickr&#8217;s Groups are as varied as the Internet itself &#8211; there are groups for almost anything.  Flickr, unlike Picasa, offers a very robust tagging system, and three levels of photo privacy tied to specific access levels which are very easy to manage.  <a href="http://www.flickr.com/tools/">Flickr offers batch upload tools outside the web browser</a>, and a complete API is available.  As such, there are scores of apps out there that work extremely well.  Sadly, <a href="http://connectedflow.com/flickrexport/">the best Flickr/iPhoto plugin is shareware</a>, but it&#8217;s hard to hold that against Yahoo!.  Free members can store up to 200 photos and now get 100MB of upload bandwidth (5MB per photo) per month.   While the images are resized, the full sized originals are only available for subscribers.</p>
<p>Flickr eschews the concept of albums in favor of &#8220;sets,&#8221; which, like Gmail&#8217;s labels, are essentially groups, of which a photo can be a member of more than one.  While this is most flexible, it&#8217;s also more confusing for the novice and for non-technical folks.  Another drawback is that it&#8217;s nearly impossible to have a linear view of photos without going through them one at a time, since all photos aren&#8217;t necessarily part of a set, and sets may include the same photos as other sets.  Another limitation is that free members are limited to 3 sets.  This organization is the main reason I left Flickr some time ago, because those unfamiliar with this very modern paradigm (namely, my parents) were perplexed by it.</p>
<p>Flickr also provides the &#8220;Organizr,&#8221; which is a powerful flash-based photo manager that allows you to perform incredible bulk operations from re-ordering to re-tagging to re-grouping to removing.  I also never spotted another service that focused so much on your ability to place a <a href="http://www.flickr.com/creativecommons/">license on each photo</a>.</p>
<p>Overall, Flickr is a great system, and as it has matured, features have become easier to use and tools have become plentiful, and it seems as though everyone I know has a Flickr account.  It&#8217;s easy to look favorably upon Flickr as their system has proven to work and stand the test of time (well&#8230; internet time).  Flickr works flawlessly in all browsers and provides numerous access points, making it an excellent all around site.</p>
<p><span style="text-decoration: underline;"><strong>Zoto</strong></span><br />
<a href="http://zoto.com">Zoto</a> is an interesting system that has a few years experience under its belt now.  Zoto offers something unique: a fully dynamic interface.  The entire site: colors and all, is widget based, and the experience utilizes modern technologies.  As incredibly cool as the site is, it&#8217;s also pretty confusing.</p>
<p>Zoto has opted to integrate a <a href="http://www.huddletogether.com/projects/lightbox2/">lightbox</a>-like effect for their photo viewing. When you visit a user&#8217;s page, clicking on a photo creates a javascript layered pop-up that shows the photo and some basic details, along with the ability to move forward or backward in the photostream.  Click on the photo will bring you to that photo&#8217;s detail page, which allows you to navigate through the detail pages, but not back to the lightbox view.  Confused? It&#8217;s not actually as scary in practice, but it does take some getting used to and as you click through, you are viewing URLs like this:</p>
<pre>http://www.zoto.com/site/#USR.sethadam1::PAG.lightbox::ORD.date_uploaded::DIR.desc::OFF.0</pre>
<p>These URLs don&#8217;t link to the same thing you&#8217;re viewing, making permalinks a little confusing too.</p>
<p>Zoto offers multi-platform upload tools, however, in practice, the uploads ran very slowly, and via my 4MB/sec broadband, it took me in excess of an hour to get my 32 photos uploaded.</p>
<p>While Zoto has a lot of stickles about it, it also has some really cool positives.  Firstly, like the above, Zoto has an open API, and there are third party tools that utilize it.  Secondly, for the tech-savvy, the lightbox views and the complex navigation are pretty snazzy, and allow you rapid access to lots of photos with a modern browser.  The experience mostly worked for me in all browsers tested &#8211; although page refreshing when the Javascript stalls is painful, and virtually every time meant reloading back to my user page and re-tracing my steps.</p>
<p>Zoto&#8217;s membership is less than $20 a year, and for that, you get unlimited storage, an ad-free, spam-free, experience, plus some other fun features.  Zoto can export to your Flickr account, making it an interesting companion app if Flickr is your secondary or public photo store. Zoto offers &#8220;albums&#8221; and &#8220;album sets,&#8221; and even allows you to apply different template themes on a per album basis.  Bulk editing tools are present, as are an awesome array of actual photo editing tools, as seen below.  Zoto also included the most granular permissions seen to date: by group or by user.</p>
<p><a href="http://firsttube.com/uploads/zoto.jpg" rel='lytebox[a-review-of-online-photo-services]'><img src="http://firsttube.com/uploads/zototn.png" alt="Zoto" /></a><br />
<small>Click picture for a larger view</small></p>
<p>Zoto is definitely something special, although it&#8217;s not ready &#8212; for me &#8212; to go primetime for my photos.  It&#8217;s still too slow to load on some screens.  To clarify, the page loads very quickly, and then you wait for the &#8220;Loading stuff&#8230;&#8221; message at the top to populate the widgets with content.  It&#8217;s worth noting that Zoto worked, for me at least, about 3-5 times faster in IE7 than it did in Opera 9.2.</p>
<p><span style="text-decoration: underline;"><strong>Zooomr</strong></span><br />
<a href="http://zooomr.com">Zooomr</a> &#8212; yes, with <em>three</em> o&#8217;s &#8212; is another neat photo site comparable, more than anything else, to Flickr.  The site was founded by Kristopher Tate, but it&#8217;s mostly known for its CEO, Thomas Hawk, a San Francisco based blogger and photographer.  Hawk had a <a href="http://digg.com/tech_news/Thomas_Hawk_is_railing_against_Flickr_censorship_this_time_he_s_right">very public falling-out with Flickr</a>, which may or may not have been staged, he landed at Zooomr.  Hawk and Tate orchestrated a major new version of Zooomr, and within minutes of launch &#8211; POOF! &#8211; server dead.  An internet plea went out, and <a href="http://scobleizer.com/2007/05/30/zoho-and-sun-microsystems-saves-the-day-for-zooomr/">Zoho and Sun Microsystems stepped in to save the day</a>.  So I tend to believe that Zooomr is safe, since there are some major players behind them now.</p>
<p>Zooomr is pretty cool.  They have the &#8220;zipline,&#8221; which is a great way to view someone&#8217;s photos or even everyone&#8217;s photos, if you&#8217;re so inclined.  There are inline description editing tools, geotagging, and labeling.  There is a place to specify details about selling prints of your photos, as well as per-person permissions, Zooomr user or not.</p>
<p><a href="http://firsttube.com/uploads/zooomr.png" rel='lytebox[a-review-of-online-photo-services]'><img src="http://firsttube.com/uploads/zooomrtn.png" alt="Zooomr" /></a><br />
<small>Click picture for a larger view</small></p>
<p>Zooomr does have ads, but their pro account removes them for $20 a year, but offers little else: you can view an extended zipline&#8230; that&#8217;s about it.  Your photos are featured in more places, which isn&#8217;t really a feature, and you get &#8220;better support.&#8221;  Says Zooomr: &#8220;<em>While we help everyone as best we can, being a Pro will escalate your issues to the top of our lists.</em>&#8221;  I emailed Zooomr support about a few questions on Sept 26, over a week ago, and have yet to hear back.</p>
<p>Like some of the other sites, rather than can-belong-to-one-and-only-one albums, Zooomr offers &#8220;Smart Sets.&#8221;  This novel approach allows you to dynamically add to sets.  So, for example, I may have a set of all photos tagged &#8220;Food,&#8221; another set of all photos geo-tagged to one area, another that features my most-viewed photos, another that features a certain person, etc.  This is one of the cooler ways to instantly organize.</p>
<p>Zooomr does not have any batch upload tools outside of the browser, and while it can do batch uploads in-browser, you still have to add them one-by-one to the uploader.  Certainly, it would be impossible to upload in excess of 1000 photos this way without incredible patience, which makes it a non-starter for me.  In short, Zooomr is working just to keep on par with Flickr, but is feature-light.  Zooomr, for now, is most compelling as an alternative to the &#8220;big&#8221; photo companies, a small site managed by some cool contemporaries of ours.  But it&#8217;s far from offering the best feature pack.  Zooomr does offer an attractive and easy to use site, but lacks much of a community outside the &#8220;zipline.&#8221;</p>
<p><span style="text-decoration: underline;"><strong>SmugMug</strong></span><br />
<a href="http://smugmug.com">SmugMug</a> is the real deal.  Put simply &#8211; these guys have their ducks in a row and have built a gorgeous site that does what it should.  However, they seem to know it, and unlike <strong>all</strong> of the other sites reviewed, there is *no* free account on smugmug.  After your 14 day trial, it&#8217;s pay to play.  And it&#8217;s not cheap: $40 a year minimum for the standard user, $60/yr for an upgraded &#8220;power user&#8221; plan, $160/yr for the premium &#8220;Pro&#8221; plan.</p>
<p>If you can swallow that price tag, SmugMug features everything you&#8217;d want to see in a photo-sharing site: a light AJAX-where-appropriate interface, photo rating, albums and sub-albums (called &#8220;galleries&#8221; and &#8220;albums&#8221;), per album theming, password protected albums, visibility/privacy without logging in or needing an account, and so much more.</p>
<p>Once you sign up, you can download one of a dozen or more tools for uploading.  There are several Windows apps, several Mac apps, and even a Flickr migration tool.  They also feature a simple uploader form and a standard form.  Their standard in-browser uploader is Java based, so it&#8217;s drag and drop, and it uploads flawlessly and quickly.  Once your photos are uploaded, you can view your album immediately and begin playing with the huge lists of photo modifications and tools available to you.</p>
<p>The array of configuration options available to the gallery owners is dizzying: password protection, public v. private, indexable by Google, should the gallery be in SmugMug&#8217;s site search, will you allow external links, can users view the full size original, should the page hide your name and navigation, can people rank your photos, can your friends and family edit captions, do you allow comments, can people share the photos &#8211; and much more, and that&#8217;s all PER ALBUM!</p>
<p>For your account, you can organize everything however you like &#8211; you can put galleries in any order, albums in any order, photos in any order.  You have geotagging, groups, and, unlike most of the other sites, this one really caters to pros, allowing massive photo uploads (up to 12MB for Standard and Power users, 16MB per photo for Pro accounts), high-quality professional printing (none of that grainy Shutterbug nonsense), your own domain name, and individual guest passwords.</p>
<p>SmugMug uses Amazon S3 for a backend, so count your photos as safe.  If you&#8217;re still nervous, you can have a CD or DVD backup delivered to your house (albeit for a very steep $11/650MB CD or $22/4GB DVD).</p>
<p>SmugMug is, by far and away, the most featureful, controllable, professional site for photo sharing I have experienced.  The only problem &#8212; which is a biggie &#8211; is that for the hobbiest who just wants to store photos of his family events and pictures of his kids and dogs, it&#8217;s really expensive compared to the other alternatives.  $40 per year is <em>double</em> what the other sites charge, and while you get many more features, that&#8217;s a pretty big yearly commitment for just hosting what I could otherwise do on my own website.</p>
<p>Other than the price, SmugMug is the clear winner for features.  Anyone could figure it out.</p>
<p><span style="text-decoration: underline;"><strong>Photobucket</strong></span><br />
<a href="http://photobucket.com">Photobucket</a> is primary known in tech circles for two things: 1. that annoying image when someone has exceeded their bandwidth, and b) hosting all the bullshit sarcastic &#8220;look I&#8217;m witty!&#8221; graphics that pollute MySpace pages.  Yet, they offer one of the best features seen yet: FTP upload access.  Surprisingly, Photobucket has one of the more complete photo systems out there, and for $20/yr, a pro account not only grants you FTP upload access, it gives you ad-free, high-bandwidth galleries and sub-albums.  My biggest complaint, visible immediately, was a deal-breaker right off the bat.  My photos could be located at this URL:</p>
<pre>http://s238.photobucket.com/albums/ff247/sethadam1/</pre>
<p>That&#8217;s it.  There&#8217;s no customization, not even a redirect from photobucket.com/sethadam1.  Put simply, the gallery URL is a mess, impossible to remember, and unusable.  I couldn&#8217;t seriously tell people to check out my photos at &#8220;ach tee tee pee colon slash slash ess two three eight dot photobucket dot com slash albums slash eff eff two four seven slash sethadam1.&#8221;  It would be easier to drive home and burn them a custom photo DVD than to recite that three times.</p>
<p>That aside, photobucket allow pictures and video and accepts uploads via email as well, including your cell phone, which is handy.  Photobucket not only allows you to create custom slideshows &#8211; a MySpace must &#8211; but also custom &#8220;remixes,&#8221; which are custom compilations created in a Flash environment which can even be set to audio.</p>
<p>There is no community in Photobucket, mostly because you&#8217;re side-to-side on the server with photos that say &#8220;Happy Hump Day!&#8221; in bright pink letters or &#8220;Thanks 4 the add, dood!&#8221; as a caption with a bunny with a pancake on its head, or something like that.  Photobucket is primarily a hosting service for embedded photos, and while it can hold a huge number of pictures, in albums, by the way, it&#8217;s really aimed more for people who use pictures elsewhere on the web, not people who store their photo collection online.</p>
<p><span style="text-decoration: underline;"><strong>Facebook</strong></span><br />
<a href="http://facebook.com">Facebook</a> is a really cool site.  With the addition of Facebook apps, it&#8217;s got a really thriving community.  It hasn&#8217;t been ruined by a large company like Yahoo!, Microsoft, or Google yet, who shut off access, then integrate it with their accounts&#8230; yet.  It has a great &#8220;face-tagging&#8221; feature that allows you to label each person, and the photo is dynamically available in their photos as &#8220;photos of X.&#8221;</p>
<p>While very cool, Facebook requires a login.  That means you can&#8217;t view my photos at all unless you have a Facebook account.  And while it&#8217;s nice for showing off some photos, it&#8217;s not an online photo album service&#8230; in fact, far from it.  You can store lots of photos, but there are no photo-specific features and the management tools are non-existent.  Surprisingly, there are several tools out there for integrating with Facebook, but don&#8217;t be fooled: this is not a real option for an online photo album.  <strong>Update</strong>: You can view Facebook photos without a login, however, like Picasa Web Albums, you need an obscure URL for each photo album. </p>
<p>Privacy options are decent though: if someone isn&#8217;t logged in, nothing.  If they have merely &#8220;limited&#8221; access to your profile, nothing.  If they aren&#8217;t your friend, nothing, except if you tagged someone who <em>is</em> their friend, in which case, they can see that photo.</p>
<p>That&#8217;s it.  Facebook is a non-starter for real photo sharing.</p>
<p><span style="text-decoration: underline;"><strong>MySpace</strong></span><br />
<a href="http://myspace.com">MySpace</a> is, aside from being <a href="http://firsttube.com/read/My-Rant-On-My-Problem-With-MySpace">the ugliest and least responsible site on the internet</a>, worthless for photo sharing.  Privacy options do include public and private, but all friends see all photos, which can be in albums, but that&#8217;s it.  No management tools.  Comments are allowed.  And the site is dead ugly.  Avoid using MySpace at all costs.</p>
<p>Seriously, again, MySpace is not a photo-sharing site.  It&#8217;s just a site that allows you to upload some photos.</p>
<p><span style="text-decoration: underline;"><strong>Conclusion</strong></span><br />
It&#8217;s very hard to pick a clear winner, so instead, I&#8217;ll award a few prizes here.  Best of breed goes to <a href="http://smugmug.com">SmugMug</a>, and not by a little.  SmugMug is everything a real photo hosting site should be, including a plethora of management and privacy tools.  The cost is its only, but very legitimate, drawback.</p>
<p>Most accessible goes to <a href="http://picasaweb.google.com">Picasa Web Albums</a>.  It&#8217;s just drop dead simple, but at the expense of features.  Tags are really a non-starter, privacy is non-existent, and there is no community around it.  But if you just want a simple app &#8212; internet accessible photo albums with photos within them &#8212; <a href="http://picasaweb.google.com">Picasa Web Albums</a> may be for you.</p>
<p>Lastly, the most powerful free experience is easily <a href="http://flickr.com">Flickr</a>.  At 200 photos, you&#8217;re barely able to show all of Aunt Mable&#8217;s 94th birthday, but with the huge, dedicated community there&#8217;s always &#8220;stuff to do,&#8221; and with an affordable yearly price-tag, Flickr may be the best choice for most of the tech-savvy, and even non-tech-savvy enthusiasts.</p>
]]></content:encoded>
			<wfw:commentRss>http://firsttube.com/read/a-review-of-online-photo-services/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
		<item>
		<title>Bloglines Beta Ain&#8217;t Doin&#8217; It For Me</title>
		<link>http://firsttube.com/read/Bloglines-Beta-Aint-Doin-It-For-Me/</link>
		<comments>http://firsttube.com/read/Bloglines-Beta-Aint-Doin-It-For-Me/#comments</comments>
		<pubDate>Thu, 06 Sep 2007 09:18:04 +0000</pubDate>
		<dc:creator>Adam S</dc:creator>
				<category><![CDATA[Bloglines]]></category>
		<category><![CDATA[Google Reader]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://firsttubecom/read/Bloglines-Beta-Aint-Doin-It-For-Me</guid>
		<description><![CDATA[Bloglines has been pushing their new beta site, beta.bloglines.com, and are already reporting many satisfied users.  The new site is very attractive and much more modern looking, but do not count me among the satisfied.  
The new beta, as far as I&#8217;m concerned, is just a second rate Google Reader.  In fact, [...]]]></description>
			<content:encoded><![CDATA[<p>Bloglines has been pushing their new beta site, <a href="http://beta.bloglines.com">beta.bloglines.com</a>, and are already reporting many satisfied users.  The new site is very attractive and much more modern looking, but do not count me among the satisfied.  </p>
<p>The new beta, as far as I&#8217;m concerned, is just a second rate Google Reader.  In fact, everything about how Bloglines works has been changed to emulate Google Reader.  </p>
<p><img src="http://firsttube.com/uploads/bl0.jpg" alt="Bloglines" /><br />
My primary gripe is this: in the normal Bloglines, you click on a feed and the items are marked read.  In the new version, you must scroll past each item and/or click on each item.  If I click on a feed with one or two short items, then I click a new feed, those items are not marked &#8220;read&#8221; and stay in my lefthand sidebar.  I do not care to address each item individually, which is what the new system requires.  </p>
<p>Also, even if I do scroll over each item, more often than not, the last item is not &#8220;marked read&#8221; and remains for me to address later. </p>
<p>There are a host of other single key shortcuts, and I do find these useful, but make no mistake about it, these single key shortcuts are &#8220;borrowed&#8221; directly from Google Reader again.  </p>
<p><img src="http://firsttube.com/uploads/bl1.jpg" alt="Bloglines" align="left" />Most of my gripes with beta 1.0 were not addressed in today&#8217;s update.  It was hard to click on a feed properly &#8211; the linked area was a bit flaky.  Each element in the feed bar had a display of &#8220;block,&#8221; which I think lead the developers to think it would be easer to locate the right feed quickly with your mouse.  However, the second part of my complaint was that without underlines in the feedbar on mouseover, there was no way to tell, except via the hand cursor, that you&#8217;re on the right link.  The UI ought to indicate that you are on an active link via an underline.  Since it does not, and still does not, you&#8217;re still floating above a huge link sea.  </p>
<p>This is only compounded by the fact that the current version uses a simple Arial font, whereas the new uses what I suppose Bloglines thought was a more &#8220;Web 2.0&#8243; font, which I think I&#8217;m properly id&#8217;ing as Trebuchet. </p>
<p><img src="http://firsttube.com/uploads/bl2.jpg" alt="Bloglines" align="right" />As a result, it&#8217;s  harder to figure out what means what in the feedbar.  Notice that in the example, on the current site, the bolder headlines mean unread items exist.  There is a clear number right beside the feed telling you how many items are pending.  But in the new Bloglines beta, the bolding is much less noticeable due to the font change and the number of unread items is right justified, which means you can&#8217;t easily tell how many are pending when you have a large number of feeds with unread items. </p>
<p>Overall, it&#8217;s a very nice start &#8211; it&#8217;s attractive, it&#8217;s got nice drag-n-drog javascript everywhere, it loads in a decent amount of time, and the new customizeable start screen is very cool.  But if this is what rolled out as final, I&#8217;d probably just move to Google Reader, which is practically the same thing anyway.  This is just too much like it and pretty much ditches all the concepts that I *liked* about Bloglines that made it different.</p>
]]></content:encoded>
			<wfw:commentRss>http://firsttube.com/read/Bloglines-Beta-Aint-Doin-It-For-Me/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I Switched to Safari 3</title>
		<link>http://firsttube.com/read/I-Switched-to-Safari-3/</link>
		<comments>http://firsttube.com/read/I-Switched-to-Safari-3/#comments</comments>
		<pubDate>Sun, 26 Aug 2007 10:42:15 +0000</pubDate>
		<dc:creator>Adam S</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web Browsers]]></category>

		<guid isPermaLink="false">http://firsttubecom/read/I-Switched-to-Safari-3</guid>
		<description><![CDATA[I really did not expect to ever post something like this, but it&#8217;s true: I switched to Safari 3.
I love Camino, really I do.  But recently, its limitations have been bothering me.  I prefer my tabs in a very specific order and often I have several tabs open.  If ever I close [...]]]></description>
			<content:encoded><![CDATA[<p>I really did not expect to ever post something like this, but it&#8217;s true: I switched to Safari 3.</p>
<p>I love <b>Camino</b>, really I do.  But recently, its limitations have been bothering me.  I prefer my tabs in a very specific order and often I have several tabs open.  If ever I close a tab by mistake, I cannot get that same order without doing tons of work or re-launching.  Safari 3 draggable tabs.  </p>
<p>One of the things that used to bother me about Safari was that there was no &#8220;New Tab&#8221; button available for the toolbar.  There is now. It&#8217;s also got great keychain integration, private browing, the original embedded RSS,  true Aqua widgets, resizable text boxes, easy PDF integration, and it&#8217;s super-fast.   </p>
<p>Camino doesn&#8217;t support Ad-Block, but rather, stylesheet-based filtering.  Safari does that too, by default, and it&#8217;s even easier to use than it is in Camino.  Safari doesn&#8217;t have any Flash problems and once you add &#8220;Safari Stand&#8221; and enable the debug menu, you have a perfect drop in replacement.  </p>
<p>My biggest complaint about Camino was the lack of development tools.  It doesn&#8217;t have a Javascript debugger (<a href="http://escapedthoughts.com/camino/hacks">ChimericalConsole</a> never worked me for), doesn&#8217;t have a decent source viewer, doesn&#8217;t have many third party hacks to add functionality &#8211; it&#8217;s a browser for users, not developers.  Without XUL, it&#8217;s tough to add features easily.  And that made it tough to use for me.  When I did any serious work, I&#8217;d always switch to Opera or, more recently, Safari 3.  Safari 3&#8217;s Inspector is just awesome.  </p>
<p>So&#8230; for now, I am Opera on Windows and Safari on Mac.  My browser requirements are more demanding than most. I have felt for some time that Opera and Firefox on Mac just &#8220;feel&#8221; wrong, they don&#8217;t fit.  So we&#8217;ll see how the Safari experiment goes.</p>
]]></content:encoded>
			<wfw:commentRss>http://firsttube.com/read/I-Switched-to-Safari-3/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Web Server Logs.</title>
		<link>http://firsttube.com/read/Web-Server-Logs/</link>
		<comments>http://firsttube.com/read/Web-Server-Logs/#comments</comments>
		<pubDate>Wed, 21 Jun 2006 16:40:51 +0000</pubDate>
		<dc:creator>Adam S</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://firsttubecom/read/Web-Server-Logs</guid>
		<description><![CDATA[I was just glancing over my web server logs, and I found that this month, the stats for my domain have changed a bit, no doubt due to the OSNews Staff Blog.  The thing is, it&#8217;s still curous. 
Let&#8217;s examine: 


WIN
13922
60.6 %


Windows XP
12513
54.5 %


Windows NT
18
0 %


Windows Me
112
0.4 %


Windows Codename Longhorn
238
1 %


Windows 98
316
1.3 %


Windows 2003
144
0.6 [...]]]></description>
			<content:encoded><![CDATA[<p>I was just glancing over my web server logs, and I found that this month, the stats for my domain have changed a bit, no doubt due to the <a href='http://osnews.com'>OSNews</a> Staff Blog.  The thing is, it&#8217;s still curous. </p>
<p>Let&#8217;s examine: </p>
<table style="width:300px;" align="center">
<tr>
<th>WIN</th>
<th>13922</th>
<th>60.6 %</th>
</tr>
<tr>
<td>Windows XP</td>
<td>12513</td>
<td>54.5 %</td>
</tr>
<tr>
<td>Windows NT</td>
<td>18</td>
<td>0 %</td>
</tr>
<tr>
<td>Windows Me</td>
<td>112</td>
<td>0.4 %</td>
</tr>
<tr>
<td>Windows Codename Longhorn</td>
<td>238</td>
<td>1 %</td>
</tr>
<tr>
<td>Windows 98</td>
<td>316</td>
<td>1.3 %</td>
</tr>
<tr>
<td>Windows 2003</td>
<td>144</td>
<td>0.6 %</td>
</tr>
<tr>
<td>Windows 2000</td>
<td>581</td>
<td>2.5 %</td>
</tr>
<tr>
<th>MAC</th>
<th>1958</th>
<th>8.5 %</th>
</tr>
<tr>
<td>Mac OS X</td>
<td>1904</td>
<td>8.3 %</td>
</tr>
<tr>
<td>Mac OS</td>
<td>54</td>
<td>0.2 %</td>
</tr>
<tr>
<th>Others</th>
<th>7057</th>
<th>30.7 %</th>
</tr>
<tr>
<td>Unknown</td>
<td>4891</td>
<td>21.3 %</td>
</tr>
<tr>
<td>Linux</td>
<td>1943</td>
<td>8.4 %</td>
</tr>
<tr>
<td>FreeBSD</td>
<td>100</td>
<td>0.4 %</td>
</tr>
<tr>
<td>OpenBSD</td>
<td>38</td>
<td>0.1 %</td>
</tr>
<tr>
<td>
<tr>
<td>Unknown Unix system</td>
<td>37</td>
<td>0.1 %</td>
</tr>
<tr>
<td>Sun Solaris</td>
<td>25</td>
<td>0.1 %</td>
</tr>
<tr>
<td>BeOS</td>
<td>15</td>
<td>0 %</td>
</tr>
<tr>
<td>Symbian OS</td>
<td>5</td>
<td>0 %</td>
</tr>
<tr>
<td>NetBSD</td>
<td>3</td>
<td>0 %</td>
</tr>
</table>
<p>So, it&#8217;s nice to see some NetBSD and BeOS in there, but over 1% comes from Windows 98! Who the heck is still using Windows 98?? And also, how come there is so much &#8220;Windows Codename Longhorn?&#8221; Is Vista identifying itself as Codename Longhorn still?</p>
]]></content:encoded>
			<wfw:commentRss>http://firsttube.com/read/Web-Server-Logs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet Explorer Sucks</title>
		<link>http://firsttube.com/read/Internet-Explorer-Sucks/</link>
		<comments>http://firsttube.com/read/Internet-Explorer-Sucks/#comments</comments>
		<pubDate>Thu, 11 May 2006 12:32:05 +0000</pubDate>
		<dc:creator>Adam S</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://firsttubecom/read/Internet-Explorer-Sucks</guid>
		<description><![CDATA[I spent about an hour troubleshooting why a stupid popup window wouldn&#8217;t work in IE.  I tried everything &#8211; I renamed the window.  I added &#8220;void&#8221; to the var in the js function calling it.  I moved the script inline, and then to a separate script page.  I tried everythng, but [...]]]></description>
			<content:encoded><![CDATA[<p>I spent about an hour troubleshooting why a stupid popup window wouldn&#8217;t work in IE.  I tried everything &#8211; I renamed the window.  I added &#8220;void&#8221; to the var in the js function calling it.  I moved the script inline, and then to a separate script page.  I tried everythng, but would always get the same nonsense error: </p>
<p>Error: Invalid argument<br />
Line: 37<br />
Char: 2<br />
Code:0 </p>
<p>on file: scripts.js.  When I added it inline, it changed to: </p>
<p>Error: Invalid argument<br />
Line: 37<br />
Char: 2<br />
Code:0 </p>
<p>file: index.php </p>
<p>The problem? Apparently, IE cannot process a window name if it has a space in it. Ridiculous! </p>
]]></content:encoded>
			<wfw:commentRss>http://firsttube.com/read/Internet-Explorer-Sucks/feed/</wfw:commentRss>
		<slash:comments>38</slash:comments>
		</item>
		<item>
		<title>Cherokee</title>
		<link>http://firsttube.com/read/Cherokee/</link>
		<comments>http://firsttube.com/read/Cherokee/#comments</comments>
		<pubDate>Tue, 25 Apr 2006 14:00:24 +0000</pubDate>
		<dc:creator>Adam S</dc:creator>
				<category><![CDATA[Cherokee]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://firsttubecom/read/Cherokee</guid>
		<description><![CDATA[I played around today with getting Cherokee Web Server to work.&#160;  It looks kind of neat, but the docs need some work.&#160;  

]]></description>
			<content:encoded><![CDATA[<p>I played around today with getting Cherokee Web Server to work.&nbsp;  It looks kind of neat, but the docs need some work.&nbsp;  </p>
<p><a href="http://firsttube.com/images/cherokee.png" rel='lytebox[Cherokee]'><img src="http://firsttube.com/uploads//images/cherokee-small.png" alt="Screenshot" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://firsttube.com/read/Cherokee/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Mario</title>
		<link>http://firsttube.com/read/Javascript-Mario/</link>
		<comments>http://firsttube.com/read/Javascript-Mario/#comments</comments>
		<pubDate>Wed, 05 Oct 2005 09:16:44 +0000</pubDate>
		<dc:creator>Adam S</dc:creator>
				<category><![CDATA[Interesting]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Mario]]></category>
		<category><![CDATA[Video Games]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://firsttubecom/read/Javascript-Mario</guid>
		<description><![CDATA[Cool! Javascript Super Mario Bros!
]]></description>
			<content:encoded><![CDATA[<p>Cool! <br /><a href="http://janis.or.jp/users/segabito/JavaScriptMaryo.html">Javascript Super Mario Bros</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://firsttube.com/read/Javascript-Mario/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LivePhish Garnering More Media Attention</title>
		<link>http://firsttube.com/read/LivePhish-Garnering-More-Media-Attention/</link>
		<comments>http://firsttube.com/read/LivePhish-Garnering-More-Media-Attention/#comments</comments>
		<pubDate>Sat, 09 Aug 2003 12:16:57 +0000</pubDate>
		<dc:creator>Adam S</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Phish]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://firsttubecom/read/LivePhish-Garnering-More-Media-Attention</guid>
		<description><![CDATA[Not only are Phish digital music pioneers with the amazing LivePhish.com, their fans are now cited by the industry as unique.  Accordint to this article, Phish fans are unlike the rest of music fans, in that they can be &#8220;trusted&#8221; with unsigned/unregulated music files.  Also mentioned are &#8220;Roses Are Free&#8221; authors Ween.
]]></description>
			<content:encoded><![CDATA[<p>Not only are Phish digital music pioneers with the amazing <a href="http://livephish.com">LivePhish.com</a>, their fans are now cited by the industry as unique.  Accordint to <a href="http://story.news.yahoo.com/news?tmpl=story&#038;cid=795&#038;ncid=799&#038;e=3&#038;u=/eo/20030808/en_music_eo/12295">this article</a>, Phish fans are unlike the rest of music fans, in that they can be &#8220;trusted&#8221; with unsigned/unregulated music files.  Also mentioned are &#8220;<i>Roses Are Free</i>&#8221; authors <a href="http://www.ween.com">Ween</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://firsttube.com/read/LivePhish-Garnering-More-Media-Attention/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interview with Brad of nugs.net</title>
		<link>http://firsttube.com/read/Interview-with-Brad-of-nugsnet/</link>
		<comments>http://firsttube.com/read/Interview-with-Brad-of-nugsnet/#comments</comments>
		<pubDate>Wed, 30 Jul 2003 23:04:47 +0000</pubDate>
		<dc:creator>Adam S</dc:creator>
				<category><![CDATA[Interview]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Phish]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://firsttubecom/read/Interview-with-Brad-of-nugsnet</guid>
		<description><![CDATA[There is a great interview online with Brad Serling, creator of download powerhouse nugs.net, the &#8220;other&#8221; download site.  Brad talks about the past, present, and future of livephish.com, the motivation behind their technology decisions, and Phish&#8217;s commitments to their fans.  A great read, especially for users of the phatphiles vault.  Read more [...]]]></description>
			<content:encoded><![CDATA[<p>There is a <a href="http://www.jambands.com/Features/content_2003_07_28.06.phtml">great interview</a> online with Brad Serling, creator of download powerhouse <a href="http://nugs.net">nugs.net</a>, the &#8220;other&#8221; download site.  Brad talks about the past, present, and future of <a href="http://livephish.com">livephish.com</a>, the motivation behind their technology decisions, and Phish&#8217;s commitments to their fans.  A great read, especially for users of the <a href="http://phatphiles.org/vault/">phatphiles</a> <a href="/downloads.php">vault</a>.  Read more at <a href="http://jambands.com">jambands.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://firsttube.com/read/Interview-with-Brad-of-nugsnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Phish.com Revamped!</title>
		<link>http://firsttube.com/read/Phishcom-Revamped/</link>
		<comments>http://firsttube.com/read/Phishcom-Revamped/#comments</comments>
		<pubDate>Tue, 08 Jul 2003 00:01:32 +0000</pubDate>
		<dc:creator>Adam S</dc:creator>
				<category><![CDATA[Phish]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://firsttubecom/read/Phishcom-Revamped</guid>
		<description><![CDATA[To coincide with the release of firsttube.com 4.1 summer tour, Phish has released what they are calling Phish.com 3.0.  Their new site is packed with information, but it&#8217;s much more manageable and user friendly than the previous incarnation.  Head on over to phish.com and check it out!
]]></description>
			<content:encoded><![CDATA[<p>To coincide with <strike>the release of <a href='http://firsttube.com'>firsttube.com</a> 4.1</strike> summer tour, Phish has released what they are calling <a href="http://www.phish.com/">Phish.com 3.0</a>.  Their new site is packed with information, but it&#8217;s much more manageable and user friendly than the previous incarnation.  Head on over to phish.com and check it out!</p>
]]></content:encoded>
			<wfw:commentRss>http://firsttube.com/read/Phishcom-Revamped/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
