<?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>Joy Of Code</title>
	<atom:link href="http://www.joyofcode.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.joyofcode.com</link>
	<description>Web Design Training</description>
	<lastBuildDate>Fri, 23 Mar 2012 22:48:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>The Code To Content Ratio</title>
		<link>http://www.joyofcode.com/uncategorized/the-code-to-content-ratio</link>
		<comments>http://www.joyofcode.com/uncategorized/the-code-to-content-ratio#comments</comments>
		<pubDate>Thu, 04 Aug 2011 14:09:20 +0000</pubDate>
		<dc:creator>Bud Kraus</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.joyofcode.com/?p=2542</guid>
		<description><![CDATA[Evangelists, like me, of web page design standards know that the adage &#34;Less Is More&#34; rocks when it comes to Hyper Text Markup Language, Cascading Style Sheets, and other markup and programming languages. Best practices of web page design will always lead to using the fewest tags and the least tortured CSS style rules. On [...]]]></description>
			<content:encoded><![CDATA[<div id="base" class="post">

<img src="http://www.joyofcode.com/wp-content/uploads/2011/08/Untitled-1.jpg" alt="
Leonardo da Vinci's 'Vitruvian Man', showing the golden ratio in body dimensions" style="float:left;padding:20px;" />



 <p>Evangelists, like me,   of web page design standards know that the adage &quot;Less
   Is More&quot;  rocks
   when it comes to  Hyper Text Markup Language, Cascading Style Sheets,
   and other markup and programming languages. Best practices of web page design
   will always lead to using the fewest tags and the least tortured CSS style
   rules. On the web a small coding footprint is what you should be after.</p>
 
        <p>Ever hear anyone refer to  &quot;Tag Soup?&quot;  It means web pages that are bloated with needless source code.  I&#8217;m talking
         about things like tables nested needlessly inside other tables or miles of proprietary junk code (thank you Front Page).  It all adds up to pages that are impossible to edit and take forever to download.</p>
         
<p>If it&#8217;s impossible to edit that means you can&#8217;t rapidly change your site, and if you can&#8217;t do that, you&#8217;re in trouble.
</p>
        
<p>Call it  &quot;Less Is More&quot; or &quot;Tag Soup,&quot; &#8211; I call
          it <strong>The Code To Content Ratio</strong>.  I want my pages to
          have lots of meaningful content with as little HTML and CSS code as
          possible. </p>
        
<p>By content I&#8217;m referring, first and foremost, to text  (<a href="index.php?page_id= 2498">A Writer&#8217;s Medium</a>) and then to imagery, multimedia, and other assets. A favorable code to content proportion is beneficial for everyone &#8211; humans, browsers, and search engine robots.</p>
<p>Is there a scientific way of knowing you have the right blend &#8211; the correct ratio of code to content?  Not that I know of.  But if you do things the right way and validate (error check) your work, you&#8217;ll find that the ratio will improve over time.  At the same time, so too will your web page designing skills.</p>
        <p>Here&#8217;s an example of what I mean. I will illustrate the way links are usually set up on a web page, then show  how they should be set up.</p>

<form method="post" action=""><input type="hidden" name="ip" value="38.107.179.241" /><p><label for="s2email">Your email:</label><br /><input type="text" name="email" id="s2email" value="Enter email address..." size="20" onfocus="if (this.value == 'Enter email address...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Enter email address...';}" /></p><p><input type="submit" class="dif" name="subscribe" value="Subscribe" />&nbsp;<input type="submit" name="unsubscribe" class="dif" value="Unsubscribe" /></p></form>


<span id="more-2542"></span>

        <h2>Using A Table To Format Navigation </h2>
        <p>Here I&#8217;m using a table that has 4 rows, each row having just one cell (column). I have a link in each of the four cells.</p>
        <p>This is a very common way people use tables but it should be frowned upon. Tables are not meant for layout.</p>
        <p><strong>Code View</strong></p>
        <p><code>&lt;table width=&quot;50%&quot; cellspacing=&quot;10&quot;&gt;<br />
  &lt;tr valign=&quot;top&quot;&gt;<br />
  &lt;td&gt;&lt;a href=&quot;#&quot;&gt;</code>Link 1<code>&lt;/a&gt;&lt;/td&gt;<br />
  &lt;/tr&gt;<br />
  &lt;tr&gt;<br />
  &lt;td&gt;&lt;a href=&quot;#&quot;&gt;</code>Link 2<code>&lt;/a&gt;&lt;/td&gt;<br />
  &lt;/tr&gt;<br />
  &lt;tr&gt;<br />
  &lt;td&gt;&lt;a href=&quot;#&quot;&gt;</code>Link 3<code>&lt;/a&gt;&lt;/td&gt;<br />
  &lt;/tr&gt;<br />
  &lt;tr&gt;<br />
  &lt;td&gt;&lt;a href=&quot;#&quot;&gt;</code>Link 4<code>&lt;/a&gt;&lt;/td&gt;<br />
  &lt;/tr&gt;<br />
  &lt;/table&gt;</code></p>
        <p><strong>Browser View</strong></p>
        <table width="50%" cellspacing="10">
          <tr valign="top">
            <td><a href="#">Link 1</a></td>
          </tr>
          <tr>
            <td><a href="#">Link 2</a></td>
          </tr>
          <tr>
            <td><a href="#">Link 3</a></td>
          </tr>
          <tr>
            <td><a href="#">Link 4</a></td>
          </tr>
        </table>
        <h2>Using A List To Format Navigation</h2>
        <p>Now that you&#8217;ve seen the wrong way to do it let&#8217;s look at the best way to set your links up for navigation. Below I use list markup. Each list item contains one link. After all, isn&#8217;t that what a navigation interface is &#8211; a list of links?</p>
        <p><strong>Code View</strong></p>
        <p><code>&lt;ul&gt;<br />
  &lt;li&gt;&lt;a href=&quot;#&quot;&gt;</code>Link 1<code>&lt;/a&gt;&lt;/li&gt;<br />
  &lt;li&gt;&lt;a href=&quot;#&quot;&gt;</code>Link 2<code>&lt;/a&gt;&lt;/li&gt;<br />
  &lt;li&gt;&lt;a href=&quot;#&quot;&gt;</code>Link 3<code>&lt;/a&gt;&lt;/li&gt;<br />
  &lt;li&gt;&lt;a href=&quot;#&quot;&gt;</code>Link 4<code>&lt;/a&gt;&lt;/li&gt;<br />
  &lt;/ul&gt;</code> </p>
        <p><strong>Browser View</strong></p>
        <ul>
          <li><a href="#">Link 1</a></li>
          <li><a href="#">Link 2</a></li>
          <li><a href="#">Link 3</a></li>
          <li><a href="#">Link 4</a></li>
        </ul>
        <p>Isn&#8217;t that so much more efficient than using tables? Don&#8217;t like the bullets? Want the list to be positioned horizontally? Use CSS</p>
  </div><!-- end base -->
]]></content:encoded>
			<wfw:commentRss>http://www.joyofcode.com/uncategorized/the-code-to-content-ratio/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Web Is A Writer&#8217;s Medium</title>
		<link>http://www.joyofcode.com/uncategorized/the-web-is-a-writers-medium</link>
		<comments>http://www.joyofcode.com/uncategorized/the-web-is-a-writers-medium#comments</comments>
		<pubDate>Mon, 25 Jul 2011 13:01:04 +0000</pubDate>
		<dc:creator>Bud Kraus</dc:creator>
				<category><![CDATA[Nature Of The Web]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web Design Standards]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.joyofcode.com/?p=2498</guid>
		<description><![CDATA[MEMO: To all graphic artists, illustrators, animators and other multi-media artists. Here is my bad news. The web is a writer&#8217;s medium. If you disagree (and I almost hope you do) make sure to leave a comment below!! Okay, you may have already, reluctantly, come to that conclusion. You may have realized what I have [...]]]></description>
			<content:encoded><![CDATA[<div id="base" class="post">
<img src="http://www.joyofcode.com/wp-content/uploads/2011/07/quill-1.jpg" alt="Illustration Of  A Quill" style="float:left;padding:25px" />




<p><strong>MEMO:</strong> To all graphic artists, illustrators, animators 
          and other multi-media artists.</p>
        <p> Here is my bad news.<strong> The web is a writer&#8217;s 
          medium.</strong> If you disagree (and I almost hope you do) make sure
          to leave a comment below!!</p>
        <p>Okay, you may have already, reluctantly, come to that conclusion. You 
          may have realized what I have realized for a long time. Creating imagery 
          for the web isn&#8217;t really the greatest thing that ever happened in your 
          life.</p>
        <p>The fact that the web is now largely populated with social networks,
          blogs, forums, and other collaborative environments where text content
          is king can hardly be breaking news, confirming that this really is
          a writer&#8217;s medium. For people like me, it&#8217;s a paradise with an unlimited
          supply of paper and ink. For a designer, it&#8217;s a most challenging canvas.</p>
          
          
          
<div style="width: 95%; margin:20px auto; border:4px dotted #af6de9;font-family:'comic sans ms', monospace;">

<img src="http://www.joyofcode.com/wp-content/uploads/2011/06/woman_thinking_wp.jpg" alt="WordPress Webinar Logo" style="float:left;padding:10px;" />

<p style="font-size:20px;font-weight:bold;">Pardon My interruption But There&#8217;s Something I Need To Tell You!!</p>

<p>Do you want to learn WordPress? At least get started learning the world&#8217;s most useful and popular Content Management System. It&#8217;s no wonder why WordPress is working behind the scenes of over 25 million web sites, creating pages and managing content.</p>

<p>On July 28 at 7PM I&#8217;m doing a &#8220;What WordPress Can Do For You&#8221; webinar. It&#8217;ll be fun, informative, convenient and pretty cheap. <a href="http://www.joyofcode.com/julywebinar"><strong>Details And Registration</strong></a>. </p>

<p>Check out the video which shows you a tiny sample of what I will be discussing and the interview I did for the upcoming webinar.</p>

</div>
<form method="post" action=""><input type="hidden" name="ip" value="38.107.179.241" /><p><label for="s2email">Your email:</label><br /><input type="text" name="email" id="s2email" value="Enter email address..." size="20" onfocus="if (this.value == 'Enter email address...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Enter email address...';}" /></p><p><input type="submit" class="dif" name="subscribe" value="Subscribe" />&nbsp;<input type="submit" name="unsubscribe" class="dif" value="Unsubscribe" /></p></form>

<span id="more-2498"></span>


        <p>Take  Twitter for example. (<a href="http://twitter.com/budkraus">Please
            follow me</a> so I can re-tweet
          your good tweets). All that micro content is text. The images are an
            after thought, a tack on. Facebook is much the same.</p>
        <p>I don&#8217;t mean to pay short shrift (ever hear of long shrift?) to those 
          elements that do, at minimum, the heavy lifting of holding a user&#8217;s 
          attention &#8211; layout, typography, art direction, color story, imagery 
          and embedded rich media. I&#8217;m just here to report the facts as I know 
          them.</p>
        <p>How am I so sure in my pronouncement? Get under the hood of any web
          page by looking at its source code. Do you see images or flash movies?
          ? Of course not. All that&#8217;s there are tags, text, and maybe some scripting
          language (which is still only text). Even style itself is something
          brought in from an external file.</p>



        <p>&quot;But,&quot; you might say, &quot;web pages are a highly visual
           medium loaded with static images, animation and rich media content.&quot; 
          Maybe, but look beneath the surface, look at what&#8217;s going on behind
           the scenes &#8211; see beyond what the user sees &#8211; and there you&#8217;ll find
          your  answer in the source code. It is a text based medium.</p>
        <p>All the imagery, styling information, and embedded multi-media content 
          are nothing but references or links to files and not the thing itself. 
        </p>
        <p>Just what you see as the essence of a web page &#8211; the text and tags
           &#8211; are the things that search engines, assistive technologies &#8211; and
          dare I say, human beings &#8211; are really after.        </p>
        <p>Agree or disagree? </p>
        
        <form method="post" action=""><input type="hidden" name="ip" value="38.107.179.241" /><p><label for="s2email">Your email:</label><br /><input type="text" name="email" id="s2email" value="Enter email address..." size="20" onfocus="if (this.value == 'Enter email address...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Enter email address...';}" /></p><p><input type="submit" class="dif" name="subscribe" value="Subscribe" />&nbsp;<input type="submit" name="unsubscribe" class="dif" value="Unsubscribe" /></p></form>


</div><!-- end base -->




]]></content:encoded>
			<wfw:commentRss>http://www.joyofcode.com/uncategorized/the-web-is-a-writers-medium/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Useful Tips For Effective Web Design</title>
		<link>http://www.joyofcode.com/fonts/useful-tips-for-effective-web-design</link>
		<comments>http://www.joyofcode.com/fonts/useful-tips-for-effective-web-design#comments</comments>
		<pubDate>Mon, 18 Jul 2011 16:06:45 +0000</pubDate>
		<dc:creator>Chloe Henderson</dc:creator>
				<category><![CDATA[Fonts]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.joyofcode.com/?p=2358</guid>
		<description><![CDATA[No matter what some people might think, there is more to putting together a website than finding a good website, vps hosting or uploading files. If you want your site to stand out from the thousands of others and leave a mark in the mind of any visitor &#8211; for positive reasons &#8211; the information [...]]]></description>
			<content:encoded><![CDATA[<div id="base" class="post">
<img src="http://www.joyofcode.com/wp-content/uploads/2011/07/Email-AttachmentChloe-Avatar.jpg" alt="Illustration Of Chloe Henderson" style="float:left;padding:25px" />

<p>No matter what some people might think, there is more to putting together a website than finding a good website, <a href="http://www.webhostgear.com/vps-hosting.php">vps hosting</a> or uploading files. If you want your site to stand out from the thousands of others and leave a mark in the mind of any visitor &#8211; for positive reasons &#8211; the information below should be considered. </p>

<form method="post" action=""><input type="hidden" name="ip" value="38.107.179.241" /><p><label for="s2email">Your email:</label><br /><input type="text" name="email" id="s2email" value="Enter email address..." size="20" onfocus="if (this.value == 'Enter email address...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Enter email address...';}" /></p><p><input type="submit" class="dif" name="subscribe" value="Subscribe" />&nbsp;<input type="submit" name="unsubscribe" class="dif" value="Unsubscribe" /></p></form>


<ol>
<li>
<h2>No Music Players</h2>
<img src="http://www.joyofcode.com/wp-content/uploads/2011/07/nomusic.JPG.jpeg" alt="No Music" style="float:right;" />
<p>No matter how tempting it might be, anybody that wants to have effective web design should resist placing a music player on the site. Some people browse the Internet as they ride the public transportation system or attend class. If loud music should start playing and they were not aware that it would happen, they may end up upset and embarrassed. They will leave the site and it is unlikely they will return. Because you want to have a site that people will come back to again and again no matter where they are, this should be kept in mind. </p>
</li>


<span id="more-2358"></span>

<li>
<h2>Complimenting Colors </h2>
<p>A website that captures people generally demonstrates a complimentary and eye catching color scheme. The colors used together should make sense and not give anybody difficulty as they try to read. For example, yellow text on a red background is unreadable, as is the combination of black and blue. On the other side of the scale, black and white is considered boring and will not impress the people that matter most. Finding a happy medium is something that should be attempted. In the end it will spell success.</p>
</li>

<div style="width: 95%; margin:20px auto; border:4px dotted #af6de9;font-family:'comic sans ms', monospace;">

<img src="http://www.joyofcode.com/wp-content/uploads/2011/06/woman_thinking_wp.jpg" alt="WordPress Webinar Logo" style="float:left;padding:10px;" />

<p style="font-size:20px;font-weight:bold;">Pardon My interruption But There&#8217;s Something I Need To Tell You!!</p>

<p>Do you want to learn WordPress? At least get started learning the world&#8217;s most useful and popular Content Management System. It&#8217;s no wonder why WordPress is working behind the scenes of over 25 million web sites, creating pages and managing content.</p>

<p>On July 28 at 7PM I&#8217;m doing a &#8220;What WordPress Can Do For You&#8221; webinar. It&#8217;ll be fun, informative, convenient and pretty cheap. <a href="http://www.joyofcode.com/julywebinar"><strong>Details And Registration</strong></a>. </p>

<p>Check out the video which shows you a tiny sample of what I will be discussing and the interview I did for the upcoming webinar.</p>

</div>


<li>
<h2> Easy To Navigate Layout </h2>
<img src="http://www.joyofcode.com/wp-content/uploads/2011/07/you-are-here.gif" alt="You Are Here" style="float:left;padding:10px;" />
<p>People visit websites in order to find the information they want quickly; they should not have to read a manual to know where they have to go. Even if the information on the site is completely factual and entertaining, guests will not know this for themselves because the layout could send them in circles. Some web designers feel they should be artistic when they put together layouts; while creativity is fine, it should not be to the point that a person that looks at it has no idea of what to do. </p>
</li>

<li>
<h2>Frequent Updates </h2>
<p>Even if the tips above are followed, it does little good if the website is rarely updated. This is especially crucial if you are running a business site and want to continue getting inquiries and orders.

It is important to make sure that you&#8217;ve got a reliable site hosting to
ensure that all your updates are taken in place without any problems

 This can mean once a week or a few times a month, depending on the time that you can secure to do it. If people cannot tell when the site was last updated, or it has not been updated in a few years, they will think the site is dead and will move on to something else. 
</p>
</li>



</ol>
<hr />
<p><em>Chloe Henderson is a 23 year old media practitioner who engages herself in the world of social networking, gadgets and reading. She is also doing some freelance writing on several web hosting companies and is currently with <a href="http://www.webhostgear.com">webhostgear.com</a> and loves to write  anything that would interest her, sharing it to the world wide web. </em></p>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.joyofcode.com/fonts/useful-tips-for-effective-web-design/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Are You And Your Web Browser Ready For HTML5?</title>
		<link>http://www.joyofcode.com/uncategorized/are-you-and-your-web-browser-ready-for-html5</link>
		<comments>http://www.joyofcode.com/uncategorized/are-you-and-your-web-browser-ready-for-html5#comments</comments>
		<pubDate>Tue, 12 Jul 2011 13:10:30 +0000</pubDate>
		<dc:creator>Bud Kraus</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web 3.0]]></category>
		<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[Webinars]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[hyml5]]></category>
		<category><![CDATA[WordPress For Beginners]]></category>

		<guid isPermaLink="false">http://www.joyofcode.com/?p=2325</guid>
		<description><![CDATA[In the weeks, months, and probably years to come, I will be writing about HTML5, the revised Hyper Text Markup Language being developed by the World Wide Web Consortium (W3C). Before I get to showing you how to know what parts of HTML5 are presently supported by your (or any other) browser, I&#8217;d like to [...]]]></description>
			<content:encoded><![CDATA[<div id="base" class="post">

<img src="http://www.joyofcode.com/wp-content/uploads/2011/07/html5.png" alt="HTML5" style="float:left;padding:25px;" />


<p>In the weeks, months, and probably years to come, I will be writing about HTML5, the revised Hyper Text Markup Language being developed by the World Wide Web Consortium (<a href="http://www.w3c.org/">W3C</a>).</p>

<p>Before I get to showing you how to know what
  parts of HTML5 are presently supported by your (or any other) browser, I&#8217;d
  like to point out a few things.</p>
<p>If you know XHTML &#8211; or the earlier HTML 4.01
  &#8211; you are hardly out of luck. The two cornerstones of web design standards
  &#8211; </p>

<ul>
  <li>error checking your markup and</li>
<li>writing well formed documents </li>
</ul>


<p> &#8211; still, and will always, apply and will be as important as ever.</p>


<p>HTML5 will be much bigger in scope than anything you have seen before. Essentially, there are two huge parts of HTML5:</p>

<ol>
<li> 
<strong>An expansion of the elements. There will be new tags such as&#8230;</strong>

  <ul style="list-style-type:circle !important">
<li>header</li>
<li>hgroup</li>
<li>section</li>
<li>article</li>
<li>aside</li>
<li>nav</li>
<li>sidebar</li>
<li>footer</li>
</ul>

<p>This will surely beat the present craziness of using zillions of div tags
  that do not describe the content being marked up.</p>

<p>Here&#8217;s a complete list of the new <a href="http://www.w3schools.com/html5/html5_new_elements.asp">HTML5
     Elements</a>.</p>

<p>There are a lot more form controls coming too. Soon there will be new kinds
  of drop down menus, sliders,date and time pickers and all sorts of
  new ways to interact with pages and input data.</p>

<p>In addition, many tags are going to be retired (deprecated as they say). Here are a few that you won&#8217;t be using in the future:</p>

  <ul style="list-style-type:circle !important;">
<li>applet</li>
<li>frame and frameset</li>
<li>strike</li>
<li>u</li>
</ul>

<p>To give you a decent idea of what the  new elements are, and which elements
  are no longer to be used, see the  <a href="http://www.w3schools.com/html5/html5_reference.asp">HTML
  5 Tag Reference</a> list. Clicking on a tag name takes you to a page to learn
  more about the tag element.</p>
</li>

<div style="width: 100%; margin:20px auto; border:4px dotted #af6de9;font-family:'comic sans ms', monospace;">

<img src="http://www.joyofcode.com/wp-content/uploads/2011/06/woman_thinking_wp.jpg" alt="WordPress Webinar Logo" style="float:left;padding:10px;" />

<p style="font-size:20px;font-weight:bold;">Pardon My Interruption But There&#8217;s Something I Need To Tell You!!</p>

<p>Do you want to learn WordPress? At least get started learning the world&#8217;s most useful and popular Content Management System. It&#8217;s no wonder why WordPress is working behind the scenes of over 25 million web sites, creating pages and managing content.</p>

<p>On July 28 at 7PM I&#8217;m doing a &#8220;What WordPress Can Do For You&#8221; webinar. It&#8217;ll be fun, informative, convenient and pretty cheap. <a href="http://www.joyofcode.com/julywebinar"><strong>Details And Registration</strong></a>. </p>

<p>Check out the video which shows you a tiny sample of what I will be discussing and the interview I did for the upcoming webinar.</p>

</div>


<li><strong>Inclusion of Application Programming Interfaces</strong>

<p>  The second part of HTML5 will be a programmer&#8217;s dream come true  HTML5 will
  have a big set of APIs (Application Programming Interfaces). What does 
  this mean? It means that browsers of the near future are going to work like
  programming platforms. That&#8217;s a totally new idea to what people have understood
  HTML to be. For example, HTML5 will have native (built-in) APIs for video and
  audio. This will make  it unnecessary to have plugins like a Flash player
  render multimedia content.</p>
  
  <p
>But there is so much more to the upcoming HTML5 APIs. Here is a very partial list
    of what is probably coming:</p>

  <ul style="list-style-type:circle !important;">
<li>Video and Audio API<br />
-  allows developers to create native HTML multimedia players </li>

<li>Inline Editing API<br />
- edits web pages through the browser</li>

<li>Drag and Drop API</li>

<li>Canvas API<br />
 &#8211; allows you to draw 2D Graphics</li>
</ul>

<p>If you are dying, like me, to learn more about this API business, see <a href="http://dret.typepad.com/dretblog/html5-api-overview.html">HTML
    5 Landscape Overview</a>.</p>

</li>
</ol>


<p>Because the APIs deal with programming (which is not my realm of expertise),
  my focus will be on Item 1 above &#8211; the new and improved tags. It&#8217;s not just
  that there will be more tags, but familiar tags will be used in unfamiliar
  ways. (I&#8217;ll have more to say on all of this in future posts).</p>

<p>HTML5 is <strong>NOT</strong> your Mother&#8217;s HTML!! All of the coming changes
  will usher in Web 3.0 and provide experiences which will change what we do
  not know.</p>
<form method="post" action=""><input type="hidden" name="ip" value="38.107.179.241" /><p><label for="s2email">Your email:</label><br /><input type="text" name="email" id="s2email" value="Enter email address..." size="20" onfocus="if (this.value == 'Enter email address...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Enter email address...';}" /></p><p><input type="submit" class="dif" name="subscribe" value="Subscribe" />&nbsp;<input type="submit" name="unsubscribe" class="dif" value="Unsubscribe" /></p></form>

<span id="more-2325"></span>

<h2>How Well Does Firefox Deal With HTML5?</h2>

<p>To check how well a browser supports HTML5, I used the <a href="http://html5test.com/">HTML5
    Test</a> site because it&#8217;s easy to use.  </p>

<p>Each browser is given a score. The closer the score is to 450, the closer
  the browser is to HTML5 compliance. {Keep in mind that HTML5 is under development
  and what eventually  will become a W3C Recommendation &#8211; a standard as many
  people call it &#8211; will change between now and then.)</p>

<p>What you&#8217;ll notice is that  browser manufacturers (and web designers)
  are not waiting for the W3C to give its final blessing on HTML5 before they
  use it. They are getting ready now for the day  &quot;5&quot;  is official.</p>

<p>Before my recent  upgrade to Firefox v5, the earlier Firefox scored poorly
  on how well it supported HTML5. But with the Firefox 5 newly installed, I
  was amazed to see the difference. The newer browser scored 272 points out of
  a possible 450.</p>

<h2>Other Browsers</h2>

<p>Here are the scores of the most current versions of popular browsers.</p>

<h3>Mac Browsers</h3>

<table width="100%" border="0">
  <tr>
    <th>User Agent</th>
    <th>Version</th>
  <th>Score</tdth
  ></tr>
  <tr>
    <td>Chrome</td>
    <td>12.0.742</td>
    <td>313</td>
  </tr>
  <tr>
    <td>Safari</td>
    <td>5.0.5</td>
    <td>253</td>
  </tr>
  <tr>
    <td>Opera</td>
    <td>11.11</td>
    <td>278</td>
  </tr>
</table>
<h3>Window Browsers</h3>


<table width="100%" border="0">
  <tr>
    <th>User Agent</th>
    <th>Version</th>
  <th>Score</tdth
  ></tr>
  <tr>
    <td>Internet Explorer</td>
    <td>8.0</td>
    <td>41 </td>
  </tr>
  <tr>
    <td>Firefox</td>
    <td>3.6.17</td>
    <td>179</td>
  </tr>

  <tr>
    <td>Firefox</td>
    <td>5.0</td>
    <td>272</td>
  </tr>
</table>

<p><strong>NOTE</strong></p>
<ol>
<li>That&#8217;s no mistake.  IE 8 scores much below the industry. Nothing weird
  about that as IE is always 2 years behind everyone else.</li>
<li>Look at how much better the newer version of Firefox supports HTML5. Upgrade
  your browser right now and you&#8217;ll be ready for the present and future!!</li>
</ol>



<h2>Browser Support Chart On Steroids</h2>

 <p> If the HTML5 Test site is NEI (Not Enough Information) check out <a href="http://www.browserscope.org/user/tests/table/agt1YS1wcm9maWxlcnINCxIEVGVzdBiBsqYGDA?v=3&#038;layout=simple">Browser
     Scope</a>. A countless number of user agents (browsers) are examined to
     see how well they do with HTML5 in ten different categories.</p>


<p>WARNING:  If you are going to start using HTML5, be very careful  how you
  use it. Make sure to check how well legacy browsers support HTML5. You&#8217;ll
  find a huge drop off from the current browsers (none of which fully support
  HTML5 as of now).</p>
  
  <hr />
  
  Are you using HTML5 now?  Any drawbacks to using something that&#8217;s not yet a
  W3C Recommendation? Tell us about any sites that are using it.  Use the Comment
  Box below to tell the world because we want to know!!</div><!-- end base -->



]]></content:encoded>
			<wfw:commentRss>http://www.joyofcode.com/uncategorized/are-you-and-your-web-browser-ready-for-html5/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Free Themes For Designers (Part 2 of 2)</title>
		<link>http://www.joyofcode.com/uncategorized/wordpress-free-themes-for-designers-part-2-of-2</link>
		<comments>http://www.joyofcode.com/uncategorized/wordpress-free-themes-for-designers-part-2-of-2#comments</comments>
		<pubDate>Sat, 02 Jul 2011 01:27:09 +0000</pubDate>
		<dc:creator>Hallie Schiff</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Themes]]></category>

		<guid isPermaLink="false">http://www.joyofcode.com/?p=2072</guid>
		<description><![CDATA[Last time around in Part One I pointed you to a good number of WordPress themes that require payment of a small fee to use them. This time it&#8217;s all about the free themes that designers should be looking at for your portfolio and gallery sites built using WordPress. Perhaps the biggest thing I&#8217;ve learned [...]]]></description>
			<content:encoded><![CDATA[<div id="base" class="post">

<img src="http://www.joyofcode.com/wp-content/uploads/2011/05/Picture-1.png" alt="Hallie Schiff Portrait" style="float:left; padding:25px;" />

<p>Last time around in Part One I pointed you to a good number of WordPress themes that require payment of a small fee to use them. This time it&#8217;s all about the free themes that designers should be looking at for your portfolio and gallery sites built using WordPress.</p>

<p>Perhaps the biggest thing I&#8217;ve learned throughout all this is that there are
  a TON of tools and options out there, but one of the biggest things I&#8217;ve learned
  is that if you don&#8217;t have a basic understanding of HTML and CSS, all the tools
  in the world won&#8217;t help you create a site with the &#8220;look&#8221; you&#8217;re hoping to
  achieve. Online tutorials or even taking a class (like Bud&#8217;s! He&#8217;s a great
  teacher) will absolutely help you with this. It&#8217;s for this reason that I&#8217;m
  still working on my final web site (which will be, of course, through wordpress),
  but in the meantime, I put up a web site through carbonmade.com, which hosts
  portfolio web sites for artiest/designers/creative folk. It&#8217;s a great tool
  to use in between those stages of tinkering with wordpress and finishing up
  your project.</p>
<form method="post" action=""><input type="hidden" name="ip" value="38.107.179.241" /><p><label for="s2email">Your email:</label><br /><input type="text" name="email" id="s2email" value="Enter email address..." size="20" onfocus="if (this.value == 'Enter email address...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Enter email address...';}" /></p><p><input type="submit" class="dif" name="subscribe" value="Subscribe" />&nbsp;<input type="submit" name="unsubscribe" class="dif" value="Unsubscribe" /></p></form>



<span id="more-2072"></span>

<div style="width:85% ; margin:0 auto; border:8px dotted #af6de9;">

<img src="http://www.joyofcode.com/wp-content/uploads/2011/06/woman_thinking_wp.jpg" alt="WordPress Webinars " style="float:right;padding:25px;"/>

<p>If you are thinking a of learning WordPress &#8211; or maybe you&#8217;ve started and need a few pointers &#8211;  join my <strong><a href="http://www.joyofcode.com/julywebinar">WordPress Webinar</a></strong> that&#8217;s geared for beginners on July 28 at 7PM. </p>

</div>


<ul class="themeshots">
<li><a href="http://wpshower.com/free-wordpress-themes/suburbia-free-wordpress-theme/">Suburbia</a><br />
A very clean and well-designed free theme geared towards a portfolio layout.

<img src="http://www.joyofcode.com/wp-content/uploads/2011/06/WP_pic1.jpg" alt="Screenshot Of
 WordPress Suburbia Theme" /></li>

<li><a href="http://allancole.com/themes/">AuitoFocus</a><br />
Simple and unique. Very nice for photographers and bloggers. (Bud
&#8216;s note:  I totally endorse this one as it is a Child Theme to Thematic which
  is how this web site was made.). <a href="http://fthrwght.com/autofocus/">Download
  AutoFocus</a>.</li>


<li><a href="http://bizzthemes.com/demo/bizzfolio/">Bizz folio</a><br />
Definitely geared towards a business/portfolio aesthetic (obviously). Very nice features for a free theme. <a href="http://www.themewp.net/bizz-folio-premium-wordpress-theme.html">Download Bizz folio</a>.</li>


<li><a href="http://imbalance.wpshower.com/">IMBALANCE</a><br />
Again, it&#8217;s clean and simple, but it&#8217;s also a bit cool-looking. <a href="http://wpshower.com/themes/imbalance/">Download IMBALANCE</a>
 
 <img src="http://www.joyofcode.com/wp-content/uploads/2011/06/4.jpg" alt="Screenshot of 
 WordPress Theme - IMBALANCE" />
 
 </li>


<li><a href="http://demo.graphpaperpress.com/fullscreen/">Fullscreen</a><br />
Uses a unique photo portfolio effect on the homepage. Great if you have a lot of images.</li>

<li><a href="http://imbalance.wpshower.com/">IMBALANCE</a><br />
Again, it&#8217;s clean and simple, but it&#8217;s also a bit cool-looking. <a href="http://wpshower.com/themes/imbalance/">Download IMBALANCE</a></li>
</ul>

<p>Also, some of these templates (free or paid) support Google Fonts. It&#8217;s in the beta stage, but it&#8217;s a nice tool for designers to be able to choose different fonts than we&#8217;ve typically been limited to in the past. </p>


<hr />

<p><em>Hallie Schiff, is a Graphic Designer for Hallie Schiff Design and a contributing
  author to The Joy Of Code Blog.</em></p>

<p><a href="http://hallieschiffdesign.carbonmade.com/">Hallie Schiff Design</a><br />
<a href="mailto:hallie.schiff@gmail.com">hallie.schiff@gmail.com</a></p>


</div><!-- end blog -->]]></content:encoded>
			<wfw:commentRss>http://www.joyofcode.com/uncategorized/wordpress-free-themes-for-designers-part-2-of-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Fonts That Computers and Other People Are Using</title>
		<link>http://www.joyofcode.com/uncategorized/the-fonts-that-computers-and-other-people-are-using</link>
		<comments>http://www.joyofcode.com/uncategorized/the-fonts-that-computers-and-other-people-are-using#comments</comments>
		<pubDate>Thu, 23 Jun 2011 22:30:39 +0000</pubDate>
		<dc:creator>Bud Kraus</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Webinars]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[font tool for web pages]]></category>
		<category><![CDATA[WordPress For Beginners]]></category>

		<guid isPermaLink="false">http://www.joyofcode.com/?p=2147</guid>
		<description><![CDATA[Until downloadable webfonts become a mainstream practice (who can say when that will be!), it is important for web designers to know which fonts are likely to be installed on most users&#8217; systems. Knowing this is also part of best practices in web site development. A great resource which keeps track in real time of [...]]]></description>
			<content:encoded><![CDATA[<div id="base" class="post">

<img src="http://www.joyofcode.com/wp-content/uploads/2011/05/codestyle.gif" alt="Code Style" style="float:left;padding:30px;" />

<p>Until downloadable webfonts become a mainstream practice (who can say when
  that will be!), it is important for web designers to know which fonts are
  likely to be installed on most users&#8217; systems. Knowing this is also part
  of best practices in web site development.</p>

<p>A great resource which keeps track in real time of what fonts are installed
  on various operating systems is <a href="http://www.codestyle.org/">Code Style</a>.
  Knowing which fonts are out there should help you get beyond the same old boring
  fonts we&#8217;ve all been using for years. Me included.</p>
<form method="post" action=""><input type="hidden" name="ip" value="38.107.179.241" /><p><label for="s2email">Your email:</label><br /><input type="text" name="email" id="s2email" value="Enter email address..." size="20" onfocus="if (this.value == 'Enter email address...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Enter email address...';}" /></p><p><input type="submit" class="dif" name="subscribe" value="Subscribe" />&nbsp;<input type="submit" name="unsubscribe" class="dif" value="Unsubscribe" /></p></form>



<span id="more-2147"></span>

<div style="width:85% ; margin:0 auto; border:8px dotted #af6de9;">

<img src="http://www.joyofcode.com/wp-content/uploads/2011/06/woman_thinking_wp.jpg" alt="WordPress Webinars " style="float:right;padding:25px;"/>

<p>If you are thinking a of learning WordPress &#8211; or maybe you&#8217;ve started and need a few pointers &#8211;  join my <strong><a href="http://www.joyofcode.com/julywebinar">WordPress Webinar</a></strong> that&#8217;s geared for beginners on July 28 at 7PM. </p>

</div>



<p>The Code Style site is loaded with  interesting and useful information about
  fonts. I cherry picked a few articles from their survey results.</p>



<ul class="features">
<li><a href="http://codestyle.org/macfontresults">Most commonly installed fonts on Macs</a>.<br />
As you might expect, Helvetica is installed on 100% of all Macs.</li>


<li><a href="http://www.codestyle.org/css/font-family/sampler-WindowsResults.shtml">
Most commonly installed fonts on Windows</a>.<br />
Not even Arial is on 100% of all Windows boxes.</li>

<li><a href="http://www.codestyle.org/css/font-family/sampler-Serif.shtml">Most commonly installed serif fonts on all platforms</a>.</li>

<li><a href="http://www.codestyle.org/css/font-family/sampler-SansSerif.shtml">Most commonly installed sans-serif fonts on all platforms</a>.</li>
</ul>



</div><!-- end base -->]]></content:encoded>
			<wfw:commentRss>http://www.joyofcode.com/uncategorized/the-fonts-that-computers-and-other-people-are-using/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Premium Themes For Designers (Part 1 of 2)</title>
		<link>http://www.joyofcode.com/uncategorized/wordpress-premium-themes-for-designers-part-1-of-2</link>
		<comments>http://www.joyofcode.com/uncategorized/wordpress-premium-themes-for-designers-part-1-of-2#comments</comments>
		<pubDate>Thu, 16 Jun 2011 21:09:52 +0000</pubDate>
		<dc:creator>Hallie Schiff</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Themes]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.joyofcode.com/?p=1926</guid>
		<description><![CDATA[I&#8217;m a freelance print designer looking to create a website and portfolio. I&#8217;ve done a lot of research on what options are the easiest and best solutions for us newbies looking to put up a website. In all of my searching for a fabulously designed, fully-customizable, easy to code option, the one tool that came [...]]]></description>
			<content:encoded><![CDATA[<div id="base" class="post">

<img src="http://www.joyofcode.com/wp-content/uploads/2011/05/Picture-1.png" alt="Hallie Schiff Portrait" style="float:left; padding:25px;" />

<p>I&#8217;m a freelance print designer looking to create a website and portfolio.
  I&#8217;ve done a lot of research on what options are the easiest and best solutions
  for us newbies looking to put up a website. In all of my searching for a
  fabulously designed, fully-customizable, easy to code option, the one tool
  that came up the most was WordPress. It&#8217;s awesome. Plain and simple. </p>


<p>The set-up is easy, and the back-end is equally foolproof. You can download
  a theme, install it, and be up and running in no time. There are some themes
  you can download that are offered on wordpress.org. In my experience, they
  are usually somewhat boring, limited, and downright ugly. (Sorry, but I&#8217;m a
  major design snob.) However, there are countless other third-party sites that
  design and sell (or offer for free!) well designed themes. I&#8217;ve found some
  amazing themes in the past which I had to tell you about.</p>

<p>I&#8217;ll start with the Premium Themes.  In my next post I&#8217;ll give you my recommendations for the Free Themes.</p>

<h2>Premium  Themes</h2>

<p>These themes require the payment of a small license fee.  Premium Themes are
  normally more robust, interesting, flexible, and better supported than the
  Free Themes (which I&#8217;ll talk about in my next post).</p>
<form method="post" action=""><input type="hidden" name="ip" value="38.107.179.241" /><p><label for="s2email">Your email:</label><br /><input type="text" name="email" id="s2email" value="Enter email address..." size="20" onfocus="if (this.value == 'Enter email address...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Enter email address...';}" /></p><p><input type="submit" class="dif" name="subscribe" value="Subscribe" />&nbsp;<input type="submit" name="unsubscribe" class="dif" value="Unsubscribe" /></p></form>




<span id="more-1926"></span>

<ul class="themeshots">
<li><a href="http://themeforest.net/item/folioway-premium-portfolio-wordpress-theme/234219">Folioway</a><br />
A good, simple, and clean theme with a Google map on the contact page, unlimited colors and sidebars, plus a great portfolio.</li>



<li><a href="http://themes.mikemcalister.com/wp/PrePress/?page_id=22&#038;paged=2">PrePress
    WordPress Theme</a><br />
Very clean and graphic design  oriented. Minimal, but well-done.

<img src="http://www.joyofcode.com/wp-content/uploads/2011/06/1.gif" alt="Screenshot of Pre
Press WordPress Theme" />

</li>



<li><a href="http://themeforest.net/item/smart-portfolio-wordpress-edition/46359">Smart Portfolio</a><br />
This is a simplistic webpage design. It&#8217;s good for freelancers and individual
  designers/contractors.</li>

<li><a href="http://themeforest.net/item/ddstudios-premium-wordpress-theme/180899">DDStudios</a><br />
Very design-forward and good for social networking integration.</li>

<li><a href="http://themeforest.net/item/anan-for-photography-creative-portfolio/174507">ANAN &#8211; For Photography Creative Portfolio</a><br />
One of the best-designed WordPress themes I&#8217;ve seen offered. Beautiful typography and photo integration, as well as Twitter and Flickr site integration.

<img src="http://www.joyofcode.com/wp-content/uploads/2011/06/WP_pic3.jpg" alt="Screenshot of Contrast Theme" /></li>

<li><a href="http://themeforest.net/item/contrast/68089">CONTRAST</a><br />
  This is one of my favorite themes! It allows you to place a video as your page
  background! It has very funky navigation and great customization settings.
  Plus, the contact page is a full size Google map! (Click on the live preview
  and you&#8217;ll see what I mean.)



</li>

<li><a href="http://themeforest.net/item/sidewinder-for-wordpress-dynamic-grid-portfolio/160721">SideWinder</a><br />
Unique, photo-centric and portfolio driven (it&#8217;s your homepage). Plus, it&#8217;s incredibly
  customizable. It allows you to use practically any font you want (webfonts
  or otherwise), which is  an amazing plus for print designers accustomed to
  choosing their design&#8217;s typography.</li>

<li><a href="http://themeforest.net/item/minimalista-an-ajax-wordpress-template/92607">Minimalista</a><br />
A great theme for photographers&#8230;.unlimited color choices.  It allows you to place a full photo page background with cool transitions.</li>







</ul>




<p>Next time around, I&#8217;ll talk about Free Themes that I think you should consider
  for your WordPress projects.</p>

<hr />

<p><em>Hallie Schiff, is a Graphic Designer for Hallie Schiff Design and a contributing
  author to The Joy Of Code Blog.</em></p>

<p><a href="http://hallieschiffdesign.carbonmade.com/">Hallie Schiff Design</a><br />
<a href="mailto:hallie.schiff@gmail.com">hallie.schiff@gmail.com</a></p>

</div>]]></content:encoded>
			<wfw:commentRss>http://www.joyofcode.com/uncategorized/wordpress-premium-themes-for-designers-part-1-of-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Will There Be A Web 3.0?</title>
		<link>http://www.joyofcode.com/uncategorized/will-there-be-a-web-3-0</link>
		<comments>http://www.joyofcode.com/uncategorized/will-there-be-a-web-3-0#comments</comments>
		<pubDate>Tue, 17 May 2011 15:41:23 +0000</pubDate>
		<dc:creator>Bud Kraus</dc:creator>
				<category><![CDATA[Fonts]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web 3.0]]></category>

		<guid isPermaLink="false">http://www.joyofcode.com/?p=1876</guid>
		<description><![CDATA[For reasons not even known to me I got interested in Web 3.0. Mind you, I haven&#8217;t even heard of 3.0 but I figured since I now sort of understand what Web 2.0 is, a 3 must becoming. My hunch was right but before I did much checking I thought I would try and figure [...]]]></description>
			<content:encoded><![CDATA[<div id="base" class="post">

<img src="http://www.joyofcode.com/wp-content/uploads/2011/04/web3.0.gif" alt="Web 3.0" style="float:right;padding:0px 40px 10px;" />

<p>For reasons not even known to me I got interested in Web 3.0. Mind you, I haven&#8217;t even heard of 3.0 but I figured since I now sort of understand what Web 2.0 is, a 3 must becoming.</p>

<p>My hunch was right but before I did much  checking I thought I would try and figure out what Web 3.0 is likely to be.</p>





<h2>1. Logical Find</h2>

<p>In the web to come I want answers to my questions. I see computers assembling, perhaps in a crude way, real answers to real questions from various sources and not just serving up links that might contain answers to my questions.</p>

<p>If I ask, &#8220;How many planets are there in the universe&#8221; or &#8220;How many times have the New York Yankees won over 90 games in a season&#8221; or &#8220;I have a $5,000 and I want to go To Prague. What&#8217;s the best way to spend my money?&#8221; I want answers to questions which require, dare I say, &#8220;thought.&#8221; I&#8217;m tired of a regurgitated list of pages that might answer a query. </p>

<p>I suppose I&#8217;m drawing on the promise of Ask Jeeves. This time it&#8217;s time for Jeeves to give us meaningful answers. What we need now is not Jeeves but Watson. And if you saw Jeopardy a few months back you know this technology is coming to a computer near you. And probably sooner than you think.</p>
<form method="post" action=""><input type="hidden" name="ip" value="38.107.179.241" /><p><label for="s2email">Your email:</label><br /><input type="text" name="email" id="s2email" value="Enter email address..." size="20" onfocus="if (this.value == 'Enter email address...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Enter email address...';}" /></p><p><input type="submit" class="dif" name="subscribe" value="Subscribe" />&nbsp;<input type="submit" name="unsubscribe" class="dif" value="Unsubscribe" /></p></form>



<span id="more-1876"></span>

<h2>2. Video Forms</h2>

<p>In Web 2.0 video came of age, But I am still surprised that we haven&#8217;t had live Springsteen, McCartney or Lady Gaga concerts where we pay a fee to watch a live online global performance.  Can you imagine? Live concerts shared on a global scale. Why haven&#8217;t we seen this yet?</p>

<p>For Web 3.0 video large companies will have online TV stations. While watching a video you will be able to order a product or service with an embedded form right into the video. I have no idea how this will work yet or if Adobe and others are working on such video players which would allow for direct user input of data. But it should be pretty cool if they were and it would give the web developers an option from using html contact form inputs such as text boxes, radio buttons and check boxes.</p>

<h2>3. Privacy? What&#8217;s That?</h3>

<p>The trade-off between free services and the surrendering of personal information will get even more pervasive in 3.0. It the browser becomes a Personal Assistant and Learns more about our likes and dislikes and is able to answer questions like &#8220;I&#8217;m in the mood for Tex Mex where should I go?&#8221; that stored information on your computer will be able to be taooed, knowingly or otherwise by any party who wants to know our preferences. Sure, a lot of that is already here but in 3.0 you can bet that advertisers, browser makers, Google and the like are going to know even more about us. Some people won&#8217;t like that and the rest won&#8217;t even know or care.</p>

<h2>Where Did I Get My Insights For This Post?</h2>

<p>No, i hardly spent anytime doing any research so I suppose a lot of this is either good guess work or way off the mark.  But I did run into this very interesting video that tides a lot of things together.</P>

<object width="400" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=11529540&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=11529540&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=00ADEF&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object><p><a href="http://vimeo.com/11529540">Web 3.0</a> from <a href="http://vimeo.com/kateray">Kate Ray</a> on <a href="http://vimeo.com">Vimeo</a>.</p>



<h2>How Will We Get From 2.0 to 3.0?</h2>

<p>A broad range of new browsers is around the corner.  Browsers that will be smart, fast, small and ubiquitous if you can stand being on the grid anymore than you already  are.</p>

<p>No doubt HTML5 and CSS3 will play major roles in the online world of the future.  And both of those are things I will be blogging a lot about as they move closer to approval by the World Wide Web Consortium (W3C).</p>



</div><!--endbase-->

]]></content:encoded>
			<wfw:commentRss>http://www.joyofcode.com/uncategorized/will-there-be-a-web-3-0/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Essential WordPress Plugins</title>
		<link>http://www.joyofcode.com/uncategorized/essential-wordpress-plugins</link>
		<comments>http://www.joyofcode.com/uncategorized/essential-wordpress-plugins#comments</comments>
		<pubDate>Wed, 04 May 2011 16:52:14 +0000</pubDate>
		<dc:creator>Bud Kraus</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Plugins]]></category>
		<category><![CDATA[WordPress For Beginners]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://www.joyofcode.com/?p=1904</guid>
		<description><![CDATA[Today I start an intermittent series on great WordPress plugins. Some of these plugins will be mainstream and used by millions. Others will be more obscure but fun, useful or indispensable none-the-less. A plugin works a lot like an app for an iPod or similar device. It allows you to extend a system&#8217;s core (default) [...]]]></description>
			<content:encoded><![CDATA[<div id="base" class="post">

<img src="http://www.joyofcode.com/wp-content/uploads/2011/05/wordpress-plugin-icon.jpg" alt="wordPREss Plugin logo" style="float:left;padding:20px;" />

<p>Today I start an intermittent series on great WordPress plugins.  Some of
  these plugins will be mainstream and used by millions. Others will be more
  obscure but fun, useful or  indispensable none-the-less.</p>

<p>A plugin works a lot like an app for an iPod or similar  device.  It allows
  you to extend a system&#8217;s core (default) functionality. Most WordPress plugins
  are free. All have decent documentation on how to install and use them. Some
  have good troubleshooting advice and still others have support from the plugin
  author.</p>

<p>If you 
    have WP running on a server just go to the Plugins section in your Admin
    menu to seamlessly download and install any plugin. Otherwise you can get
    any plugin at the  <a href="http://wordpress.org/extend/plugins/">Plugin
    Directory</a> section
    of the WordPress Mother Ship.
    </pp>
<p>Here are some of the plugins that I love and I think you will too. Some of these are absolute musts.  I don&#8217;t know why they are not part of the WP core.</p>

<h2>Akismet</h2>
<p>This plugin  comes with WordPress out of the box, but you need an API key
  to turn it on. The key costs $5 a month and is worth it.</p>

<p>Once your site is up and running, you will get a fair amount of spammy comments.
  Spammy comments are comments from people who just want links from your site
  to theirs because inbound links are so valuable. Akismet will trap those worthless
  comments so you won&#8217;t have to read and trash them yourself.  Don&#8217;t be scared
  about the API Key. It&#8217;s just a one time copy and paste operation.</p>
<form method="post" action=""><input type="hidden" name="ip" value="38.107.179.241" /><p><label for="s2email">Your email:</label><br /><input type="text" name="email" id="s2email" value="Enter email address..." size="20" onfocus="if (this.value == 'Enter email address...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Enter email address...';}" /></p><p><input type="submit" class="dif" name="subscribe" value="Subscribe" />&nbsp;<input type="submit" name="unsubscribe" class="dif" value="Unsubscribe" /></p></form>


<span id="more-1904"></span>

<h2>Ozh&#8217; Admin Drop Down Menu</h2>

<p>Fortunately, this was my first plugin.</p>

<p>If you don&#8217;t like the left side vertical admin navigation bar, then use this
  plugin. It will give you a horizontal nav bar. You can customize its appearance
  via Settings > Admin Menu.</p>


<h2>Backup Plugins</h2>

<p>There are a lot of them but whichever you choose, make sure that your database <em><strong> plus</strong></em> 
  your theme, plugins, and media library get backed up. These two plugins below
   do just that. I have yet to see one plugin that does it all, but it probably
  exists.</p>

<h3>WordPress Database Backup</h3>

<p>This plugin will back up your MySQL database file which is the most important file in your WP site. It&#8217;s where all the content you create (and the comments left by others) is stored. You configure the plugin from Tools > Backup. Best thing is to have a copy of your database sent every day to an email address that you set up just for the purpose of storing your DB backups.
</p>
<h3>WordPress Backup (by BTE)</h3>

<p>This plugin will backup your theme, plugins, and media uploads. To configure the settings go to Settings > WordPress Backup. The backups are stored in zip files on your server.</p>





<h2>Subscribe2</h2>

<p>Every time you publish a post (or even a page), this plugin will send an email to your subscriber list. Use your own list and have new subscribers enter their email address directly from your posts (or pages).</p>

<p>Almost anything you can think of can be set in the subscriber settings that are in several places in the Admin menu bar.  From the messages sent via email to managing your subscriber list, a lot can be done with this indispensable plugin.</p>


<h2>Exclude Pages From Navigation
</h2>

<p>If you don&#8217;t want a page to show up as a link in your nav bar, this is the
  plugin to use. All you need to do is to set the Exclude Page option accordingly
  for any given page. You&#8217;ll want to use this plugin when creating orphan
  pages (pages not connected to the site hierarchy).</p>

<hr />

<p>This is only the start of the WordPress plugins that I&#8217;ll be recommending for you
  in future Joy Of Code Blog posts. If you have a plugin that you love &#8211; or one
  we should avoid &#8211; tell us in the comment box below.</p>
<form method="post" action=""><input type="hidden" name="ip" value="38.107.179.241" /><p><label for="s2email">Your email:</label><br /><input type="text" name="email" id="s2email" value="Enter email address..." size="20" onfocus="if (this.value == 'Enter email address...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Enter email address...';}" /></p><p><input type="submit" class="dif" name="subscribe" value="Subscribe" />&nbsp;<input type="submit" name="unsubscribe" class="dif" value="Unsubscribe" /></p></form>



</div>]]></content:encoded>
			<wfw:commentRss>http://www.joyofcode.com/uncategorized/essential-wordpress-plugins/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Web Life In Plain English</title>
		<link>http://www.joyofcode.com/uncategorized/web-life-in-plain-english</link>
		<comments>http://www.joyofcode.com/uncategorized/web-life-in-plain-english#comments</comments>
		<pubDate>Mon, 25 Apr 2011 13:15:30 +0000</pubDate>
		<dc:creator>Bud Kraus</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[tiwtter]]></category>
		<category><![CDATA[wikis]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.joyofcode.com/?p=1850</guid>
		<description><![CDATA[I&#8217;m told that I speak and write in plain English. I think I&#8217;m pretty good at making complicated things easier to understand. So much of what we run across these days is needlessly complicated. Recently I came across a series of plain English videos on YouTube. I was stunned at how direct, simple, and quick [...]]]></description>
			<content:encoded><![CDATA[<div id="base"  class="post">

<img src="http://www.joyofcode.com/wp-content/uploads/2011/04/in-plain-english.gif" alt="In Plain English" style="float:left;padding:30px;" />

<p>I&#8217;m told  that I speak and write in plain English. I think I&#8217;m pretty good
  at making complicated things easier to understand. So much of what we run across
  these days is needlessly complicated.</p>

<p>Recently I came across a series of plain English videos on YouTube. I was
  stunned at how direct, simple, and quick they were in explaining topics that
  are a little difficult to grasp for a lot of people &#8211; including me.</p>

<p>Here are a few of them that I think you will love!! Note the illustrated animations
  which strike the right chord with the message of each video.</p>

<p>I have to thank Lee LeFever  of <a href="http://commoncraft.com/">commoncraft.com</a> for
  producing these videos that have been viewed by millions.</p>


<h2>Twitter in Plain English </h2>

<p>So, what are you doing?</p>

<p>It took me a while to get the hang of Twitter. I thought it was just a load
  of junk talk. To be sure, there&#8217;s plenty of that on Twitter, but there are
  also plenty of ways to turn Twitter into a useful business tool. Not long
  ago I was ranting about something concerning lynda.com and within minutes someone
  from that company was responding to my rant.</p>

<p>Oh yeah, <a href="http://twitter.com/#!/budkraus">follow me</a> and you won&#8217;t get junk talk, I promise.</p>



<object width="480" height="390"><param name="movie" value="http://www.youtube.com/v/ddO9idmax0o?fs=1&amp;hl=en_US&amp;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/ddO9idmax0o?fs=1&amp;hl=en_US&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="390"></embed></object>
<form method="post" action=""><input type="hidden" name="ip" value="38.107.179.241" /><p><label for="s2email">Your email:</label><br /><input type="text" name="email" id="s2email" value="Enter email address..." size="20" onfocus="if (this.value == 'Enter email address...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Enter email address...';}" /></p><p><input type="submit" class="dif" name="subscribe" value="Subscribe" />&nbsp;<input type="submit" name="unsubscribe" class="dif" value="Unsubscribe" /></p></form>

<span id="more-1850"></span>


<h2>Blogs In Plain English</h2>
<p>Do you know &#8211; or did you forget &#8211; where the word &#8220;blog&#8221; comes from?  It&#8217;s
  short for &quot;weblog.&quot;</p>

<p>I used to think blogging was just a way to keep a diary that no one would
  ever read even though it was on the web. Now I know better and understand its
  widespread use. It is proof that publishing power has shifted to the authors!!</p>


<object width="480" height="390"><param name="movie" value="http://www.youtube.com/v/NN2I1pWXjXI?fs=1&amp;hl=en_US&amp;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/NN2I1pWXjXI?fs=1&amp;hl=en_US&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="390"></embed></object>


<!--more-->

<h2>Wikis in Plain English </h2>

<p>A wiki is a  web site that lets people collaboratively create and edit online
  docs. Usually a wiki has a topic that attracts a specific audience. The Wikis
  you no doubt are familiar with are Wikipedia, and the one that turned the
  world on its side , WikiLeaks.</p>

<p>You can start your own wiki at:</p>

<ul>
<li><a href="http://wikisineducation.wetpaint.com/">Wetpaint Wiki</a></li>
<li><a href="http://www.wikispaces.com/">Wiki Spaces</a></li>
<li><a href="http://pbworks.com/">PB Works</a></li>
</ul>


<object width="480" height="390"><param name="movie" value="http://www.youtube.com/v/-dnL00TdmLY?fs=1&amp;hl=en_US&amp;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/-dnL00TdmLY?fs=1&amp;hl=en_US&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="390"></embed></object>

<hr />

<p>There are other great videos like these on  YouTube. Do you have a good one you can share with everyone here?</p>
<form method="post" action=""><input type="hidden" name="ip" value="38.107.179.241" /><p><label for="s2email">Your email:</label><br /><input type="text" name="email" id="s2email" value="Enter email address..." size="20" onfocus="if (this.value == 'Enter email address...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Enter email address...';}" /></p><p><input type="submit" class="dif" name="subscribe" value="Subscribe" />&nbsp;<input type="submit" name="unsubscribe" class="dif" value="Unsubscribe" /></p></form>


</div><!--end base-->]]></content:encoded>
			<wfw:commentRss>http://www.joyofcode.com/uncategorized/web-life-in-plain-english/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

