<?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>TMTOWTDI &#187; Browsers</title>
	<atom:link href="http://blog.pamiproductions.com/category/browsers/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.pamiproductions.com</link>
	<description>Turning experience into knowledge and wisdom</description>
	<lastBuildDate>Thu, 04 Mar 2010 09:50:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>HTML &amp; CSS</title>
		<link>http://blog.pamiproductions.com/2008/10/html-and-css/</link>
		<comments>http://blog.pamiproductions.com/2008/10/html-and-css/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 23:23:24 +0000</pubDate>
		<dc:creator>Adam Feldman</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[EWS New Media Class]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[standards]]></category>
		<category><![CDATA[w3c]]></category>

		<guid isPermaLink="false">http://blog.pamiproductions.com/?p=104</guid>
		<description><![CDATA[Please comment at my blog.

This post is part of a series I am writing for a class on New Media. Some technical explanations may seem unneeded or lengthy, but I am writing for the benefit of a very intelligent but less technical audience.

HTML and CSS are the presentation languages of the web. A programmer may [...]]]></description>
			<content:encoded><![CDATA[<p>Please comment at <strong><a href="http://blog.pamiproductions.com/?p=104" >my blog</a></strong>.</p>
<ul>
<li>This post is part of a series I am writing for a <a href="http://ewsnewmedia.wikispaces.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://ewsnewmedia.wikispaces.com');">class</a> on <a href="http://en.wikipedia.org/wiki/New_media" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/New_media');">New Media</a>. Some technical explanations may seem unneeded or lengthy, but I am writing for the benefit of a very intelligent but less technical audience.</li>
</ul>
<p><a href="http://en.wikipedia.org/wiki/HTML" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/HTML');">HTML</a> and <a href="http://en.wikipedia.org/wiki/Cascading_Style_Sheets" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Cascading_Style_Sheets');">CSS</a> are the presentation languages of the web. A programmer may build an application in Python or Java, or make their website more <a href="http://script.aculo.us/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://script.aculo.us/');">beautiful or fun</a> using Javascript, but ultimately all that these languages do is allow for abstracted, automated editing of a page’s HTML and CSS.</p>
<h3>HTML</h3>
<p>HTML, or Hypertext Markup Language, started as the sole language for making a website using Tim Berners-Lee’s WWW system, the system that became the web as we know it today; when you made a page on the net, you wrote HTML to define the content, layout, and design of the page. Note that HTML is not a programming language, but a markup language–you use it to describe how something should look, and the computer interprets it and renders a page onto your screen. Wikipedia says it best: HTML “provides a means to describe the structure of text-based information in a document — by denoting certain text as links, headings, paragraphs, lists, and so on…”</p>
<p>Making a well-designed layout for a webpage was difficult because the only way to position elements such as images and text was to place them into tables with hidden borders. As well, much of the HTML code was redundant. There was no way to write one line that made every single link bold and green; you had to specify attributes of page elements individually for each element. To make a single link bold and green, you would write it as <code>&lt;strong&gt;&lt;a href="http://woot.com" color="green"&gt;Woot&lt;/a&gt;&lt;/strong&gt;</code>. Please note that the use of the <code>color</code> attribute is deprecated; <code>style</code> should be used instead, but I’m using the old-fashioned example on purpose.</p>
<p><strong>Edit: </strong>To clarify, the more important reason not to use tables for layout is that if you do, you are essentially marking all of your content as tabular data when it is not, thus making life harder on search engines. (Thank you: <a href="http://www.digital-web.com/articles/everything_you_know_about_CSS_Is_wrong/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.digital-web.com/articles/everything_you_know_about_CSS_Is_wrong/');">http://www.digital-web.com/articles/everything_you_know_about_CSS_Is_wrong/</a>)</p>
<h3>CSS</h3>
<p>In 1996 CSS, or Cascading Style Sheets, was unleashed upon the web (although full support in the major browsers took another 3-4 years). CSS allows for the separation of form and content in web design. That is, you can write the content of your webpage then structure it using HTML, and then define the actual layout and colors and font and what links do when your <a href="http://www.darrenfauth.com/css-sandbox/css-hover-text.php" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.darrenfauth.com/css-sandbox/css-hover-text.php');">mouse passes over them</a> using CSS. Wikipedia always says it best: CSS is “used to describe the presentation of a document written in a markup language” such as HTML.</p>
<p>Now if you wanted all links to be green and bold, it only took one CSS statement ( <code>a{color: green; font-weight: bold;}</code> ) (note how I don’t even need to wrap all of my HTML links in the <code>&lt;strong&gt;</code> tag, I just use CSS). Web design became much easier because instead of structuring the page using tables, CSS could be used to position page elements either relative to the edges of the window or other elements, or absolutely using coordinates on the page. More complex designs became possible, and webpage maintenance easier.</p>
<h3>Standards</h3>
<p>Today, as always, the <a href="http://en.wikipedia.org/wiki/World_Wide_Web_Consortium" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/World_Wide_Web_Consortium');">W3C</a>, the World Wide Wide Consortium, manages these two languages, as well as the varied ecosystem of dialects that have sprung out of HTML such as <a href="http://en.wikipedia.org/wiki/XML" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/XML');">XML</a> and all other technical <a href="http://en.wikipedia.org/wiki/World_Wide_Web_Consortium#Standards" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/World_Wide_Web_Consortium#Standards');">standards</a> related to the web. XML is Extensible Markup Language, and it allows people to make their own languages with their own tags. Major use example: <a href="http://en.wikipedia.org/wiki/RSS" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/RSS');">RSS</a> and <a href="http://en.wikipedia.org/wiki/Podcasting" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Podcasting');">podcasting</a>.</p>
<h3>Tags</h3>
<p>As you may already know, HTML is written as a collection of tags. For example, all HTML pages start with the <code>&lt;html&gt;</code> tag and end with <code>&lt;/html&gt;</code>. All tags that “open” a statement are written as <code>&lt;tag&gt;</code> and all that close it are written as <code>&lt;/tag&gt;</code>. With the exception of a few <em>self-closing</em> tags such as <code>&lt;/ br&gt;</code> (which makes horizontal rules), always close your tags!</p>
<p>When you write posts using Wordpress, you can always switch between the visual editor and HTML editor. All that the visual editor does is translate your clicks and words into HTML. If you do try the HTML editor, it works the same way, but you can see the code changes your actions make. The tags you will find most useful are the <code>&lt;a&gt;</code> tag, which is for links (<strong>a</strong> standing for anchor), the <code>&lt;p&gt;</code> tag, which denotes a paragraph, the <code>&lt;h1&gt;</code>–<code>&lt;h6&gt;</code> tags, which allow for headers to be inserted into a page, and the <code>&lt;ul&gt;</code> and <code>&lt;ol&gt;</code> tags, which allow for bulleted and ordered lists (and don’t forget your <code>&lt;li&gt;</code> tag too!).</p>
<p>The W3C has an excellent <a href="http://www.w3schools.com/html/DEFAULT.asp" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.w3schools.com/html/DEFAULT.asp');">HTML primer</a> that will do far better than I ever could at teaching HTML.</p>
<h3>The Future</h3>
<p>To me, the best feature coming out of the W3C’s work is the <code>&lt;canvas&gt;</code> tag. This tag allows for animations like those made in Adobe’s proprietary Flash software and played in Adobe’s proprietary Flash player to be done using open standards and tools.</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=TMTOWTDI&amp;siteurl=http%3A%2F%2Fblog.pamiproductions.com%2F&amp;linkname=HTML%20%26%23038%3B%20CSS&amp;linkurl=http%3A%2F%2Fblog.pamiproductions.com%2F2008%2F10%2Fhtml-and-css%2F" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.addtoany.com/share_save?sitename=TMTOWTDI&amp;siteurl=http%3A%2F%2Fblog.pamiproductions.com%2F&amp;linkname=HTML%20%26%23038%3B%20CSS&amp;linkurl=http%3A%2F%2Fblog.pamiproductions.com%2F2008%2F10%2Fhtml-and-css%2F');"><img src="http://blog.pamiproductions.com/wp-content/plugins/add-to-any/share_save_120_16.gif" width="120" height="16" alt="Share/Save/Bookmark"/></a>

	</p><p>From Adam Feldman's blog, <a href="http://blog.pamiproductions.com" >blog.pamiproductions.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.pamiproductions.com/2008/10/html-and-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Browsers &amp; the Web, part 6: Making $$</title>
		<link>http://blog.pamiproductions.com/2008/10/browsers-and-the-web-part-6-making-money/</link>
		<comments>http://blog.pamiproductions.com/2008/10/browsers-and-the-web-part-6-making-money/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 19:26:02 +0000</pubDate>
		<dc:creator>Adam Feldman</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[EWS New Media Class]]></category>
		<category><![CDATA[Mass Media]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[TANSTAAFL]]></category>
		<category><![CDATA[venture capital]]></category>

		<guid isPermaLink="false">http://blog.pamiproductions.com/?p=90</guid>
		<description><![CDATA[Please comment at my blog.

This post is part of a series I am writing for a class on New Media. Some technical explanations may seem unneeded or lengthy, but I am writing for the benefit of a very intelligent but less technical audience.

I would like to return again to the issue of TANSTAAFL–There Ain&#8217;t No [...]]]></description>
			<content:encoded><![CDATA[<p>Please comment at <strong><a href="http://blog.pamiproductions.com/?p=90" >my blog</a></strong>.</p>
<ul>
<li>This post is part of a series I am writing for a <a href="http://ewsnewmedia.wikispaces.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://ewsnewmedia.wikispaces.com');">class</a> on <a href="http://en.wikipedia.org/wiki/New_media" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/New_media');">New Media</a>. Some technical explanations may seem unneeded or lengthy, but I am writing for the benefit of a very intelligent but less technical audience.</li>
</ul>
<p>I would like to return again to the issue of TANSTAAFL–There Ain&#8217;t No Such Thing As A Free Lunch. In the <a href="http://blog.pamiproductions.com/2008/10/03/browsers-and-the-web-part-5-the-need-for-money/" >last post</a> in the series, I discussed where money is needed. Now, I would like to give a simple overview of how that money is acquired. When I refer to companies here, I mean organizations whose primary role is to provide some service over the Internet. </p>
<h3><a href="http://en.wikipedia.org/wiki/Venture_capital" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Venture_capital');">Venture Capital</a></h3>
<p>VC “is a type of private equity capital typically provided to immature, high-potential, growth companies in the interest of generating a return through an eventual realization event such as an IPO or trade sale of the company. Venture capital investments are generally made as cash in exchange for shares in the invested company” (Wikipedia). Besides the traditional banks providing VC, some organizations have sprung up from people who were successful in businesses who are now looking to do VC funding with the money they made. One of those, and one of my favorite companies, is <a href="http://ycombinator.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://ycombinator.com/');">Y Combinator</a>. They are slightly different in that they provide seed funding, which is the initial infusion of cash for startups and traditionally the riskiest for the loaner. One of my favorite startup blogs is that of <a href="http://www.paulgraham.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.paulgraham.com/');">Paul Graham</a>, who works with the company. A great website that focuses on tech startups and the ecosystem that funds them is <a href="http://www.techcrunch.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.techcrunch.com/');">TechCrunch</a>.</p>
<h3><a href="http://en.wikipedia.org/wiki/Online_advertising" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Online_advertising');">Advertising</a></h3>
<p>Much of the web is funded by text and other ads. <a href="http://computer.howstuffworks.com/web-advertising.htm" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://computer.howstuffworks.com/web-advertising.htm');">HowStuffWorks</a> has an excellent explanation of how web advertising works. Google’s revenue consists almost entirely of income from their <a href="http://www.google.com/ads/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.google.com/ads/');">ad programs</a>. Google’s ads are particularly interesting because they revolve around textual analysis of your search queries and the content of webpages on which Google’s ads are shown. Site owners are most commonly paid by advertisers by the click-through rate–how many people click on the ad–although many other more complicated systems exist.<br />
A potential issue for the web is the prevalence of tools such as the free Firefox plugin <a href="https://addons.mozilla.org/en-US/firefox/addon/10" onclick="javascript:pageTracker._trackPageview('/outbound/article/https://addons.mozilla.org/en-US/firefox/addon/10');">Adblock</a> and other similar tools for other browsers that block ads from appearing in your webpages by blocking known ad servers. </p>
<h3>Other Methods</h3>
<ul>
<li>Many websites offer premium or subscription services. For example, Wordpress.com offers free blogs that are feature-limited and occasionally show advertisements. For a fee these limits and annoyances can be lifted (or you could also go to Wordpress.org and download the software they use free and install it on your web server and customize it to your hearts content like I did). Of course, the free accounts are useful for hooking users into the site and allowing them to become comfortable enough with or find enough of a need for the service so that they are more likely to pay for it.</li>
<li>Donations often fund open-source projects and some topical personal sites.</li>
<li>Some corporations will fund open-source projects through either infusions of cash or employee time if the projects are important to them. Notable here is Google and all of its open-source <a href="http://code.google.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://code.google.com/');">efforts</a>.</li>
</ul>
<h3>Who Uses What</h3>
<ul>
<li>Any company with another revenue stream obviously may fund their homepage or other web presence through those monies. Among others, companies and startups will use primarily three sources of funding: venture capital, advertisements, and paid services.</li>
<li>Individuals or small groups funding sites primarily for pleasure and not profit will generally fund their costs through their own monies, donations, and advertisements.</li>
</ul>
<h3>Advertisements and Me</h3>
<p>I could care less about advertisements on the web. Although I could probably increase my perceived browsing speed by using Adblock, I feel no compulsion to use Adblock or <a href="http://haoli.dnsalias.com/Saft/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://haoli.dnsalias.com/Saft/');">Saft</a> to block advertisements from distracting me from my web browsing, because they don’t distract me whatsoever. Over the past ten years or so, I’ve learned to totally ignore and mentally filter out any advertisements and to easily and accurately discern content from advertising. I surmise that the fraternal ability to this is how well I am able to filter out noises around me when reading or otherwise concentrating on a task. </p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=TMTOWTDI&amp;siteurl=http%3A%2F%2Fblog.pamiproductions.com%2F&amp;linkname=Browsers%20%26%23038%3B%20the%20Web%2C%20part%206%3A%20Making%20%24%24&amp;linkurl=http%3A%2F%2Fblog.pamiproductions.com%2F2008%2F10%2Fbrowsers-and-the-web-part-6-making-money%2F" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.addtoany.com/share_save?sitename=TMTOWTDI&amp;siteurl=http%3A%2F%2Fblog.pamiproductions.com%2F&amp;linkname=Browsers%20%26%23038%3B%20the%20Web%2C%20part%206%3A%20Making%20%24%24&amp;linkurl=http%3A%2F%2Fblog.pamiproductions.com%2F2008%2F10%2Fbrowsers-and-the-web-part-6-making-money%2F');"><img src="http://blog.pamiproductions.com/wp-content/plugins/add-to-any/share_save_120_16.gif" width="120" height="16" alt="Share/Save/Bookmark"/></a>

	</p><p>From Adam Feldman's blog, <a href="http://blog.pamiproductions.com" >blog.pamiproductions.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.pamiproductions.com/2008/10/browsers-and-the-web-part-6-making-money/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Browsers &amp; the Web, part 5: The Need for $$</title>
		<link>http://blog.pamiproductions.com/2008/10/browsers-and-the-web-part-5-the-need-for-money/</link>
		<comments>http://blog.pamiproductions.com/2008/10/browsers-and-the-web-part-5-the-need-for-money/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 17:29:31 +0000</pubDate>
		<dc:creator>Adam Feldman</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[EWS New Media Class]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[FOSS]]></category>

		<guid isPermaLink="false">http://blog.pamiproductions.com/?p=78</guid>
		<description><![CDATA[Please comment at my blog.

This post is part of a series I am writing for a class on New Media. Some technical explanations may seem unneeded or lengthy, but I am writing for the benefit of a very intelligent but less technical audience.

One of my favorite acronyms must be invoked here: TANSTAAFL &#8211; There Ain&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>Please comment at <strong><a href="http://blog.pamiproductions.com/?p=78" >my blog</a></strong>.</p>
<ul>
<li>This post is part of a series I am writing for a <a href="http://ewsnewmedia.wikispaces.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://ewsnewmedia.wikispaces.com');">class</a> on <a href="http://en.wikipedia.org/wiki/New_media" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/New_media');">New Media</a>. Some technical explanations may seem unneeded or lengthy, but I am writing for the benefit of a very intelligent but less technical audience.</li>
</ul>
<p>One of my favorite acronyms must be invoked here: <a href="http://en.wikipedia.org/wiki/TANSTAAFL" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/TANSTAAFL');">TANSTAAFL</a> &#8211; There Ain&#8217;t No Such Thing As A Free Lunch. There’s a price behind everything, especially in the tech world (and free/open-source software is <a href="http://en.wikipedia.org/wiki/Gratis_versus_Libre" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Gratis_versus_Libre');">no exception</a>). I would like to give a shameless plug for donating to <a href="http://en.wikipedia.org/wiki/Free_and_open_source_software" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Free_and_open_source_software');">FOSS</a> developers and explain the costs behind using the web. </p>
<p>FOSS developers are awesome, awesome people to me. They, for various personal reasons that are often not monetary, spend lots of their time creating, maintaining, and improving the universe of software that is FOSS. They work on projects from operating systems (<a href="http://en.wikipedia.org/wiki/Linux" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Linux');">Linux</a> and <a href="http://en.wikipedia.org/wiki/Unix" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Unix');">Unix</a>) to databases (<a href="http://en.wikipedia.org/wiki/MySQL" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/MySQL');">MySQL</a>, <a href="http://en.wikipedia.org/wiki/SQLite" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/SQLite');">SQLite</a>) to programming languages (<a href="http://en.wikipedia.org/wiki/Python_(programming_language" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Python_(programming_language');">Python</a>), <a href="http://en.wikipedia.org/wiki/PHP" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/PHP');">PHP</a>, <a href="http://en.wikipedia.org/wiki/Per" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Per');">Perl</a>) to web servers (<a href="http://en.wikipedia.org/wiki/Apache_HTTP_Server" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Apache_HTTP_Server');">Apache</a>) to web software (<a href="http://en.wikipedia.org/wiki/Drupal" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Drupal');">Drupal</a>-powers <a href="http://emerycentral.com/main" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://emerycentral.com/main');">EmeryCentral</a>, <a href="http://wordpress.org" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://wordpress.org');">Wordpress</a>, <a href="http://en.wikipedia.org/wiki/PhpBB" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/PhpBB');">phpBB</a>) to word processing (<a href="http://en.wikipedia.org/wiki/OpenOffice.org" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/OpenOffice.org');">OpenOffice</a> and <a href="http://en.wikipedia.org/wiki/AbiWord" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/AbiWord');">Abiword</a>) to photo editing (<a href="http://en.wikipedia.org/wiki/GIMP" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/GIMP');">the GIMP</a>). There are FOSS applications in every domain that there is a need in (including niches such as amateur radio). The quality of the work is so good for much of the software that it surpasses anything else produced commercially, and thus the operating system and web server that power most of the Internet and the hardware that runs it (Linux and Apache) are community-built, as well as many of the web software tools that let you utilize the Web. My simple plea is that you occasionally donate $5 here and there to the projects that have allowed the Web to flourish and grow with the freedom and pace that it has.</p>
<p>(Readers familiar with developing and deploying websites should skip ahead)</p>
<p>For anyone who does not know what expenses go into making a website or developing FOSS software (which is done using the Internet to coordinate team members spread all over the globe), this is to give you a basic overview. To have a website, you obviously need a <a href="http://en.wikipedia.org/wiki/Server_(computing" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Server_(computing');">server</a>) connected to the Internet. You will usually pay to have a server located in a <a href="http://en.wikipedia.org/wiki/Datacenter" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Datacenter');">datacenter</a> with hundreds or thousands of other servers and powerful air conditioning and multiple redundant power sources and Internet connections, or you may share space on a server with other users using <a href="http://en.wikipedia.org/wiki/VMware" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/VMware');">virtualization</a>. Web-hosting space is available from $5 a month upwards, but to have a site support thousands or tens of thousands of views a day quickly becomes expensive because of the amount of work the server needs to do and the amount of <a href="http://en.wikipedia.org/wiki/Bandwidth_(computing" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Bandwidth_(computing');">bandwidth</a>) that is needed. </p>
<p>To cover expenses that are inevitably incurred, sites (be they homepages for a FOSS project, a blog, a news site, or any other site) will pursue a number of solutions that will be discussed in my next post: advertising and subscription services.</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=TMTOWTDI&amp;siteurl=http%3A%2F%2Fblog.pamiproductions.com%2F&amp;linkname=Browsers%20%26%23038%3B%20the%20Web%2C%20part%205%3A%20The%20Need%20for%20%24%24&amp;linkurl=http%3A%2F%2Fblog.pamiproductions.com%2F2008%2F10%2Fbrowsers-and-the-web-part-5-the-need-for-money%2F" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.addtoany.com/share_save?sitename=TMTOWTDI&amp;siteurl=http%3A%2F%2Fblog.pamiproductions.com%2F&amp;linkname=Browsers%20%26%23038%3B%20the%20Web%2C%20part%205%3A%20The%20Need%20for%20%24%24&amp;linkurl=http%3A%2F%2Fblog.pamiproductions.com%2F2008%2F10%2Fbrowsers-and-the-web-part-5-the-need-for-money%2F');"><img src="http://blog.pamiproductions.com/wp-content/plugins/add-to-any/share_save_120_16.gif" width="120" height="16" alt="Share/Save/Bookmark"/></a>

	</p><p>From Adam Feldman's blog, <a href="http://blog.pamiproductions.com" >blog.pamiproductions.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.pamiproductions.com/2008/10/browsers-and-the-web-part-5-the-need-for-money/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Browsers &amp; the Web, part 4: Ubiquitous Access</title>
		<link>http://blog.pamiproductions.com/2008/09/browsers-and-the-web-part-4-ubiquitous-access/</link>
		<comments>http://blog.pamiproductions.com/2008/09/browsers-and-the-web-part-4-ubiquitous-access/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 14:28:11 +0000</pubDate>
		<dc:creator>Adam Feldman</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[EWS New Media Class]]></category>
		<category><![CDATA[History]]></category>
		<category><![CDATA[Mass Media]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Epic 2015]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[WiMAX]]></category>

		<guid isPermaLink="false">http://blog.pamiproductions.com/?p=49</guid>
		<description><![CDATA[Please comment at my blog.

This post is part of a series I am writing for a class on New Media. Some technical explanations may seem unneeded or lengthy, but I am writing for the benefit of a very intelligent but less technical audience.

I am so damn excited for the future. I look at where we [...]]]></description>
			<content:encoded><![CDATA[<p>Please comment at <strong><a href="http://blog.pamiproductions.com/?p=49" >my blog</a></strong>.</p>
<ul>
<li>This post is part of a series I am writing for a <a href="http://ewsnewmedia.wikispaces.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://ewsnewmedia.wikispaces.com');">class</a> on <a href="http://en.wikipedia.org/wiki/New_media" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/New_media');">New Media</a>. Some technical explanations may seem unneeded or lengthy, but I am writing for the benefit of a very intelligent but less technical audience.</li>
</ul>
<p>I am so damn excited for the future. I look at where we are today with tech, and back into the past at where we came from, and then finally at the ideas incubating in academia and industry, and chills run down my spine at the thought of where we will be in 2, 5, 10, 20 years. My favorite anticipation is of ubiquitous (read: 99% coverage over the continental U.S.), speedy Internet access. </p>
<p>The coolest part of this pervasive access would be that <em>every single device</em> could have network access. Now, I do not envision any desk lamps, microwaves, or washing machines with direct access to this network, but they could (and should!) have access via <a href="http://en.wikipedia.org/wiki/Mesh_networking" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Mesh_networking');">mesh networking</a> through a gateway of some sort in the home. </p>
<p>The effect of this network omnipresence on media will be massively profound. Yes, the dystopian future of <a href="http://epic.makingithappen.co.uk/new-master1.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://epic.makingithappen.co.uk/new-master1.html');">Epic 2015</a> is a distinct possibility that must be managed, but I think that through proper regulation (by both the government and the people), the advantages of ever-present access far outweigh the horrors. My favorite exception beyond simple global Internet access is the combination of that access with other services such as location through <a href="http://en.wikipedia.org/wiki/Global_Positioning_System" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Global_Positioning_System');">GPS</a>. The <a href="http://apple.com/iphone" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://apple.com/iphone');">iPhone</a> and the <a href="http://www.androidg1.org/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.androidg1.org/');">Android G1</a> come closest today to providing the kind of access and services envisioned. Applications beyond those already available on the Internet include those that would take advantage of <a href="http://scan.jsharkey.org/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://scan.jsharkey.org/');">the built in camera</a> and the <a href="http://www.omnigroup.com/applications/OmniFocus/iphone/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.omnigroup.com/applications/OmniFocus/iphone/');">location awareness</a>. Viewing media on these rich-content devices will be a pleasure, but producing <a href="http://en.wikipedia.org/wiki/Geotagging" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Geotagging');">geotagged</a> media on-the-go through applications that share the information quickly with your contacts and friends for everyone’s furtherance are just <a href="http://radar.oreilly.com/2008/07/iphone-location-aware-apps.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://radar.oreilly.com/2008/07/iphone-location-aware-apps.html');">awesome</a>.</p>
<p>There are a number of technologies currently in development that could begin the process of truly universal wireless access, including <a href="http://en.wikipedia.org/wiki/Wimax" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Wimax');">WiMAX</a> and <a href="http://en.wikipedia.org/wiki/3GPP_Long_Term_Evolution" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/3GPP_Long_Term_Evolution');">LTE</a>. Both standards are designed to be able to work over a range of frequencies. A particularly valuable piece of the spectrum that companies developing and planning to deploy these standards wish to use is the 700 MHz band (also know as the <a href="http://www.imdb.com/title/tt0098546/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.imdb.com/title/tt0098546/');">UHF</a> band). This band is extremely valuable because according to some <a href="http://gigaom.com/2007/03/14/700mhz-explained/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://gigaom.com/2007/03/14/700mhz-explained/');">estimates</a> it would possibly allow for network towers with a range twice that of current cell phone towers (although <a href="http://www.mobiledia.com/guides/page1.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.mobiledia.com/guides/page1.html');">frequency availability</a> would still be an issue, but still the number of towers needed would be vastly less than is needed with the frequencies currently apportioned to cell phone providers). One other not so new but currently mostly underutilized standard is <a href="http://en.wikipedia.org/wiki/IPv6" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/IPv6');">IPv6</a>, which is needed because otherwise there would not be enough <a href="http://en.wikipedia.org/wiki/Internet_Protocol" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Internet_Protocol');">Internet Protocol</a> addresses for every device to have one. </p>
<p>Please also see <a href="http://irregulartimes.com/ubiquitous.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://irregulartimes.com/ubiquitous.html');">this alternate viewpoint</a> on why we should fear ubiquitous Web access.</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=TMTOWTDI&amp;siteurl=http%3A%2F%2Fblog.pamiproductions.com%2F&amp;linkname=Browsers%20%26%23038%3B%20the%20Web%2C%20part%204%3A%20Ubiquitous%20Access&amp;linkurl=http%3A%2F%2Fblog.pamiproductions.com%2F2008%2F09%2Fbrowsers-and-the-web-part-4-ubiquitous-access%2F" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.addtoany.com/share_save?sitename=TMTOWTDI&amp;siteurl=http%3A%2F%2Fblog.pamiproductions.com%2F&amp;linkname=Browsers%20%26%23038%3B%20the%20Web%2C%20part%204%3A%20Ubiquitous%20Access&amp;linkurl=http%3A%2F%2Fblog.pamiproductions.com%2F2008%2F09%2Fbrowsers-and-the-web-part-4-ubiquitous-access%2F');"><img src="http://blog.pamiproductions.com/wp-content/plugins/add-to-any/share_save_120_16.gif" width="120" height="16" alt="Share/Save/Bookmark"/></a>

	</p><p>From Adam Feldman's blog, <a href="http://blog.pamiproductions.com" >blog.pamiproductions.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.pamiproductions.com/2008/09/browsers-and-the-web-part-4-ubiquitous-access/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Browsers &amp; the Web, Part 3: The Ties that Bind</title>
		<link>http://blog.pamiproductions.com/2008/09/browsers-and-the-web-part-3-ties-that-bind/</link>
		<comments>http://blog.pamiproductions.com/2008/09/browsers-and-the-web-part-3-ties-that-bind/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 20:53:09 +0000</pubDate>
		<dc:creator>Adam Feldman</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[EWS New Media Class]]></category>
		<category><![CDATA[History]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Asterisk]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Hurricane Ike]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://ewsnewmedia.wordpress.com/?p=178</guid>
		<description><![CDATA[Please comment at my blog.

This post is part of a series I am writing for a class on New Media. Some technical explanations may seem unneeded or lengthy, but I am writing for the benefit of a very intelligent but less technical audience.

Hurricane Ike is a prime example of the advantages of our ever-increasing interconnectedness [...]]]></description>
			<content:encoded><![CDATA[<p>Please comment at <strong><a href="http://ewsnewmedia.wordpress.com/?p=178" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://ewsnewmedia.wordpress.com/?p=178');">my blog</a></strong>.</p>
<ul>
<li>This post is part of a series I am writing for a <a href="http://ewsnewmedia.wikispaces.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://ewsnewmedia.wikispaces.com');">class</a> on <a href="http://en.wikipedia.org/wiki/New_media" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/New_media');">New Media</a>. Some technical explanations may seem unneeded or lengthy, but I am writing for the benefit of a very intelligent but less technical audience.</li>
</ul>
<p>Hurricane Ike is a prime example of the advantages of our ever-increasing interconnectedness through the Internet and wireless services like cell phones (and hopefully eventually, ubiquitous Internet through WiMAX).</p>
<h3>Facebook &amp; Twitter</h3>
<p>Pre- and post-storm, these three services helped everyone stay connected and informed about each other in ways not possible just a few years ago. The usefulness of Facebook is obvious: the quick and easy way to update your friends about how you are doing (or to complain to your friends around the country) was, and is, to update your Facebook status. Anyone can do this via text messaging from their cell phone, as well as respond to Facebook messages and Wall posts, Many people can browse all of Facebook from their phones, Blackberries, and iPhones too. And, of course, people have slowly regained access to laptops, making updates, and especially checking your friends, as easy as usual.</p>
<p>An especially awesome service that has become hugely popular with the web-savvy crowd has been <a href="http://twitter.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://twitter.com');">Twitter</a>. Twitter explains itself best:</p>
<blockquote><p>Twitter is a service for friends, family, and co–workers to communicate and stay connected through the exchange of quick, frequent answers to one simple question: What are you doing?</p></blockquote>
<p>Twitter is an example of a <a href="http://en.wikipedia.org/wiki/Micro-blogging" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Micro-blogging');">Microblogging</a> service. You can update your Twitter account using text messages, their regular and <a href="http://m.twitter.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://m.twitter.com');">mobile</a> websites, and multiple iPhone applications. My favorite feature is the <a href="http://www.facebook.com/apps/application.php?id=2231777543" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.facebook.com/apps/application.php?id=2231777543');">Twitter Facebook app</a> that automatically changes your Facebook status to your latest Twitter update; both the status and Twitter fulfill the same concept of microblogging, but Twitter is a better-designed service (though oft-plagued with reliability issues). One last cool Twitter feature is that <strong>any developer</strong> can connect to the software using its <a href="http://en.wikipedia.org/wiki/API" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/API');">API</a> to create cool new services and software such as the Facebook app and <a href="http://twittersearch.flaptor.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://twittersearch.flaptor.com/');">their own</a> Twitter search engine. Twitter is a perfect example of a Web 2.0 site.</p>
<h3>Texting</h3>
<p>Cellphone texting was and is hugely useful during disasters such as Ike. I used it pre- and post-storm to first wish everyone safety, and then after to check in with people. Cellphone companies recommend that during disasters, it is best to use text messages instead of voice to communicate, because otherwise the cell towers become overloaded (It’s not as much of a problem now, a few days after the storm, but I still have been getting more “All circuits are busy, try again later” messages when I try to make calls than I ever have before). AT&amp;T (and the other providers as well I’m sure) sent out public health and safety messages on behalf of government agencies such as the <a href="http://www.cdc.gov" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.cdc.gov');">CDC</a> (Centers for Disease Control and Prevention) reminding people to not use generators indoors and to drink bottled water only. Texting was extremely useful to everyone for person-to-person communication, and with its market penetration, texting really makes the mass dissemination of urgent information in a crisis easier than ever before in history.</p>
<p>A random note: What I found especially intriguing was how for the first 8 hours after the storm, I had better cell service in my house than for the next few days. I think some cell tower sites have backup power supplies or generators that last for the length of most normal power outages, but obviously this storm pushed the backups far beyond the time they would be needed for normally.</p>
<h3>Websites &amp; Blogs</h3>
<p>For anyone with mobile Internet access, the hands-down, easiest way to stay informed was through the websites of major news channels here in Houston<sup>1</sup>. All news sites had mobile versions of their websites set up, and some even offer text message alerts to your phone. Many news channels set up oft-updated (and easily updatable for them) <a href="http://www.beloblog.com/KHOU_hurricane" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.beloblog.com/KHOU_hurricane');">blogs</a>.</p>
<p>1: For more on why the Internet is best, see the “Evaluation” section of my Media Portfolio assignment on <a href="http://adamfeldman.wikispaces.com/HurricaneIkeNewsCoverage" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://adamfeldman.wikispaces.com/HurricaneIkeNewsCoverage');">Hurricane Ike news coverage</a></p>
<h3>Automated Phone Systems</h3>
<p>As all Emery High School students know, automated phone systems are a useful way to notify a large group of people in an emergency about events such as school closures. The EWS website was updated throughout the storm as well. What is notable about phone systems is how today, <strong>anyone</strong> can set up one of these systems using <a href="http://en.wikipedia.org/wiki/VoIP" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/VoIP');">VoIP</a> (Voice over Internet Protocol) and <a href="http://en.wikipedia.org/wiki/Asterisk_(PBX)" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Asterisk_(PBX)');">Asterisk</a> (open-source telephony software). <em>Telephony services which used to be the purview of the telephone companies only can now be done by <strong>anyone</strong> on the cheap</em>. Wow.</p>
<h3>Email and other services</h3>
<p>Email played a huge role for emergency services in this disaster. Most communications within the emergency management offices, and between themselves and other offices and the media, were done using email. They most likely were not using public Internet access lines, or switched over to as the city lost power, special emergency wireless links. Email is most convenient for the quick dissemination of both time- and non-time-senstive communiques.</p>
<p>One other notable media service was the simulcast of many TV stations’ coverage on FM and AM radio stations. One of the more low-tech, but most reliable, ways to stay informed. Also relevant to a discussion of radio’s role is my aforementioned media portfolio assignment.</p>
<h2>Looking Ahead</h2>
<p>There will be more disasters. According to many seismologists, California is past due for a large earthquake, and we all know that the hurricanes are relentless. For the next times, for everyone in the country, people need to be more aware of the multitudes of various resources available to them. News stations need to inform viewers in high risk areas; <strong>everyone</strong> needs to be informed and prepared.</p>
<p>With knowledge of the myriad methods of communication, we can sit secure on the eve of a storm knowing we won’t be subjected to one of our greatest fears: not knowing what’s going on.</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=TMTOWTDI&amp;siteurl=http%3A%2F%2Fblog.pamiproductions.com%2F&amp;linkname=Browsers%20%26%23038%3B%20the%20Web%2C%20Part%203%3A%20The%20Ties%20that%20Bind&amp;linkurl=http%3A%2F%2Fblog.pamiproductions.com%2F2008%2F09%2Fbrowsers-and-the-web-part-3-ties-that-bind%2F" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.addtoany.com/share_save?sitename=TMTOWTDI&amp;siteurl=http%3A%2F%2Fblog.pamiproductions.com%2F&amp;linkname=Browsers%20%26%23038%3B%20the%20Web%2C%20Part%203%3A%20The%20Ties%20that%20Bind&amp;linkurl=http%3A%2F%2Fblog.pamiproductions.com%2F2008%2F09%2Fbrowsers-and-the-web-part-3-ties-that-bind%2F');"><img src="http://blog.pamiproductions.com/wp-content/plugins/add-to-any/share_save_120_16.gif" width="120" height="16" alt="Share/Save/Bookmark"/></a>

	</p><p>From Adam Feldman's blog, <a href="http://blog.pamiproductions.com" >blog.pamiproductions.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.pamiproductions.com/2008/09/browsers-and-the-web-part-3-ties-that-bind/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Browsers &amp; the Web, Part 2, or How I Learned to Stop Worrying and Love Collaboration</title>
		<link>http://blog.pamiproductions.com/2008/09/browsers-and-the-web-part-2-collaboration-tools/</link>
		<comments>http://blog.pamiproductions.com/2008/09/browsers-and-the-web-part-2-collaboration-tools/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 02:32:52 +0000</pubDate>
		<dc:creator>Adam Feldman</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[EWS New Media Class]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[digg]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google docs]]></category>
		<category><![CDATA[markdown]]></category>
		<category><![CDATA[reddit]]></category>
		<category><![CDATA[social web]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://ewsnewmedia.wordpress.com/?p=166</guid>
		<description><![CDATA[Please comment at my blog.

This post is part of a series I am writing for a class on New Media. Some technical explanations may seem unneeded or lengthy, but I am writing for the benefit of a very intelligent but less technical audience.

Sorry for the random Dr. Strangelove reference, I just love it too much. [...]]]></description>
			<content:encoded><![CDATA[<p>Please comment at <strong><a href="http://ewsnewmedia.wordpress.com/?p=166" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://ewsnewmedia.wordpress.com/?p=166');">my blog</a></strong>.</p>
<ul>
<li>This post is part of a series I am writing for a <a href="http://ewsnewmedia.wikispaces.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://ewsnewmedia.wikispaces.com');">class</a> on <a href="http://en.wikipedia.org/wiki/New_media" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/New_media');">New Media</a>. Some technical explanations may seem unneeded or lengthy, but I am writing for the benefit of a very intelligent but less technical audience.</li>
</ul>
<p>Sorry for the random Dr. Strangelove reference, I just love it too much. Before we get started, here’s a video that will blow your mind &#8211; <a href="http://www.youtube.com/watch?v=AuK2A1ZqoWs" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.youtube.com/watch?v=AuK2A1ZqoWs');">Flobot’s handlebars</a> (on YouTube)! Watch it 2-3 times and look at all of the symbols and the storyline deeply.<br />
<br />
Beyond the sites many of us use daily &#8211; YouTube, Google, some of us Gmail, Yahoo! Mail or Fantasy Sports, and maybe CNN, there are a ton of awesome and useful tools out there on the <a href="http://en.wikipedia.org/wiki/Interweb" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Interweb');">Interweb</a>. I will catalogue a number of my favorite tools on the net for you and talk about the significance of what I consider the coolest part of <a href="http://en.wikipedia.org/wiki/Web_2.0" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Web_2.0');">Web 2.0</a>: collaboration!</p>
<hr />
<h3>Google docs</h3>
<p><a href="http://docs.google.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://docs.google.com');">Google Docs</a> is a powerful tool for creating and editing text documents, spreadsheets, and slideshow presentations (“Powerpoints”) collaboratively. In this case, collaboratively means that you can edit a document at the same time 1, 2, 3, 5, or 20 other people are! I love using Google Docs for any class project where I need to write something with other people. Of course the web-based document editor doesn’t have anywhere near the power of a computer program on your desktop, it is suitable for 90% or more of a student’s work. The presentation creation features don’t allow for anything near as cool as Keynote does on the Mac transition-wise, but its great for showing a presentation in a pinch like we did in class yesterday. The spreadsheet feature is surprisingly awesome because not only does it support some in-cell functions, but you can even use it to create forms (like a grade survey on where to do prom, or a signup form for who will bring what food to a class party). Other collaborative web-based word processing suites exist. An especially good one with some interesting business tools is <a href="zoho.com">Zoho</a>. </p>
<h3>Basecamp, Google Sites, Wikispaces</h3>
<p>If you need to collaborate on a big (or small) project involving a lot of (or just a few! )documents or todo’s, there are many options on the web. I can highly recommend <a href="http://www.basecamphq.com/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.basecamphq.com/');">Basecamp</a>  and <a href="http://sites.google.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://sites.google.com');">Google Sites</a>. So far, <a href="http://wikispaces.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://wikispaces.com');">Wikispaces</a> seems like another powerful and well-built tool as well. Each is suited towards slightly different styles of working and collaborating. Experiment and see which you think will work the best for you. The order of them in the title is a rough spectrum from most to least structured. </p>
<h3>digg, reddit, and delicious</h3>
<p>I purposely did not capitalize the names because that is how they are written in the sites’ respective logos. These are each examples of quintessential Web 2.0 websites, because they exemplify <a href="http://en.wikipedia.org/wiki/Social_web" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/Social_web');">the social web</a>. These sites depend on their communities of users to define the content on the site. <a href="http://digg.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://digg.com');">digg</a> and <a href="http://reddit.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://reddit.com');">reddit</a> are social news sites where the users submit links to news articles, pictures, and anything else and then vote for which links they like the best. The articles which achieve the most votes the fastest<sup>1</sup> make it to the front page – the users control the content on the site! delicious (officially formerly del.icio.us) is a social bookmarking website where users submit links and tag them. Many users use the site to find articles on particular topics, to find “hot” news articles, or just to organize their own bookmarks better using the tagging features.<br />
1: A highly simplified explanation, they use some complicated alogirthms to prevent gaming of the system. </p>
<h2>So why should I care?</h2>
<p>You should care because all of these tools will make your life easier at one point or another. You won’t have to drive to a friends house to do a project, or email a document back and forth 30 bajillion times to get something done. You can better manage your college application process, or just finish a group research project with less stress. You can utilize the bored masses on the Internet to find and identify the funniest and best content on the web for you.<br />
<br />
All of these tools, and more out there (see the links at the end of this post) allow for totally new methods for the creation, management, discovery, organization, and storage of media. Check them out, they really do make a difference.</p>
<hr />
<hr />
<p>A few of my other favorite tools on the web include <a href="http://news.google.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://news.google.com');">Google News</a>, <a href="http://facebook.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://facebook.com');">Facebook</a> (of course), and <a href="http://google.com/reader/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://google.com/reader/');">Google Reader</a>.</p>
<p>Major shoutouts to <a href="http://daringfireball.net/projects/markdown/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://daringfireball.net/projects/markdown/');">Markdown</a> for making the formatting for this easy, and <a href="http://attacklab.net/showdown/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://attacklab.net/showdown/');">Showdown</a> for turning my Markdown into HTML for Wordpress.</p>
<p><strong>Author’s note:</strong> For those of you who are wondering why I combined Web 1.5/2.0 web-based tools and Web 2.0 “social” collaboration in one blog post on seemingly somewhat unrelated sites, it is because everything here does fit the <em>definition</em> of collaborative tool. I do recognize that I might have muddied the waters a bit, but my goal is simply to introduce people to the breadth of the best-of-show tools on the web. </p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=TMTOWTDI&amp;siteurl=http%3A%2F%2Fblog.pamiproductions.com%2F&amp;linkname=Browsers%20%26%2338%3B%20the%20Web%2C%20Part%202%2C%20or%20How%20I%20Learned%20to%20Stop%20Worrying%20and%20Love%20Collaboration&amp;linkurl=http%3A%2F%2Fblog.pamiproductions.com%2F2008%2F09%2Fbrowsers-and-the-web-part-2-collaboration-tools%2F" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.addtoany.com/share_save?sitename=TMTOWTDI&amp;siteurl=http%3A%2F%2Fblog.pamiproductions.com%2F&amp;linkname=Browsers%20%26%2338%3B%20the%20Web%2C%20Part%202%2C%20or%20How%20I%20Learned%20to%20Stop%20Worrying%20and%20Love%20Collaboration&amp;linkurl=http%3A%2F%2Fblog.pamiproductions.com%2F2008%2F09%2Fbrowsers-and-the-web-part-2-collaboration-tools%2F');"><img src="http://blog.pamiproductions.com/wp-content/plugins/add-to-any/share_save_120_16.gif" width="120" height="16" alt="Share/Save/Bookmark"/></a>

	</p><p>From Adam Feldman's blog, <a href="http://blog.pamiproductions.com" >blog.pamiproductions.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.pamiproductions.com/2008/09/browsers-and-the-web-part-2-collaboration-tools/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Browsers, Part 1: Google Chrome: Why the hype?</title>
		<link>http://blog.pamiproductions.com/2008/09/browsers-part-1-chrome/</link>
		<comments>http://blog.pamiproductions.com/2008/09/browsers-part-1-chrome/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 04:52:34 +0000</pubDate>
		<dc:creator>Adam Feldman</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[EWS New Media Class]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[browser wars]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[google chrome]]></category>
		<category><![CDATA[netscape]]></category>
		<category><![CDATA[opera]]></category>
		<category><![CDATA[safari]]></category>

		<guid isPermaLink="false">http://ewsnewmedia.wordpress.com/?p=101</guid>
		<description><![CDATA[Please comment at my blog.

This post is part of a series I am writing for a class on New Media. Some technical explanations may seem unneeded or lengthy, but I am writing for the benefit of a very intelligent but less technical audience.

This will be the first post in a series about web browsers, and [...]]]></description>
			<content:encoded><![CDATA[<p>Please comment at <strong><a href="http://ewsnewmedia.wordpress.com/?p=101" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://ewsnewmedia.wordpress.com/?p=101');">my blog</a></strong>.</p>
<ul>
<li>This post is part of a series I am writing for a <a href="http://ewsnewmedia.wikispaces.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://ewsnewmedia.wikispaces.com');">class</a> on <a href="http://en.wikipedia.org/wiki/New_media" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://en.wikipedia.org/wiki/New_media');">New Media</a>. Some technical explanations may seem unneeded or lengthy, but I am writing for the benefit of a very intelligent but less technical audience.</li>
</ul>
<p>This will be the first post in a series about web browsers, and will dabble in history and include some usage tips and fun stuff. First up is the new kid on the block, Chrome. </p>
<p>For anyone who regularly follows tech news on the web, it&#8217;s been impossible to miss the madness over the (premature) announcement of Google&#8217;s Chrome web browser. I’m not going to repeat any of the facts here (for those, see any of the links at the end of this post). </p>
<p>What I want to discuss, in compact form, is why this browser is so significant, and where it fits into the plethora of browser options that already exist. Firstly, here is a list of the major browsers for the majority who is unfamiliar with most of these beyond Internet Explorer, Firefox and Safari:</p>
<p></p>
<table border="2">
<tbody>
<tr>
<th>Release Date
      </th>
<th>
Name
      </th>
<th>
Price
      </th>
<th>
Maker
      </th>
<th>
HTML Rendering Engine
      </th>
<th>
Notes
      </th>
</tr>
<tr>
<td>1995</td>
<td>Internet Explorer</td>
<td>Bundled with Windows</td>
<td>Microsoft</td>
<td>Proprietary</td>
<td>Web developers hate it<br />
because it&#8217;s generally non-standards compatible (a topic for another<br />
post)</td>
</tr>
<tr>
<td>
1996</td>
<td>Opera</td>
<td>Ad-supported/Ad-free version can be purchased</td>
<td>Opera Software</td>
<td>Proprietary</td>
<td>Opera has tons of features but has never taken off in<br />
popularity </td>
</tr>
<tr>
<td>1996</td>
<td>Konqueror</td>
<td>Free/Open-source</td>
<td>KDE Project
      </td>
<td>Webkit</td>
<td>Default browser of the KDE windowing environment. Apple<br />
based its browser off of the core of Konqueror</td>
</tr>
<tr>
<td>2003</td>
<td>Safari</td>
<td>Bundled with Mac OSX</td>
<td>Apple Computer</td>
<td>Webkit</td>
<td>Until Apple made its own browser, they bundled Internet<br />
Explorer for Mac</td>
</tr>
<tr>
<td>2004 (Its father Netscape was 1994)</td>
<td>Firefox</td>
<td>Free/Open-source</td>
<td>Mozilla Foundation</td>
<td>Gecko</td>
<td>Modern-day descendant of Netscape. Major threat to the<br />
dominance of Internet Explorer</td>
</tr>
<tr>
<td>First Beta in mid-2008</td>
<td>Chrome</td>
<td>Free/Partially open-source</td>
<td>Google</td>
<td>Webkit</td>
<td>A&nbsp;totally new browser written from the ground<br />
up in the modern day<br />
(unlike all of the browsers that have deep roots in the late<br />
&lsquo;90s</td>
</tr>
</tbody>
</table>
<p>Basically, Chrome is a web browser designed for the newest generation of web technologies and the newest websites. It is designed to be speedy and to ensure that the browser itself does not interfere with the user’s browsing.</p>
<p>Simply interesting is how the other features announced for Chrome so far are ideas pioneered by other browsers. From the Opera Browser, comes the “radical” tab and address bar locations and the home tab “speed-dial feature.” From Firefox  comes the “awesome bar.” Also, on the more technical side, both the Chrome and Firefox teams have put huge amounts of work into writing revolutionary Javascript engines for their products (V8 and Spidermonkey). This work is what brings you increased performance when using most modern websites such as Gmail and Facebook. The Google Team does admit that their aim is to take the best of the browsing world and combine into one über-product. </p>
<p>There is much more to be said, but for now, here are a few good articles on Chrome:</p>
<ul>
<li>The <a href="http://books.google.com/books?id=8UsqHohwwVYC&amp;printsec=frontcover" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://books.google.com/books?id=8UsqHohwwVYC&amp;printsec=frontcover');">comic book</a> used to introduce Chrome</li>
<li>On <a href="http://www.wired.com/techbiz/it/magazine/16-10/mf_chrome?currentPage=all" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.wired.com/techbiz/it/magazine/16-10/mf_chrome?currentPage=all');">Wired</a></li>
<li>Chrome can be downloaded <a href="http://www.google.com/chrome" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.google.com/chrome');">here</a></li>
<li>On the <a href="http://www.theregister.co.uk/2008/09/04/google_retracts_lousy_chrome_eula_terms/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.theregister.co.uk/2008/09/04/google_retracts_lousy_chrome_eula_terms/');">averted legal crisis</a></li>
<li><a href="http://tech.slashdot.org/article.pl?sid=08/09/02/1637216&amp;from=rss" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://tech.slashdot.org/article.pl?sid=08/09/02/1637216&amp;from=rss');">Mozilla’s view</a> on Chrome (via slashdot)</li>
<li><a href="http://www.theregister.co.uk/2008/09/03/opera_boss_on_chrome/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.theregister.co.uk/2008/09/03/opera_boss_on_chrome/');">Opera’s take</a> on Chrome</li>
<li>Chrome <a href="http://www.bestrank.com/blog/is-gooogle-chrome-worth-all-the-hype-186/" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.bestrank.com/blog/is-gooogle-chrome-worth-all-the-hype-186/');">Pros and Cons</a></li>
</ul>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=TMTOWTDI&amp;siteurl=http%3A%2F%2Fblog.pamiproductions.com%2F&amp;linkname=Browsers%2C%20Part%201%3A%20Google%20Chrome%3A%20Why%20the%20hype%3F&amp;linkurl=http%3A%2F%2Fblog.pamiproductions.com%2F2008%2F09%2Fbrowsers-part-1-chrome%2F" onclick="javascript:pageTracker._trackPageview('/outbound/article/http://www.addtoany.com/share_save?sitename=TMTOWTDI&amp;siteurl=http%3A%2F%2Fblog.pamiproductions.com%2F&amp;linkname=Browsers%2C%20Part%201%3A%20Google%20Chrome%3A%20Why%20the%20hype%3F&amp;linkurl=http%3A%2F%2Fblog.pamiproductions.com%2F2008%2F09%2Fbrowsers-part-1-chrome%2F');"><img src="http://blog.pamiproductions.com/wp-content/plugins/add-to-any/share_save_120_16.gif" width="120" height="16" alt="Share/Save/Bookmark"/></a>

	</p><p>From Adam Feldman's blog, <a href="http://blog.pamiproductions.com" >blog.pamiproductions.com</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.pamiproductions.com/2008/09/browsers-part-1-chrome/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
