<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>web-standards &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/web-standards/</link>
	<description>Feed of posts on WordPress.com tagged "web-standards"</description>
	<pubDate>Tue, 24 Nov 2009 16:33:22 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Testing Adobe AIR applications with QUnit]]></title>
<link>http://jaybyjayfresh.com/2009/11/04/testing-adobe-air-applications-with-qunit/</link>
<pubDate>Wed, 04 Nov 2009 17:29:17 +0000</pubDate>
<dc:creator>Jonathan Lister</dc:creator>
<guid>http://jaybyjayfresh.com/2009/11/04/testing-adobe-air-applications-with-qunit/</guid>
<description><![CDATA[I&#8217;d like to say I always write tests before I write any JavaScript code&#8230; Those times whe]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I&#8217;d like to say I always write tests before I write any JavaScript code&#8230; Those times when I do write tests, I use the <a title="QUnit documentation on jQuery site" href="http://docs.jquery.com/QUnit" target="_blank">QUnit</a> framework, which is used to test <a title="The write less, do more JavaScript library" href="http://jquery.com" target="_blank">jQuery</a>, so pretty well-tested itself.</p>
<p>I&#8217;ve recently been putting together an <a title="Adobe's toolkit for Rich Internet Applications in the browser and on the desktop" href="http://www.adobe.com/products/air" target="_blank">Adobe AIR</a> application using HTML, CSS and JavaScript (aka <a title="The Web Standards Project" href="http://www.webstandards.org/" target="_blank">Web Standards</a>), which is very empowering and everything, but turned out to be a little tricky to write tests for. All the interesting stuff I wanted to do through AIR&#8217;s <code>window.runtime</code> object, such as opening native windows and messing with dock icons, is missing from the browser if you&#8217;re trying to test the JavaScript components in isolation. The ideal would be able to run your QUnit tests within the AIR runtime itself.</p>
<p>Fortunately, it&#8217;s straightforward to create a test app that wraps the QUnit test runner in the AIR runtime and exercises your code. Here&#8217;s how I got going:</p>
<h2>Setting up the file structure</h2>
<p>The folder structure I am using for the AIR app is like this:</p>
<pre class="brush: xml;">
/myApp
   myApp.html
   myApp-app.xml
   /js
      myApp.js
   /css
      styles.css
</pre>
<p>The <code>myApp-app.xml</code> file is the &#8220;application descriptor&#8221; that AIR uses to create the <code>.air</code> package when you build the app.</p>
<p>I added two folders at the same level as <code>/myApp</code>, to contain the test framework and test code; the complete structure looks like:</p>
<pre class="brush: xml;">
/myApp
   myApp.html
   myApp-app.xml
   /js
      myApp.js
      AIRAliases.js
      jquery-1.3.2.min.js
   /css
      styles.css

/myAppTests
   runner.html
   tests.js
   myAppTests-app.xml

/qunit
   testrunner.js
   testsuite.css
</pre>
<h2>Configuring the test app</h2>
<p>The application descriptor for myAppTests is not very different from the descriptor for myApp; here they are:</p>
<pre class="brush: xml;">
myApp-app.xml:
&#60;?xml version=&#34;1.0&#34; encoding=&#34;UTF-8&#34;?&#62;
&#60;application xmlns=&#34;http://ns.adobe.com/air/application/1.5&#34;&#62;
    &#60;id&#62;examples.html.myApp&#60;/id&#62;
    &#60;version&#62;0.1&#60;/version&#62;
    &#60;filename&#62;myApp&#60;/filename&#62;
    &#60;initialWindow&#62;
        &#60;content&#62;myApp.html&#60;/content&#62;
        &#60;visible&#62;true&#60;/visible&#62;
        &#60;width&#62;400&#60;/width&#62;
        &#60;height&#62;800&#60;/height&#62;
    &#60;/initialWindow&#62;
&#60;/application&#62;

myAppTests-app.xml:
&#60;?xml version=&#34;1.0&#34; encoding=&#34;UTF-8&#34;?&#62;
&#60;application xmlns=&#34;http://ns.adobe.com/air/application/1.5&#34;&#62;
    &#60;id&#62;examples.html.myAppTests&#60;/id&#62;
    &#60;version&#62;0.1&#60;/version&#62;
    &#60;filename&#62;myAppTests&#60;/filename&#62;
    &#60;initialWindow&#62;
        &#60;content&#62;myAppTests/runner.html&#60;/content&#62;
        &#60;visible&#62;true&#60;/visible&#62;
        &#60;width&#62;400&#60;/width&#62;
        &#60;height&#62;800&#60;/height&#62;
    &#60;/initialWindow&#62;
&#60;/application&#62;
</pre>
<p>The main structural difference is that <code>myApp-app.xml</code> has an <code>initialWindow.content</code> property set to <code>myApp.html</code>, whereas <code>myAppTests-app.xml</code> refers to the test runner from a directory above: <code>myAppTests/runner.html</code>. This is needed because the test app needs to have its working directory set to the top-level of the file structure, otherwise <code>runner.html</code> won&#8217;t be able to get at all the files it needs in other directories (more below).</p>
<h2>Putting the correct files in runner.html</h2>
<p>Here&#8217;s a <code>runner.html</code> that works with the folder structure described above:</p>
<pre class="brush: xml;">&#60;!DOCTYPE HTML PUBLIC &#34;-//W3C//DTD HTML 4.01//EN&#34; &#34;http://www.w3.org/TR/html4/strict.dtd&#34;&#62;
&#60;html lang=&#34;en&#34;&#62;
	&#60;head&#62;
		&#60;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=UTF-8&#34;&#62;
		&#60;title&#62;Test Suite&#60;/title&#62;
		&#60;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; href=&#34;../qunit/testsuite.css&#34;&#62;
		&#60;script src=&#34;../myApp/js/AIRAliases.js&#34; type=&#34;text/javascript&#34;&#62;&#60;/script&#62;
		&#60;script src=&#34;../myApp/js/jquery-1.3.2.min.js&#34; type=&#34;text/javascript&#34;&#62;&#60;/script&#62;
		&#60;script src=&#34;../qunit/testrunner.js&#34; type=&#34;text/javascript&#34;&#62;&#60;/script&#62;
		&#60;script src=&#34;../myApp/js/myApp.js&#34;&#62;&#60;/script&#62;
		&#60;script src=&#34;tests.js&#34; type=&#34;text/javascript&#34;&#62;&#60;/script&#62;
	&#60;/head&#62;
	&#60;body&#62;
		&#60;h2 id=&#34;banner&#34;&#62;&#60;/h2&#62;
		&#60;h2 id=&#34;userAgent&#34;&#62;&#60;/h2&#62;
		&#60;ol id=&#34;tests&#34;&#62;&#60;/ol&#62;
		&#60;div id=&#34;main&#34;&#62;&#60;/div&#62;
	&#60;/body&#62;
&#60;/html&#62;</pre>
<h2>Running the test suite in debug mode</h2>
<p>The easiest way to run the test suite is to use the built-in Adobe Debugger, which lets you test your app without having to build it into an AIR package:</p>
<pre class="brush: plain;">
adl myAppTests/myAppTests-app.xml .
</pre>
<p>Don&#8217;t forget the &#8216;.&#8217; character on the end &#8211; this tells the debugger to run with the top-level directory as the working directory &#8211; without it, the default is the same directory as XML file.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[my web standards]]></title>
<link>http://emileexanne.wordpress.com/2009/11/04/my-web-standards/</link>
<pubDate>Wed, 04 Nov 2009 16:28:23 +0000</pubDate>
<dc:creator>emileexanne</dc:creator>
<guid>http://emileexanne.wordpress.com/2009/11/04/my-web-standards/</guid>
<description><![CDATA[to summarize the reading, web standards are how the content is separate from the design on the websi]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>to summarize the reading, web standards are how the content is separate from the design on the website. the example I have become farmiliar with is content being written in XHTML/HTML and beautified with a CSS style sheet.<br />
I think web standards are extremely important in web development. for instance let&#8217;s say a large business has a website with hundreds of pages and decides that a new site design is necessary. If web standards aren&#8217;t being used,  each page will have to be changed manually. this would cost the money an astounding amount of money to pay a web design company, or even their own employees, to change the website. by keeping the content and design separate, the business could use a CSS style sheet and change the entire website in one place. the implications of this are that companies can save thousands of dollars, and the design process is immensely simplified.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Website Design]]></title>
<link>http://telcomservice.wordpress.com/2009/10/30/website-design/</link>
<pubDate>Sat, 31 Oct 2009 00:38:23 +0000</pubDate>
<dc:creator>popularone</dc:creator>
<guid>http://telcomservice.wordpress.com/2009/10/30/website-design/</guid>
<description><![CDATA[Website and email addresses at a great price We can get you setup and running very quickly! We can c]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong><span style="font-size:large;color:#008000;font-family:Times New Roman;">Website and email addresses at a great price</span></p>
<p></strong></p>
<p>We can get you setup and running very quickly!</p>
<p>We can create a professional website with 5 pages and email addresses.</p>
<p>All work of hosting and maintaining your website will be completed professionally.</p>
<p>Setup for a one time low fee of $375</p>
<p>We specialize in the following:</p>
<p>Beautiful Custom Graphics; Paypal Integration; Site Renovation; Payment Processing</p>
<p>New Website Creation; Quality Hosting; Calendars/Events; Mailing Lists</p>
<p>MP3 Audio Downloads; Podcast Download; Facebook Placement; Help Desks</p>
<p>Photo Optimizing; DVD Creation; Forum and Bulletin Board; and More!</p>
<p>Nationwide or local ad campaigns also available</p>
<p>We gladly provide free consultations</p>
<p>We can be reached by phone or email</p>
<p><a href="http://tsgnw.com/webdesign" target="_blank"><img src="http://www.qsnw.com/documents/tsgsales.gif" border="0" alt="" /></a></p>
<p class="MsoNormal" style="margin:0;"><span style="color:#fffffc;"><span style="font-size:xx-small;">promote, web, website, Issaquah, Everett, Mercer Island, Lynnwood, Mukilteo, Mill Creek, County, Pierce, Olympia, Thurston, professional and courteous service, promotion, advertisement, advertisements, internet, professional, design, Bellevue, Seattle, Sammamish, Snohomish, Auburn, webhosting, photo, photos, web hosting, domain registration, web design, graphic design,Html, Css, Xhtml, W3c, Flash, Logo Design, beautiful graphics, artist quality designs, professional service, Brochure Design, Web Standards, Standards based design, Web Management, Website Updates, re-design, web 2.0, Flash animation, 2-D and 3-D animation, Bothell, Kenmore, Redmond, Kirkland, Shoreline, Woodinville, Tacoma, Renton, Puyallup, Maple Valley, Kent, Federal Way, market, marketing, South, webhosts, site, e-mail, small, business, domain, pictures, domains, images, advertising, maintain, maintenance, computer, services, page, pages, link, links, packages, low, videos, email, Craigslist, Puget Sound, King, Burien, html, proprietory, video, advertise, hosting, price, priced, economy, low cost</span></span>
<p>&#160;</p></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Great Websites]]></title>
<link>http://popularone.wordpress.com/2009/10/30/great-websites/</link>
<pubDate>Fri, 30 Oct 2009 21:36:54 +0000</pubDate>
<dc:creator>popularone</dc:creator>
<guid>http://popularone.wordpress.com/2009/10/30/great-websites/</guid>
<description><![CDATA[Ad campaign also available &nbsp; We&#8217;ll do all the work! The website with 5 pages and emails w]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div><strong><span style="font-size:large;color:#008000;font-family:Times New Roman;">Ad campaign also available</span></strong></div>
<p><strong>
<p>&#160;</p>
<p></strong>We&#8217;ll do all the work!</p>
<p>The website with 5 pages and emails will be completed for your small business</p>
<p>Take the worries and stress out of maintaing a website with our help.</p>
<p>One time setup fee of $375</p>
<p>Some of our services include:</p>
<p>Ecommerce/Shopping Carts; Consulting; Google Checkout Integration</p>
<p>Banner Ads; Live Chat; YouTube Placement; Site Map Generation; Module Installation</p>
<p>WIKI; Branding and Logos; E-mail Services; Paypal Integration; Image Galleries</p>
<p>Various advertising options on the web</p>
<p>We&#8217;re glad to provide you with a free consultation</p>
<p>Contact us for further details</p>
<p><img src="http://www.qsnw.com/documents/tsgsales.gif" border="0" alt="" /></p>
<p class="MsoNormal" style="margin:0;"><span style="color:#fffffc;"><span style="font-size:xx-small;">design, professional,html, proprietory, video, advertise, hosting, price, priced, economy, low cost, photo, photos, web, website, Issaquah, Everett, Mercer Island, Lynnwood, Mukilteo, Mill Creek, Bothell, Kenmore, Redmond, Kirkland, Shoreline, Woodinville, Tacoma, Renton, market, marketing, Puyallup, Maple Valley, Kent, Federal Way, South, County, Pierce, Olympia, Thurston, Puget Sound, King, Burien, Bellevue, Seattle, Sammamish, Snohomish, Auburn, webhosting, web hosting, domain registration, web design, graphic design, Html, outstanding results in professional graphics, great SEO, lower prices, quality and timely work, Css, Xhtml, W3c, Flash, Logo Design, Brochure Design, Web Standards, Standards based design, Web Management, Website Updates, re-design, web 2.0, Flash animation, 2-D and 3-D animation, webhosts, site, e-mail, small business, domain, pictures, domains, images, advertising, maintain, maintenance, computer, services, page, pages, link, links, packages, low, videos, email, Craigslist, promote, promotion, advertisement, advertisements, internet</span></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[5 extremely basic things Internet Explorer is missing]]></title>
<link>http://websitegraveyard.wordpress.com/2009/10/28/5-extremely-basic-things-internet-explorer-is-missing/</link>
<pubDate>Wed, 28 Oct 2009 20:29:11 +0000</pubDate>
<dc:creator>Spen B</dc:creator>
<guid>http://websitegraveyard.wordpress.com/2009/10/28/5-extremely-basic-things-internet-explorer-is-missing/</guid>
<description><![CDATA[It really is sad how primitive Internet Explorer still is, compared to the other browsers. From its ]]></description>
<content:encoded><![CDATA[It really is sad how primitive Internet Explorer still is, compared to the other browsers. From its ]]></content:encoded>
</item>
<item>
<title><![CDATA[Effective Website Design]]></title>
<link>http://popularone.wordpress.com/2009/10/27/effective-website-design/</link>
<pubDate>Wed, 28 Oct 2009 03:35:39 +0000</pubDate>
<dc:creator>popularone</dc:creator>
<guid>http://popularone.wordpress.com/2009/10/27/effective-website-design/</guid>
<description><![CDATA[Ad campaign also available &nbsp; We&#8217;ll do all the work! Setup a great 5 page website with pro]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div><strong><span style="font-size:large;color:#008000;font-family:Times New Roman;">Ad campaign also available</span></strong></div>
<p><strong>
<p>&#160;</p>
<p></strong></p>
<p>We&#8217;ll do all the work!</p>
<p>Setup a great 5 page website with professional emails for your company.</p>
<p>Highest quality hosting and maintaining for your small business.</p>
<p>One time setup fee of $375 plus low monthly hosting</p>
<p>Just to name a few services, they are:</p>
<p>Payment Processing; Site Renovation; New Website Creation and Hosting</p>
<p>DVD Creation; SEO; YouTube Placement; Customer Feedback/Testimonials</p>
<p>We&#8217;re happy to provide consultations free of charge</p>
<p>Contact us by phone or Email</p>
<p><img src="http://www.qsnw.com/documents/tsgsales.gif" border="0" alt="" /></a></p>
<p class="MsoNormal" style="margin:0;"><span style="color:#fffffc;"><span style="font-size:xx-small;">maintain, Issaquah, Everett, Mercer Island, Lynnwood, Mukilteo, Mill Creek, Bothell, Kenmore, Redmond, Kirkland, Shoreline, Woodinville, Tacoma, Renton, Puyallup, Maple Valley, Kent, Federal Way, South, County, Pierce, Olympia, Thurston, Puget Sound, King, Burien, web hosting, market, marketing, domain registration, web design, graphic design,Html, Css, Xhtml, W3c, Flash, Logo Design, Brochure Design, Web Standards, Standards based design, Web Management, Website Updates, re-design, web 2.0, Flash animation, 2-D and 3-D animation, Bellevue, Seattle, Sammamish, Snohomish, Auburn, maintenance, design, professional,html, proprietory, video, videos, email, Craigslist, promote, promotion, advertise, hosting, web, website, webhosting, webhosts, site, e-mail, small business, domain, pictures, domains, images, advertising, advertisement, advertisements, internet, computer, services, page, pages, link, links, packages, low, price, priced, economy, low cost, photo, photos</span></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Lower Priced Flash Websites]]></title>
<link>http://telcomservice.wordpress.com/2009/10/27/lower-priced-flash-websites/</link>
<pubDate>Wed, 28 Oct 2009 00:00:04 +0000</pubDate>
<dc:creator>popularone</dc:creator>
<guid>http://telcomservice.wordpress.com/2009/10/27/lower-priced-flash-websites/</guid>
<description><![CDATA[Professional web designer at your service We can get you setup and running very quickly! The website]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong><span style="font-size:large;color:#008000;font-family:Times New Roman;">Professional web designer at your service</span></p>
<p></strong></p>
<p>We can get you setup and running very quickly!</p>
<p>The website with 5 pages and emails will be completed for your small business</p>
<p>Take the worries and stress out of maintaing a website with our help.</p>
<p>We&#8217;ll set it up for a one time fee; low prices starting at $375</p>
<p>We can also:</p>
<p>Build creative ad designs and market your business online</p>
<p>Services include these and others:</p>
<p>Beautiful Custom Graphics; Podcast Download; Facebook Placement; WIKI</p>
<p>Video Editing; Mailing Lists; Banner Ads; Streaming Video; Beautiful Custom Graphics</p>
<p>We&#8217;re glad to provide you with a free consultation</p>
<p>Contact us for further details</p>
<p><a href="http://tsgnw.com/webdesign" target="_blank"><img src="http://www.qsnw.com/documents/tsgsales.gif" border="0" alt="" /></a></p>
<p class="MsoNormal" style="margin:0;"><span style="color:#fffffc;"><span style="font-size:xx-small;">Bothell, Kenmore, Redmond, Kirkland, Shoreline, Woodinville, Tacoma, Renton, Puyallup, Maple Valley, Kent, Federal Way, South, design, Bellevue, Seattle, web hosting, domain registration, web design, graphic design,Html, Css, Xhtml, W3c, Flash, Logo Design, Brochure Design, Web Standards, Standards based design, Web Management, Website Updates, re-design, web 2.0, Flash animation, 2-D and 3-D animation, Sammamish, beautiful designs to advertise your company, friendly service, Snohomish, Auburn, webhosting, webhosts, site, e-mail, small business, domain, pictures, domains, images, advertising, maintain, maintenance, computer, market, marketing, services, page, pages, link, links, packages, low, videos, email, Craigslist, promote, promotion, advertisement, advertisements, internet, professional,html, proprietory, video, advertise, hosting, price, priced, economy, low cost, photo, photos, web, website, Issaquah, Everett, Mercer Island, Lynnwood, Mukilteo, Mill Creek, County, Pierce, Olympia, Thurston, Puget Sound, King, Burien</span></span>
<p>&#160;</p></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Flash or Html Websites ]]></title>
<link>http://popularone.wordpress.com/2009/10/27/flash-or-html-websites/</link>
<pubDate>Tue, 27 Oct 2009 21:30:23 +0000</pubDate>
<dc:creator>popularone</dc:creator>
<guid>http://popularone.wordpress.com/2009/10/27/flash-or-html-websites/</guid>
<description><![CDATA[Get the professional presence that your company deserves with a website, email and ad campaign We ar]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong><span style="font-size:large;color:#008000;font-family:Times New Roman;">Get the professional presence that your company deserves with a website, email and ad campaign</span></strong></p>
<p>We are here to help!</p>
<p>We can create a professional website with 5 pages and email addresses.</p>
<p>Worry-free hosting and maintaining of your website.</p>
<p>Setup for a one time low fee of $375</p>
<p>Experts also in the following:</p>
<p>New Website Creation and Hosting; Site Renovation</p>
<p>Image Galleries; Blogs; Google Maps; Photo Optimizing; Customer Feedback/Testimonials</p>
<p>Internet advertising, and More!</p>
<p>Estimates are always free</p>
<p>Please contact us for details</p>
<p><img src="http://www.qsnw.com/documents/tsgsales.gif" border="0" alt="" /></a></p>
<p class="MsoNormal" style="margin:0;"><span style="color:#fffffc;"><span style="font-size:xx-small;">webhosting, photo, photos, Bothell, Kenmore, Redmond, Kirkland, Shoreline, Woodinville, Tacoma, Renton, Puyallup, promote, web, website, Issaquah, Everett, Mercer Island, Lynnwood, Mukilteo, quality, Mill Creek, County, Pierce, Olympia, Thurston, promotion, advertisement, advertisements, internet, professional, proprietory, video, advertise, hosting, price, priced, economy, low cost, design, Bellevue, Seattle, Sammamish, Snohomish, Auburn, Maple Valley, Kent, Federal Way, South, market, marketing, web hosting, domain registration, web design, graphic design,Html, Css, Xhtml, W3c, Flash, Logo Design, Brochure Design, Web Standards, Standards based design, Web Management, Website Updates, re-design, web 2.0, Flash animation, 2-D and 3-D animation, webhosts, site, e-mail, small, business, domain, pictures, domains, images, advertising, maintain, maintenance, computer, services, page, pages, link, links, packages, low, videos, email, Craigslist, Puget Sound, King, Burien, html</span></span>
<p>&#160;</p></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Social Media Vale do Paraíba 2009]]></title>
<link>http://flaviowd.wordpress.com/2009/10/25/social-media-vale-do-paraiba-2009/</link>
<pubDate>Sun, 25 Oct 2009 04:30:40 +0000</pubDate>
<dc:creator>Flávio Araújo</dc:creator>
<guid>http://flaviowd.wordpress.com/2009/10/25/social-media-vale-do-paraiba-2009/</guid>
<description><![CDATA[Até que enfim algo com relevância no Vale do Paraíba &#8211; o Social Media Vale do Paraíba 2009. Es]]></description>
<content:encoded><![CDATA[Até que enfim algo com relevância no Vale do Paraíba &#8211; o Social Media Vale do Paraíba 2009. Es]]></content:encoded>
</item>
<item>
<title><![CDATA["Call 'em out" The Indiana state website is using Microsoft crap and screwing over standards-compliant browsers]]></title>
<link>http://izanbardprince.wordpress.com/2009/10/23/call-em-out-the-indiana-state-website-is-using-microsoft-crap-and-screwing-over-standards-compliant-browsers/</link>
<pubDate>Fri, 23 Oct 2009 14:48:46 +0000</pubDate>
<dc:creator>Ryan</dc:creator>
<guid>http://izanbardprince.wordpress.com/2009/10/23/call-em-out-the-indiana-state-website-is-using-microsoft-crap-and-screwing-over-standards-compliant-browsers/</guid>
<description><![CDATA[As many of you know, I begrudgingly use Windows: That doesn&#8217;t mean that I love it, and I certa]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>As many of you know, I begrudgingly use Windows:</strong></p>
<p>That doesn&#8217;t mean that I love it, and I certainly hate Microsoft Internet Explorer. Seems that some sites still don&#8217;t get that IE is a turd and that it&#8217;s not what their visitors wish to use.</p>
<p>Well, I had to print out a license I hold from the Indiana State Department of Health yesterday and guess what came up?</p>
<p><img class="alignnone size-full wp-image-1720" title="WTF!?" src="http://izanbardprince.wordpress.com/files/2009/10/untitled.jpg" alt="WTF!?" width="1024" height="640" /></p>
<p><strong>Notice the &#8220;.aspx&#8221; extension? Means they&#8217;re using Microsoft ASS.NET, errrr&#8230;.. ASP.NET. No wonder it breaks when you&#8217;re using Opera.</strong></p>
<p>Not every ASS.NET page breaks in Opera, but nearly every page that does break in Opera is built with ASS.NET.<strong> </strong>(On a side note, Silverblight won&#8217;t work at all, but who cares?)</p>
<p>Maybe now that the FCC is making a landgrab  for the internet under the veil of &#8220;network neutrality&#8221;, they can enforce real W3C standards on the assclowns that handle Indiana state websites.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Ecommerce Websites and Advertising]]></title>
<link>http://popularone.wordpress.com/2009/10/22/ecommerce-websites-and-advertising/</link>
<pubDate>Thu, 22 Oct 2009 17:11:47 +0000</pubDate>
<dc:creator>popularone</dc:creator>
<guid>http://popularone.wordpress.com/2009/10/22/ecommerce-websites-and-advertising/</guid>
<description><![CDATA[We can create a great website with email addresses and professional Ad design We can help! The websi]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><STRONG><FONT face="Times New Roman" color="#008000" size="5">We can create a great website with email addresses and professional Ad design</STRONG></FONT><BR><BR></p>
<p>We can help!</p>
<p>The website with 5 pages and emails will be completed for your small business<br />
Take the worries and stress out of maintaing a website with our help.</p>
<p>Setup for basic website starts at only $375<br />
and a Monthly hosting fee of $25 a month<br />
We can also:<br />
Advertise locally or nationwide on Craigslist to promote your business</p>
<p>Consider some of our services:<br />
Ecommerce/Shopping Carts; Image Galleries<br />
Blogs; Streaming Video; Site Renovations</p>
<p>Timely estimates are always free of charge</p>
<p>We can be reached by phone or email</p>
<p><img src="http://www.qsnw.com/documents/tsgsales.gif" border="0"></a></p>
<p><P class="MsoNormal" style="margin:0;"><SPAN style="color:#fffffc;"><FONT size="1">webhosting, photo, photos, Bothell, Kenmore, Redmond, Kirkland, Shoreline, Woodinville, Tacoma, Renton, Puyallup, promote, web, website, Issaquah, Everett, Mercer Island, Lynnwood, Mukilteo, quality, Mill Creek, County, Pierce, Olympia, Thurston, promotion, advertisement, advertisements, internet, professional, proprietory, video, advertise, hosting, price, priced, economy, low cost, design, Bellevue, Seattle, Sammamish, Snohomish, Auburn, Maple Valley, Kent, Federal Way, South, market, marketing, web hosting, domain registration, web design, graphic design,Html, Css, Xhtml, W3c, Flash, Logo Design, Brochure Design, Web Standards, Standards based design, Web Management, Website Updates, re-design, web 2.0, Flash animation, 2-D and 3-D animation, webhosts, site, e-mail, small, business, domain, pictures, domains, images, advertising, maintain, maintenance, computer, services, page, pages, link, links, packages, low, videos, email, Craigslist, Puget Sound, King, Burien, html</FONT></SPAN></P></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Promote Your Small Business On The Web]]></title>
<link>http://popularone.wordpress.com/2009/10/21/promote-your-small-business-on-the-web/</link>
<pubDate>Wed, 21 Oct 2009 18:23:44 +0000</pubDate>
<dc:creator>popularone</dc:creator>
<guid>http://popularone.wordpress.com/2009/10/21/promote-your-small-business-on-the-web/</guid>
<description><![CDATA[Website and email addresses at a great price We can get you setup and running very quickly! We can c]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong><span style="font-size:large;color:#008000;font-family:Times New Roman;">Website and email addresses at a great price</span></p>
<p></strong></p>
<p>We can get you setup and running very quickly!</p>
<p>We can create a professional website with 5 pages and email addresses.</p>
<p>All work of hosting and maintaining your website will be completed professionally.</p>
<p>One time setup fee of $375</p>
<p>and the monthly fee of maintaining for only $25</p>
<p>Optionally, we can also:</p>
<p>Create an ad campaign for your small business on Craigslist</p>
<p>Some of our services include:</p>
<p>Live Chat; Customer Feedback/Testimonials; Banner Ads</p>
<p>Google AdWords; Payment Processing; DVD Creation; Image Galleries</p>
<p>Email or call us for a free estimate</p>
<p>Please let us know if you&#8217;d like more details</p>
<p><img src="http://www.qsnw.com/documents/tsgsales.gif" border="0" alt="" /></a></p>
<p class="MsoNormal" style="margin:0;"><span style="color:#fffffc;"><span style="font-size:xx-small;">webhosting, photo, photos, Bothell, Kenmore, Redmond, Kirkland, Shoreline, Woodinville, Tacoma, Renton, Puyallup, promote, web, website, Issaquah, Everett, Mercer Island, Lynnwood, Mukilteo, quality, Mill Creek, County, Pierce, Olympia, Thurston, promotion, advertisement, advertisements, internet, professional, proprietory, video, advertise, hosting, price, priced, economy, low cost, design, Bellevue, Seattle, Sammamish, Snohomish, Auburn, Maple Valley, Kent, Federal Way, South, market, marketing, web hosting, domain registration, web design, graphic design,Html, Css, Xhtml, W3c, Flash, Logo Design, Brochure Design, Web Standards, Standards based design, Web Management, Website Updates, re-design, web 2.0, Flash animation, 2-D and 3-D animation, webhosts, site, e-mail, small, business, domain, pictures, domains, images, advertising, maintain, maintenance, computer, services, page, pages, link, links, packages, low, videos, email, Craigslist, Puget Sound, King, Burien, html</span></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Homework Assignment #1]]></title>
<link>http://uifo.wordpress.com/2009/10/21/homework-assignment-1/</link>
<pubDate>Wed, 21 Oct 2009 16:39:11 +0000</pubDate>
<dc:creator>uifo</dc:creator>
<guid>http://uifo.wordpress.com/2009/10/21/homework-assignment-1/</guid>
<description><![CDATA[Wow, it is interesting that with the availbility of up-to-moment current information of the internet]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Wow, it is interesting that with the availbility of up-to-moment current information of the internet that there are still professional web designers and developers using the incorrect standard/format.  So, everyone that poccesses web finesse may not have knowledge of the current standards which make web access easy and affordable.  Who wouldn&#8217;t want clear and easy access to their sites?  Who wouldn&#8217;t want their time and effort spent in gathering and creating documents to have long-term accessibility?  Well, since I am new to this, I had no idea that there are many different standards available when creating a website or adding to its content.   I am enjoying learning all of these neat, cool things.</p>
<p>With the internet being such an deeply integrated important part of our everyday lives it pays to get the right information, and to make that information easily accessible to all users.   That is what web standards help web designers and developers do if they so choose.   Yeah, it still cool that it&#8217;s voluntary, even though it seems like the best thing to do, it is up to you if you want the best format for your website.  That is if you want people to have a good time while visiting your website, think that it is user friendly and easy to operate.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Homework assignment]]></title>
<link>http://rxcsege.wordpress.com/2009/10/21/homework-assignment/</link>
<pubDate>Wed, 21 Oct 2009 16:16:20 +0000</pubDate>
<dc:creator>rxcsege</dc:creator>
<guid>http://rxcsege.wordpress.com/2009/10/21/homework-assignment/</guid>
<description><![CDATA[The W3C (World Wide Web Consortium) has tried to create some standards with commercial adds, and wit]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>The W3C (World Wide Web Consortium) has tried to create some standards with commercial adds, and with emails to force the two competing web browser company to use a standard way of java script. A group of professionals have created the WaSP (Web Standards Project). Web standards are a way for every person creating a web page, to write the java script the same way. With the cooperation of the web browser companies, all web pages can be opened by all computer users. This allows businesses and individuals to post their web sites on the world wide web without the frustration of creating multiple pages for multiple web browsers. With standards, all those who surf the internet can do so with ease. With standards in place, even an individual can write a clean web page that works just as well as those written by computer professionals.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Website Design, Hosting, and Advertising]]></title>
<link>http://popularone.wordpress.com/2009/10/20/website-design-hosting-and-advertising/</link>
<pubDate>Wed, 21 Oct 2009 01:02:08 +0000</pubDate>
<dc:creator>popularone</dc:creator>
<guid>http://popularone.wordpress.com/2009/10/20/website-design-hosting-and-advertising/</guid>
<description><![CDATA[Website, Email and Ad Design We would be glad to help! Setup a 5 page website for your company with ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong><span style="font-size:large;color:#008000;font-family:Times New Roman;">Website, Email and Ad Design</span></p>
<p></strong></p>
<p>We would be glad to help!</p>
<p>Setup a 5 page website for your company with professional email addresses.</p>
<p>Worry-free hosting and maintaining of your website.</p>
<p>One time low price of $375 for website setup</p>
<p>and a low $25/month for maintenance</p>
<p>We can also:</p>
<p>Create a nationwide or local ad campaign for you on Craigslist and/or other sites</p>
<p>Take a look at some of our services:</p>
<p>Paypal Integration; Consulting; Backpage; WordPress; MP3 Audio Downloads</p>
<p>Forum and Bulletin Board; Beautiful Custom Graphics; E-mail Services</p>
<p>We&#8217;re glad to provide you with a free consultation</p>
<p>We can be reached by phone or email</p>
<p><img src="http://www.qsnw.com/documents/tsgsales.gif" border="0" alt="" /></a></p>
<p class="MsoNormal" style="margin:0;"><span style="color:#fffffc;"><span style="font-size:xx-small;">promotion, advertisement, advertisements, internet, professional, design, Bellevue, Seattle, Sammamish, Snohomish, Auburn, webhosting, webhosts, site, e-mail, small, business, domain, pictures, domains, images, advertising, web hosting, domain registration, web design, graphic design,Html, Css, Xhtml, W3c, Flash, Logo Design, Brochure Design, Web Standards, Standards based design, Web Management, Website Updates, market, marketing, re-design, web 2.0, Flash animation, 2-D and 3-D animation, maintain, maintenance, computer, services, page, pages, link, links, packages, low, videos, email, Craigslist, promote, web, website, Issaquah, Everett, Mercer Island, Lynnwood, Mukilteo, Mill Creek, County, Pierce, Olympia, Thurston, Puget Sound, King, Burien, html, proprietory, video, advertise, hosting, price, priced, economy, low cost, photo, photos, Bothell, Kenmore, Redmond, Kirkland, Shoreline, Woodinville, Tacoma, Renton, Puyallup, Maple Valley, Kent, Federal Way, South</span></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Web Developement - unseen benefits of compliance]]></title>
<link>http://jez007.wordpress.com/2009/10/20/135/</link>
<pubDate>Tue, 20 Oct 2009 15:04:11 +0000</pubDate>
<dc:creator>Jez D</dc:creator>
<guid>http://jez007.wordpress.com/2009/10/20/135/</guid>
<description><![CDATA[Wanna know why my personal web developer site is so high when searching for &#8216;cheshire web deve]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Wanna know why my personal <a href="http://www.uk-webdeveloper.co.uk" title="Web Developer UK">web developer</a> site is so high when searching for &#8216;cheshire web developer&#8217; in Google, Bing, Yahoo, plus many more?</p>
<p><strong>No.1 on yahoo.com when searching for the generic term &#8216;web developer&#8217; and selecting results &#8216;from the web&#8217;.</strong></p>
<p>Probably not, but here goes:</p>
<p>When I decided to rebuild my site, I considered <acronym title="search engine optimization">SEO</acronym> right from the planning stages – even before deciding on a design.</p>
<ol>
<li>I purchased a keyword rich domain &#38; hosted in my target audience country</li>
<li>Developed the site structure using modern technologies (XHTML/CSS – tableless design)</li>
<li>Ensured all code is entirely standards compliant</li>
<li>Incorporated as many WCAG features as possible</li>
<li>Minimal use of flash</li>
<li>Small images</li>
<li>Transferred PageRank from previous domain</li>
<li>Made full use of Google Webmaster Tools</li>
<li>Textual content &#8211; used everything I&#8217;ve ever read about <acronym title="search engine optimization">SEO</acronym></li>
</ol>
<p>There are of course many more things that can be done, but this shows that sticking to the basics and getting them right, can really have a positive effect.</p>
<p><a href="http://www.uk-webdeveloper.co.uk" title="Web Developer UK">web developer</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[It's Just Good Web Practice]]></title>
<link>http://webtide.wordpress.com/2009/10/07/its-just-good-web-practice/</link>
<pubDate>Wed, 07 Oct 2009 15:32:46 +0000</pubDate>
<dc:creator>Lisa Sandy</dc:creator>
<guid>http://webtide.wordpress.com/2009/10/07/its-just-good-web-practice/</guid>
<description><![CDATA[&#8220;Why do web designers do that?&#8221; Well, there are a lot of reasons, but most of them are j]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="size-full wp-image-487" title="why" src="http://webtide.wordpress.com/files/2009/09/why1.jpg" alt="why" width="468" height="295" />&#8220;Why do web designers do that?&#8221; Well, there are a lot of reasons, but most of them are just accepted and never explained. Here’s a little look at why we do what we do in the web world.</p>
<p><strong>Why do you use san-serif fonts like Verdana and Arial for body copy?</strong></p>
<p>San-serif fonts retain their appearance no matter how small their size and will read cleanly on any computer. They are also web standard because every computer automatically has them in their font folder.</p>
<p><strong>Why do you mainly use jpg and gif for images?</strong></p>
<p>Tiff files are usually big, having resolution of 300dpi or more, and take a longer time to load. They’re wonderful for print, but a computer screen only displays 72dpi anyway, so all that extra won’t show up even if it’s there. PNGs are wonderful with smooth transparency and a nice transition- but IE6 doesn’t display PNG transparency. (There is a hack for that if you really want it though.) In any case, jpg and gif images load faster and will display in all browsers.</p>
<p><strong>Why do you need an alt tag on an image?</strong></p>
<p>Alt tags are for when your image decides to go on holiday and doesn’t show up for work. A viewer will still be able to read the description of the image in the blank box where the image was supposed to appear. This way, they won’t have to guess at what was meant to show up. Alt tags also help the web readers that blind people use when they have a web page open. So remember to include an alt tag on your images!</p>
<p><strong>Why do you use a grid to design a web page? </strong></p>
<p>The eye reads things in a certain way. In order to create a clear path for the eye to follow, web designers use a grid to line up images and text. Just placing text wherever you like it makes it confusing for the reader. They won’t know which place you want them to look at next. Creating on a grid cleans up the page, creates an automatic hierarchy, and allows a better flow for readers.</p>
<p><strong>Why do you use CSS instead of tables for design?</strong></p>
<p>CSS helps design in a lot of ways. It is more flexible, makes faster changes across all pages, and multiple CSS can style the same page information in different ways for a variety of media. Tables cannot be layered, adjust to different screen sizes, or change their appearance readily over a succession of pages.</p>
<p>Example: Say you want to change a link color to red. CSS can do that for every page in the site with one line of code. With a table, you’ll have to go to every page and manually change the link color. It’s a lot of work, but by using CSS we can eliminate the tedium and save time.</p>
<p><strong>Why are some designers so against Flash?</strong></p>
<p>Flash is a useful tool, but if the same thing can be done with another script language most web designers will opt for that instead of Flash. Why? Because Flash is an application which must be installed on the computer trying to access the information. If Flash is not installed the viewer must download it- which takes them away from your page. Flash also doesn&#8217;t make content as accessible for people using alternative web browsing devices, such as the iPhone, or for search engines to pick up information.</p>
<p><strong>Then why do some people use Flash?</strong></p>
<p>Flash is a useful animation tool that provides a smoother movement than most scripts which require the browser rendering to keep up with their speed. Flash script is all internal and therefore must load before it plays. This allows Flash to become separate from the browser’s influence. Because of this, many use Flash for playing videos. It&#8217;s a good way to stream video content quickly and efficiently without worrying about what type of browser supports the video encoding.</p>
<p><strong>What about music or sound effects on pages? </strong></p>
<p>If you have to have music on your page- keep it optional. Let people be able to turn it off. In general, it’s not a good idea to have noise on a page since the people browsing might already be listening to their own music and will resent the jumbled sound of two audio waves at once. </p>
<p><strong>Why are designers against flash intros?</strong></p>
<p>Intros take up time that a viewer might not have. Also think about people who come to the site repeatedly. They will have to watch the intro every time they visit- which can get annoying no matter how good the intro looks. If you really want an intro- include the option to skip it. You’ll find that most people will skip.</p>
<p><strong>Why include meta tags?</strong></p>
<p>Meta tags are used by web search engines to help your page get noticed in the way you want. They provide keywords to what your website is all about and help the people searching for the information you have find your site.</p>
<p><strong>Why do you test in different browsers?</strong></p>
<p>Different browsers have different ways of reading code. IE and Firefox might display the same bit of CSS differently. It’s best to look at your website in all the main browsers (such as IE, Firefox, Safari, Opera, and Chrome) before you unleash it upon the world. Also keep in mind with IE that different versions display differently. IE 6, 7, and 8 are very different. I would recommend downloading IE Tester to have a look at your site in all the versions.</p>
<p>With this I hope to have demystified at least a bit of why web designers do what they do. Remember, everything has its reasons- especially on the web!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[W3C: World Wide Web Consortium]]></title>
<link>http://calidabarboza.wordpress.com/2009/10/02/w3c-world-wide-web-consortium/</link>
<pubDate>Fri, 02 Oct 2009 18:46:50 +0000</pubDate>
<dc:creator>calidabarboza</dc:creator>
<guid>http://calidabarboza.wordpress.com/2009/10/02/w3c-world-wide-web-consortium/</guid>
<description><![CDATA[http://www.w3.org/ Mission: &#8220;To lead the World Wide Web to its full potential by developing pr]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a title="W3C: World Wide Web Consortium" href="http://www.w3.org/" target="_blank">http://www.w3.org/</a></p>
<p>Mission: &#8220;To lead the World Wide Web to its full   potential by developing protocols and guidelines that ensure long-term   growth for the Web.&#8221; &#8212; From About the World Wide Web Consortium (W3C)</p>
<p>W3C has published more than 110 <a href="http://www.w3.org/TR/">W3C Recommendations</a>.</p>
<p>&#8220;In order for the Web to reach its full potential, the most fundamental Web technologies must be compatible with one another and allow any hardware and software used to access the Web to work together. W3C refers to this goal as “Web interoperability.” By publishing open (non-proprietary) standards for Web languages and protocols, W3C seeks to avoid market fragmentation and thus Web fragmentation.&#8221; &#8212; From About the World Wide Web Consortium (W3C)</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[The Web Standards Project (WaSP)]]></title>
<link>http://calidabarboza.wordpress.com/2009/10/02/the-web-standards-project-wasp/</link>
<pubDate>Fri, 02 Oct 2009 18:36:33 +0000</pubDate>
<dc:creator>calidabarboza</dc:creator>
<guid>http://calidabarboza.wordpress.com/2009/10/02/the-web-standards-project-wasp/</guid>
<description><![CDATA[http://www.webstandards.org/ &#8220;Founded in 1998, The Web Standards Project (WaSP) fights for sta]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a title="The Web Standards Project (WaSP)" href="http://www.webstandards.org/" target="_blank">http://www.webstandards.org/</a></p>
<p>&#8220;Founded in 1998, The Web Standards Project (WaSP) fights<span style="color:#000000;"> for standards that reduce the cost and complexity of development while increasing the accessibility and long-term viability of any site published on the Web. We work with browser companies, authoring tool makers, and our peers t</span>o deliver the true power of standards to this medium.&#8221; &#8212; From The Web Standards Project About page</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[A Google Gears]]></title>
<link>http://djdarkmanhu.wordpress.com/2009/09/27/a-google-gears/</link>
<pubDate>Sun, 27 Sep 2009 20:08:42 +0000</pubDate>
<dc:creator>djdarkman</dc:creator>
<guid>http://djdarkmanhu.wordpress.com/2009/09/27/a-google-gears/</guid>
<description><![CDATA[A tegnap nagyon rákaptam a Google Gears-re, rendkívül érdekes és véleményem szerint fontos technológ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>A tegnap nagyon rákaptam a <span style="text-decoration:line-through;">Google</span> Gears-re, rendkívül érdekes és véleményem szerint fontos technológia, aki nem ismerné a Gears az egy Google által fejlesztett böngésző bővítmény ami arra hivatott hogy pótolja azt ami manapság hiányzik a HTML standardokból, többek között az alábbi funkciókkal fegyverzi fel a böngészőt:</p>
<p>- lokális tároló</p>
<p>- lokális SQLite adatbázis</p>
<p>- desktop integrációk</p>
<p>- Javascript háttérben való futtatása</p>
<p>és még sok más rendkívül hasznos lehetőség.</p>
<p>A Gears egy nyílt forráskódú projekt, hogy ezt érzékeltesse a Google, önkéntesen elhagyta a Google-t a Google Gears-ből és így lett csak Gears a projekt neve. Gyakorlatilag a Gears egy ugyanolyan böngésző kiegészítő mint a Flash(csak más a célja), legalább is ugyanolyan egyszerű telepíteni(viszont nem olyan dög lassú futás közben). Egy weblap nagyon könnyen és egyértelmüen tudja ellenőrizni, hogy a felhasználónak van-e telepítve Gears vagy sem illetve könnyen tud olyan weblapot csinálni ami tud élni Gears-el vagy anélkül.</p>
<p>A Gears ellentétben sok más kiegészítővel próbál a lehető legjobban igazodni a web standardokhoz, a Gears fejlesztői együtt dolgoznak a W3C csoporttal és világosan kijelentették, hogy eszük ágában sincs még egy standardot csinálni illetve megpróbálni irányítani a webet, saját elmondásuk szerint a web a természet egy megfékezhetetlen ereje. Maguk a Gears fejlesztők egy része web fejlesztő volt a böngésző háborúk idején, saját elmondásuk szerint mélyen érzik a standardok fontosságát.</p>
<p>Tehát a Gears célja, hogy felgyorsítsa a web fejlődését, hogy megoldja azt a problémát, hogy kell várjunk míg az Internet Explorer végre méltóztat egy számunkra kedves funkcionalitást implementálni, illetve amíg a drága rendszer gazdáknak meg kalózoknak eszükbe jut frissíteni.</p>
<p>A Gears nem csak papíron egy hasznos dolog és ezt nagyon jól illusztrálja, hogy a legtöbb Google alkalmazás előszeretettel használja, amik közül talán a GMail, Google Docs illetve Google Reader használja ki leghatékonyabban. A GMail gyakorlatilag egy teljes értékű levelező kliens a Gears segítségével, internet nélkül is pont úgy működik(levélküldés kivételével) mint internet nélkül, tehát ugyanúgy lehet használni mint például a Thunderbird vagy KMail-t.</p>
<p><img class="alignnone size-full wp-image-84" title="Google Gears Allow Dialog" src="http://djdarkmanhu.wordpress.com/files/2009/09/googlegearsstep1.gif" alt="Google Gears Allow Dialog" width="450" height="306" /></p>
<p>Természetesen a Gears se egy tökéletes golyó álló technológia, a legnagyobb hátránya talán az, hogy amíg egyes dolgok nevetségesen könnyűek rajta, mint például offline tárolás meg adatbázis, más egyszerűbbnek megszokott dolgok min például fájl feltöltés viszonylag nehéz és természetesen azt se szabad elfelejteni hogy egyes felhasználók lehet inkább élnének egy lassúbb és butább web applikációval mint hogy hajlandóak legyenek telepíteni a Gears-t.</p>
<p>Véleményem szerint a Gears egy olyan technológia, amire érdemes odafigyelni, mert segítségével olyan dolgokat lehet(web applikációkban) csinálni, amiket eddig nem lehetett, aki nem hiszi próbálja ki.</p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
