<?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>Web Teacher &#187; Internet</title>
	<atom:link href="http://www.webteacher.ws/category/internet/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webteacher.ws</link>
	<description>Tips, web design book reviews, resources and observations for teaching and learning web development.</description>
	<lastBuildDate>Tue, 07 Feb 2012 14:27:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Htaccess Magic: 4 Tips for a Better Website</title>
		<link>http://www.webteacher.ws/2012/01/17/htaccess-magic-4-tips-for-a-better-website/</link>
		<comments>http://www.webteacher.ws/2012/01/17/htaccess-magic-4-tips-for-a-better-website/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 13:23:24 +0000</pubDate>
		<dc:creator>vdebolt</dc:creator>
				<category><![CDATA[GuestPost]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[WebDesign]]></category>
		<category><![CDATA[WebFoundation]]></category>
		<category><![CDATA[htaccess]]></category>

		<guid isPermaLink="false">http://www.webteacher.ws/?p=7568</guid>
		<description><![CDATA[ Congratulations! You have a website! Now that you have one, you also have the responsibility of taking care of one. Website optimization is not always easy, but it can be with basic knowledge of how they work. One tool you can use to optimize your website is an .htaccess file. Web servers that use Apache [...]]]></description>
			<content:encoded><![CDATA[<p><img style="float: left;" src="http://myblogguest.com/forum/uploads/articles/2012/1/settings.jpg" alt="" width="400" height="353" /> Congratulations! You have a website! Now that you have one, you also have the responsibility of taking care of one. Website optimization is not always easy, but it can be with basic knowledge of how they work. One tool you can use to optimize your website is an .htaccess file.</p>
<p>Web servers that use Apache HTTP Server to publish websites have an override feature that allows web hosting users, even ones with shared hosting accounts, to change some web server settings on a local level. If the host has the <em>AllowOverride</em> setting enabled on the web server, the user can use .htaccess files to enable any desired Apache directives. The following are four directive types that can bring a little magic to your website.</p>
<h3>1. Custom error docs</h3>
<p>When a user mistypes a URL to a page on your site or visits one for a page that no longer exists, one of two things will happen. Either the user will end up at a plain white page with the words &#8220;404 Error. File Not Found&#8221; or at an error page created by your web host, promoting their services. Neither is good for your services or your site.</p>
<p>By creating custom error documents, you can let users know they did actually make it to your site but might have made a wrong turn. You can also use it to suggest a better starting point for them to navigate through your site.</p>
<p>To create custom error docs, the first step is easy. Make normal HTML files for each error you want to include. You can find a list of <a href="http://www.addedbytes.com/for-beginners/http-status-codes/">Apache error codes</a> on the web.</p>
<p>The next step is to create a file called .htaccess and place it in the root directory of your website &#8211; the directory that holds your HTML files. In the .htaccess file, place the error code redirects:</p>
<p><em>ErrorDocument 500 http://your-domain.tld/docs/500error.html<br />
ErrorDocument 404 http://your-domain.tld/docs/404error.html<br />
ErrorDocument 403 http://your-domain.tld/docs/403error.html<br />
ErrorDocument 401 /local/path/401error.html</em></p>
<p>As you see, you can use a local path or full URL to each error HTML file that you have created.</p>
<h3>2. Rewrite rules</h3>
<p>You can use rewrite rules for a wide variety of purposes, the most common purpose is for search engine optimization. Dynamic web apps use very long URLs, and you can use Apache&#8217;s mod_rewrite engine to make them shorter. If you are running a content management system like WordPress or Joomla, it will likely add the correct rewrite rules to your .htaccess file for you. If, however, you are creating your own web app, you should also create some rewrite rules.</p>
<p>Rewrite rules follow a simple pattern:</p>
<p><em>RewriteRule Pattern Substitution [Flag]</em></p>
<p>For example, a simple rewrite rule is:</p>
<p><em>RewriteRule ^killer-whales.html$ orcas.html</em></p>
<p>In this example, people who access the page &#8220;killer-whales.html&#8221; will be redirected to the actual page: &#8220;orcas.html&#8221;. Apache also offers many more <a href="http://www.noupe.com/php/10-mod_rewrite-rules-you-should-know.html">rewrite options</a> you can try to make your site easier to access.</p>
<h3>3. Restrict access</h3>
<p>Htaccess files can also have security benefits. One example is that you can restrict access to a particular file or directory. For example, to deny access to a single IP address, you would enter:</p>
<p><em>Order Allow,Deny<br />
Deny from 155.55.555.5.<br />
Allow from all</em></p>
<p>Anyone attempting to access your site from that IP address will be denied. More information about mod_access is available in the <a href="http://httpd.apache.org/docs/2.0/mod/mod_access.html">Apache documentation</a>.</p>
<h3>4. Allow or Prevent Directory Browsing</h3>
<p>When an index file is not present in a directory, Apache will display the contents of the directory. Many file repositories will use something like this by default to make it easy for people to browse the files. If, however, you do not want people to browse the files in a directory, you can easily disable browsing.</p>
<p><em>Options All -Indexes</em></p>
<p>On the other hand, if your web host has disabled browsing but you want it enabled, you do so with this directive:</p>
<p><em>Options All +Indexes</em></p>
<h3>Taking Control</h3>
<p>The whole point of .htaccess is to give the user some limited control over the server without affecting the other users who share it. This is only possible if your web host has enabled the &#8220;AllowOverride&#8221; setting in the web server&#8217;s configuration. <a href="http://webmasterformat.com/find-a-host/best-web-hosting-companies">The best hosting providers</a> usually do, but even if yours does not, you may be able to convince them to make special arrangements for you. It will make your website better and make your job as web administrator easier.</p>
<p><em>Guest Author Tavis J. Hampton is the author of the upcoming book KDE for the Graphical User. You can find more of his <a href="http://www.tavisonline.com/">writing</a> at TavisOnline.com.</em></p>
<hr />
<p><small>© vdebolt for <a href="http://www.webteacher.ws">Web Teacher</a>, 2012. |
<a href="http://www.webteacher.ws/2012/01/17/htaccess-magic-4-tips-for-a-better-website/">Permalink</a> |
<a href="http://www.webteacher.ws/2012/01/17/htaccess-magic-4-tips-for-a-better-website/#comments">2 comments</a> |

]]></content:encoded>
			<wfw:commentRss>http://www.webteacher.ws/2012/01/17/htaccess-magic-4-tips-for-a-better-website/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Leadership Skills for Women in Tech</title>
		<link>http://www.webteacher.ws/2011/12/06/leadership-skills-for-women-in-tech/</link>
		<comments>http://www.webteacher.ws/2011/12/06/leadership-skills-for-women-in-tech/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 13:42:36 +0000</pubDate>
		<dc:creator>vdebolt</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[women]]></category>
		<category><![CDATA[Carol Wight]]></category>
		<category><![CDATA[Katie Snapp]]></category>
		<category><![CDATA[Skirt Strategies]]></category>

		<guid isPermaLink="false">http://www.webteacher.ws/?p=7372</guid>
		<description><![CDATA[[Note: This article was written for BlogHer and refers to that. It was originally posted on BlogHer.] This is the tale of how two women – one from an engineering background and one from a restaurant background – came together to create a new business that helps women in male-dominated professions advance. Katie Snapp and [...]]]></description>
			<content:encoded><![CDATA[<p><em>[Note: This article was written for BlogHer and refers to that. It was originally <a href="http://www.blogher.com/mentoring-leadership-skills-women-tech">posted on BlogHer</a>.]</em></p>
<p>This is the tale of how two women – one from an engineering background and one from a restaurant background – came together to create a new business that helps women in male-dominated professions advance.</p>
<p>Katie Snapp and Carol Wight are two entrepreneurs who aim to help women nurture their leadership skills so that they can advance in their careers. They don&#8217;t aim at women in tech in particular, but women in male-dominated tech careers are certainly prime candidates for their career advancement tips.</p>
<p>In fact, that&#8217;s how I discovered Katie Snapp and Carol Wight. They were speaking on female leadership skills at a women in tech event.</p>
<p><a href="http://www.webteacher.ws/blog/wp-content/uploads/2011/12/2011Both_head.jpeg"><img class="alignnone size-full wp-image-7373" title="Katie Snapp and Carol Wight" src="http://www.webteacher.ws/blog/wp-content/uploads/2011/12/2011Both_head.jpeg" alt="Katie Snapp and Carol Wight" width="448" height="298" /></a></p>
<p>&nbsp;</p>
<p>I was impressed with how these business entrepreneurs cover all the bases with their business, <a href="http://www.skirtstrategies.com/">Skirt Strategies</a>. They do all the consulting and speaking work you&#8217;d expect from leadership trainers, but they do more than that. They&#8217;ve written a book of leadership tips: the second edition was just released. It&#8217;s called <a href="http://www.skirtstrategies.com/book"><cite>Skirt Strategies</cite></a> and is an unusual format. Each tip (there are 249) is centered on a page surrounded by white space. They encourage you to write in the area around the tip with new ideas, comments, and whatever else might motivate you.</p>
<p><a href="http://www.webteacher.ws/blog/wp-content/uploads/2011/12/proposed-cover-1.png"><img class="alignnone size-medium wp-image-7374" title="Skirt Strategies" src="http://www.webteacher.ws/blog/wp-content/uploads/2011/12/proposed-cover-1-197x300.png" alt="Skirt Strategies" width="197" height="300" /></a></p>
<p>&nbsp;</p>
<p>Their web site offers both free and members-only tips including newsletters and videos. They are so adept with the videos they create that I asked them if they&#8217;d answer my interview questions in video format. I sent them some questions, and ask Paula Gregorowicz, BlogHer&#8217;s Section Editor for Careers, to contribute some questions as well. Our questions were about their backgrounds, how they got their business going, what they considered &#8220;success&#8221; for themselves, and for one <em>big</em> tip to give to the women of BlogHer who wanted to move into stronger leadership roles.</p>
<p>Here&#8217;s their video, just for BlogHer.</p>
<p><object width="448" height="252" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/pc_fyisNAe8?version=3&amp;hl=en_US" /><param name="allowfullscreen" value="true" /><embed width="448" height="252" type="application/x-shockwave-flash" src="http://www.youtube.com/v/pc_fyisNAe8?version=3&amp;hl=en_US" allowFullScreen="true" allowscriptaccess="always" allowfullscreen="true" /></object></p>
<p>To get the most out of their leadership training with workbooks and weekly skills development exercises, you need to become a paid member. But you can sample what they do before you join. They have quite a few free video tips on YouTube, where they are called <a href="http://www.youtube.com/user/betterleadership?feature=watch">betterleadership</a>, including <a href="http://youtu.be/3jdHM7Ev-W8">this one</a>, which is an example of the video tips you can subscribe to on the <a href="http://www.skirtstrategies.com/">web site</a>. You can also watch their blog, where you&#8217;ll find articles such as <a href="http://www.skirtstrategies.com/happy-hour-blog-posts?mode=PostView&amp;bmi=697275">Natural Skills &#8211; how do I know which I have</a>.</p>
<p>I was hooked on Katie and Carol when I realized how they use technology in so many ways to run a business that supports interpersonal skill development for women in all fields, but particularly in STEM fields. They must follow their own advice!</p>
<hr />
<p><small>© vdebolt for <a href="http://www.webteacher.ws">Web Teacher</a>, 2011. |
<a href="http://www.webteacher.ws/2011/12/06/leadership-skills-for-women-in-tech/">Permalink</a> |
<a href="http://www.webteacher.ws/2011/12/06/leadership-skills-for-women-in-tech/#comments">No comment</a> |

]]></content:encoded>
			<wfw:commentRss>http://www.webteacher.ws/2011/12/06/leadership-skills-for-women-in-tech/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Guest Post: Meta Descriptions</title>
		<link>http://www.webteacher.ws/2011/11/18/guest-post-meta-descriptions/</link>
		<comments>http://www.webteacher.ws/2011/11/18/guest-post-meta-descriptions/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 13:28:00 +0000</pubDate>
		<dc:creator>vdebolt</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[SearchEngines]]></category>
		<category><![CDATA[SocialMedia]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[web-education]]></category>
		<category><![CDATA[WebFoundation]]></category>
		<category><![CDATA[meta description]]></category>
		<category><![CDATA[meta elements]]></category>
		<category><![CDATA[meta tags]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://www.webteacher.ws/?p=7321</guid>
		<description><![CDATA[What search engines and sites like Facebook actually do with meta description information.]]></description>
			<content:encoded><![CDATA[<p>The keywords and phrases you use in your Meta description tag may not affect your page&#8217;s ranking in the search engines, but this tag can still come in handy in your overall SEO and social media marketing campaigns.</p>
<h3>What Is the Meta Description Tag?</h3>
<p>It&#8217;s a snippet of HTML code that belongs inside the &lt;Head&gt; &lt;/Head&gt; section of a web page. It is usually placed after the Title tag and before the Meta keywords tag (if you use one), although the order is not important.</p>
<p>The proper syntax for this HTML tag is:</p>
<p>&lt;META NAME=&#8221;Description&#8221; CONTENT=&#8221;Your descriptive sentence or two goes here.&#8221;&gt;</p>
<p>If you&#8217;re using a content management system (CMS), look for a field to fill out that&#8217;s called Meta Description, or possibly just &#8220;Description.&#8221;</p>
<p>Many years ago, the information contained in a Meta description could slightly help a page rank highly for the words that were contained within it. Today, neither Google, Bing, nor Yahoo! use it as a ranking signal.</p>
<p>In other words, whether you use your important keyword phrases in your Meta description tag or not, the position of your page in the search engine results will not be affected. So in terms of rankings, you could easily leave it out altogether.</p>
<h3>But should you?</h3>
<p>There are 3 important ways that Meta descriptions are being used today that make them an important part of your SEO and overall online marketing strategy:</p>
<ol>
<li>They can be used as the description (or part of the description) of your page if it shows up in the search results.</li>
<li>They are often used as part of the descriptive information for your pages when Google shows &#8220;extended sitelinks&#8221; for your site.</li>
<li>They are often used as the default description in social media marketing links such as Facebook and Google+.</li>
</ol>
<p>Let&#8217;s look at each of these in more detail.</p>
<h3>1. Meta Descriptions in the Search Results</h3>
<p>People often think that whatever they put in their Meta description tag will be the default description that the search engines use under the clickable link to their site in the search results. While this is sometimes true, it&#8217;s not always the case.</p>
<p>Currently, if you&#8217;re searching for a site by its URL (for example www.highrankings.com) Google tends to use the first 20 to 25 words of your Meta description as the default description in the search engine result pages (SERP). However, if you have a listing at DMOZ, also known as the Open Directory Project (ODP) and are not using the &#8220;noodp&#8221; tag, they may default to that description instead. (Do a search at Google for www.amazon.com to see an example.)</p>
<p>Bing and Yahoo!, on the other hand, don&#8217;t always default to the Meta description tag for URL searches. Sometimes they do, and sometimes they don&#8217;t. A search for www.highrankings.com at Bing or Yahoo! shows content from my home page as the description rather than the contents of my Meta description tag.</p>
<p>Of course, real people aren&#8217;t typically searching for a site by URL, so what the search engines show for those types of search queries is not as important as a true keyword search. So don&#8217;t get hung up on what you see when you search for your site by its URL or if you&#8217;re doing a &#8220;site:command&#8221; search to see how they&#8217;re indexing your pages.</p>
<p>Instead, go to your favorite web analytics program and find the keyword phrases that are currently bringing you the most traffic. Then see what your description looks like at Google when you type in those keywords.</p>
<p>And surprise! What you&#8217;ll find is that your search results description will be different for every search query! You may see any combination of the following used:</p>
<ul>
<li>Your entire Meta description tag text as the complete description (typically if it&#8217;s highly relevant and contains no more than 25 words).</li>
<li>A full sentence pulled from your Meta description tag, but not the entire Meta description (if it contains more than one sentence).</li>
<li>Text from one part of your Meta description mashed together with text from another part of it (if it&#8217;s more than 25 words long).</li>
<li>Some text from your Meta description mashed together with some text from the page.</li>
<li>Some text from your page mashed together from some other text from your page (nothing from the Meta description).</li>
</ul>
<p>Some of the circumstances that cause Google to not use text from your Meta description may include:</p>
<ul>
<li>The information in the Meta description tag was not specific to the page it was on.</li>
<li>The search query used some words that were not in the Meta description, but those words (or some of them) were used in the page content. This includes words that Google considers somewhat synonymous, such as &#8220;copy&#8221; and &#8220;copywriting&#8221; or &#8220;SEO&#8221; and &#8220;search engine optimization.&#8221;</li>
</ul>
<p>But even the above are not hard and fast rules. Google doesn&#8217;t always use all or part of the Meta description even when the exact search phrase was contained within it – especially if the search query is also contained within the content of the page. Suffice it to say that there are no hard and fast rules for when Google will show it and when they won&#8217;t.</p>
<p>My recommendation is to always use keywords on any pages where you get search engine visitors (or hope to get them). Make them very specific to the page they&#8217;re on by describing what someone will find when they click through to the page from the search results, while also using variations of your targeted keywords.</p>
<p>Because Google will show only show around 20 to 25 words as your description, many SEOs recommend that you limit this tag to a certain number of characters. In reality, however, you&#8217;re not limited to any specific number. Your Meta description tag can be as long as you want it to be because Google will pull out the relevant parts of it and make their own snippet anyway.</p>
<p>For instance, if you&#8217;re optimizing a page for 3 different keyword phrases, you could write a 3-sentence Meta description tag, with each sentence focusing on a different phrase. You could probably even insert more than 3 phrases in those sentences if you&#8217;re a good wordsmith. The idea, however, is not to stuff this tag full of keywords, but to write each sentence to be a compelling marketing statement – a statement that naturally uses the keywords people might be typing into Google to find your site.</p>
<h3>2. Meta Descriptions and Extended Sitelinks</h3>
<p>These days, Google often uses the first few words from your Meta description tag when they create the &#8220;extended sitelinks&#8221; for your website. But this too is not set in stone and is highly keyword dependent. You&#8217;ll see different sitelinks and different descriptions showing up depending on the words a searcher used at Google.</p>
<p>As an example, if you do a search for &#8220;High Rankings&#8221; at Google, you&#8217;ll see my sitelinks for that search query.</p>
<p><img class="alignnone" title="sitelinks" src="http://www.highrankings.com/stuff/contentmgr/files/0/f6ed822ae43e2942b8fe75b469f2d5eb/misc/sitelinks_hr.png" alt="sitelinks" width="550" height="403" /></p>
<p>At this moment, Google is showing my home page as the top result with 6 inner pages beneath:</p>
<ul>
<li>Forum home page: Description is from DMOZ/ODP. This page has the generic Meta description that is on every page of the forum.</li>
<li>Link building forum home page: Description is content pulled from the page that uses the words &#8220;High Rankings&#8221; in it.</li>
<li>SEO articles page: First part of Meta description.</li>
<li>Newsletter home page: First part of Meta description.</li>
<li>SEO/SEM resources page: First part of Meta description.</li>
<li>SEO classes page: First part of Meta description.</li>
</ul>
<p>For the most part, they&#8217;re using the first part of the Meta description as the sitelink snippet, but not always. You may have noticed that I optimized those Meta description sitelink snippets that are showing by front loading them so that the first 5-7 words or so are a short description of what the page is all about.</p>
<p>But here&#8217;s the rub. Do a Google search for &#8220;Jill Whalen SEO.&#8221; You should still see sitelinks, and you&#8217;ll even see some of the same ones as with the previous query, but some of the descriptions are different:</p>
<p><img class="alignnone" title="search results" src="http://www.highrankings.com/stuff/contentmgr/files/0/f6ed822ae43e2942b8fe75b469f2d5eb/misc/sitelinks_jwseo.png" alt="search results" width="550" height="352" /></p>
<p>While the forum home page shows in both, this time Google has pulled text from the page rather than using the DMOZ/ODP description. This is likely because this search query had the word &#8220;SEO&#8221; in it while the other one didn&#8217;t. The SEO articles page also shows up here, and it is using the same Meta description snippet as the High Rankings query. The other sitelinks are different from before, with 3 out of 4 using the Meta description.</p>
<p>As you can see, while you do have some control over your sitelink descriptions via your Meta description tag, Google might not always use them (just as Google does with their regular search results). Your best chance of having them show is to use, close to the beginning of your description tags, the words that you know pull up sitelinks. Also, be as descriptive as possible within the first 5 to 7 words.</p>
<h3>3. Meta Descriptions and Social Media Marketing</h3>
<p>Ever wonder why some Facebook links have great descriptions and others don&#8217;t seem to make any sense? It&#8217;s because some site owners have taken the time to write a summary of the article and place it into their Meta description tag, and some have not. If your article has a Meta description, Facebook and Google+ will default to that when you share a link on your profile or &#8220;Page.&#8221; If there&#8217;s no Meta description, you&#8217;ll usually see the first sentence or so from the page being used as the default.</p>
<p>While anyone can edit the description that Facebook defaults to, most people don&#8217;t. And at this time on Google+ you can&#8217;t even edit the default description. You can either leave it as is or delete it all together. Let&#8217;s face it &#8212; most of the time the first sentence of an article is not a good description of the rest of it. It&#8217;s not supposed to be, because that&#8217;s not what a first sentence is for!</p>
<p>Therefore, I strongly advise you to always write a compelling 1- or 2-sentence description for all of your articles and blog content that may be shared via social media, and place it into your Meta description tag. This will give you a big jump on your competitors who haven&#8217;t figured this out yet, making your social media content much more clickable because people will know what the article is actually about before they click on it.</p>
<p>Overall, the Meta description tag gives you a little bit more control over what people might see before they click over to your site. The more compelling it is, the more clickthroughs you should see. If your Meta description tags can help with that, then it&#8217;s certainly worth the few minutes of time it takes to create interesting, keyword-rich tags that sum up what users will find when they arrive!</p>
<p><em><a href="http://www.webteacher.ws/blog/wp-content/uploads/2011/04/jillsig.png"><img class="alignnone size-full wp-image-6303" title="Jill Whalen" src="http://www.webteacher.ws/blog/wp-content/uploads/2011/04/jillsig.png" alt="Jill Whalen" width="92" height="100" /></a></em></p>
<p><em>Guest Author Jill Whalen is CEO and Founder of <a href="http://www.highrankings.com/">High Rankings</a>. This article was originally published on her site, and in the <a href="http://www.highrankings.com/newsletter/subscription.php">High Rankings Newsletter</a>.</em></p>
<hr />
<p><small>© vdebolt for <a href="http://www.webteacher.ws">Web Teacher</a>, 2011. |
<a href="http://www.webteacher.ws/2011/11/18/guest-post-meta-descriptions/">Permalink</a> |
<a href="http://www.webteacher.ws/2011/11/18/guest-post-meta-descriptions/#comments">No comment</a> |

]]></content:encoded>
			<wfw:commentRss>http://www.webteacher.ws/2011/11/18/guest-post-meta-descriptions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Themeefy looks great for instructors</title>
		<link>http://www.webteacher.ws/2011/10/17/themeefy-looks-great-for-instructors/</link>
		<comments>http://www.webteacher.ws/2011/10/17/themeefy-looks-great-for-instructors/#comments</comments>
		<pubDate>Mon, 17 Oct 2011 12:45:52 +0000</pubDate>
		<dc:creator>vdebolt</dc:creator>
				<category><![CDATA[general-education]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[ProductReview]]></category>
		<category><![CDATA[teaching tips]]></category>
		<category><![CDATA[UsefulLinks]]></category>
		<category><![CDATA[web-education]]></category>
		<category><![CDATA[Themeefy]]></category>

		<guid isPermaLink="false">http://www.webteacher.ws/?p=7138</guid>
		<description><![CDATA[Themeefy looks great for instructors (and students who have to do a presentation). Read more about it at Digital Inspiration, where you can look at Amit&#8217;s sample about Steve Jobs. Here&#8217;s an example from the Themeefy site. It&#8217;s free. Sign up with a Twitter or Facebook login. © vdebolt for Web Teacher, 2011. &#124; Permalink [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.themeefy.com/landing">Themeefy</a> looks great for instructors (and students who have to do a presentation). Read more about it at <a href="http://www.labnol.org/internet/magazine-with-web-content/20207/">Digital Inspiration</a>, where you can look at Amit&#8217;s sample about Steve Jobs.</p>
<p>Here&#8217;s <a href="http://www.themeefy.com/titashneogi/18694">an example</a> from the Themeefy site. It&#8217;s free. Sign up with a Twitter or Facebook login.</p>
<hr />
<p><small>© vdebolt for <a href="http://www.webteacher.ws">Web Teacher</a>, 2011. |
<a href="http://www.webteacher.ws/2011/10/17/themeefy-looks-great-for-instructors/">Permalink</a> |
<a href="http://www.webteacher.ws/2011/10/17/themeefy-looks-great-for-instructors/#comments">No comment</a> |

]]></content:encoded>
			<wfw:commentRss>http://www.webteacher.ws/2011/10/17/themeefy-looks-great-for-instructors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redbox now renting games</title>
		<link>http://www.webteacher.ws/2011/06/22/redbox-now-renting-games/</link>
		<comments>http://www.webteacher.ws/2011/06/22/redbox-now-renting-games/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 12:36:18 +0000</pubDate>
		<dc:creator>vdebolt</dc:creator>
				<category><![CDATA[BlogHer]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[News-Politics]]></category>
		<category><![CDATA[gaming]]></category>

		<guid isPermaLink="false">http://www.webteacher.ws/?p=6607</guid>
		<description><![CDATA[Redbox has testing the idea of video game rentals for several months and concluded that it&#8217;s a go. Soon almost all the Redbox kiosks will include popular video games for rental. The price for a video game will be $2 per day. There should be between 22 and 28 video game titles to choose from [...]]]></description>
			<content:encoded><![CDATA[<p>Redbox has testing the idea of video game rentals for several months and concluded that it&#8217;s a go. Soon almost all the Redbox kiosks will include popular video games for rental.</p>
<p>The price for a video game will be $2 per day. There should be between 22 and 28 video game titles to choose from in a kiosk, still leaving space for about 200 movies, according to <a href="http://latimesblogs.latimes.com/entertainmentnewsbuzz/2011/06/redbox-video-games-rentals-go-live-nationwide.html">Redbox presses play on video games rentals across its kiosks</a>.</p>
<p><a title="A big mac and saving private ryan please by Valerie Everett, on Flickr" href="http://www.flickr.com/photos/valeriebb/2224649723/"><img src="http://farm3.static.flickr.com/2278/2224649723_f73a7e124e.jpg" alt="A big mac and saving private ryan please" width="454" height="500" /></a><br />
Image Credit: <a href="http://www.flickr.com/photos/valeriebb/2224649723/">Valeria Everett</a></p>
<p><a href="http://www.gamasutra.com/view/news/34329/Interview_Redbox_Ramps_Up_Game_Rental_Business.php">Gamasutra</a> reports that games will be available for console devices such as Wii, Xbox 360 and PlayStation 3, but not for handheld devices.</p>
<blockquote><p>While the company did experiment with handheld games during earlier market tests, it opted to ignore systems like the Nintendo DS and 3DS when it expanded the program.</p></blockquote>
<p>New releases of games will be available with a week of launch. If you&#8217;re a Redbox user, you know you can walk up to a kiosk and grab whatever looks good, but you can also go online to check availability of titles and reserve titles. That will apply to video games as well.</p>
<h3>Renting vs. Buying</h3>
<p>I just bought a video game for a family member and it cost me $54. It would take 27 days of rentals to reach that price. Renting looks pretty good.</p>
<p>I see two issues in the renting vs. buying question. If you rent a game for just a day or two, you can decide whether to take the high dollar plunge and buy a copy. Buying a copy of the game makes sense when you know it will engage the gamers in the house for an extended period before they reach mastery level and have squeezed every moment of fun out of the game.</p>
<p>Is this great news for your household? Will you be taking advantage of the chance to rent a video game for $2 a day?</p>
<p><a href="http://www.blogher.com/invest-2-video-game-redbox">Cross-posted at BlogHer</a>.</p>
<hr />
<p><small>© vdebolt for <a href="http://www.webteacher.ws">Web Teacher</a>, 2011. |
<a href="http://www.webteacher.ws/2011/06/22/redbox-now-renting-games/">Permalink</a> |
<a href="http://www.webteacher.ws/2011/06/22/redbox-now-renting-games/#comments">2 comments</a> |

]]></content:encoded>
			<wfw:commentRss>http://www.webteacher.ws/2011/06/22/redbox-now-renting-games/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tips For Choosing A Search Friendly Domain Name</title>
		<link>http://www.webteacher.ws/2011/04/25/tips-for-choosing-a-search-friendly-domain-name/</link>
		<comments>http://www.webteacher.ws/2011/04/25/tips-for-choosing-a-search-friendly-domain-name/#comments</comments>
		<pubDate>Mon, 25 Apr 2011 13:40:34 +0000</pubDate>
		<dc:creator>vdebolt</dc:creator>
				<category><![CDATA[GuestPost]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[SearchEngines]]></category>
		<category><![CDATA[WebFoundation]]></category>

		<guid isPermaLink="false">http://www.webteacher.ws/?p=6369</guid>
		<description><![CDATA[One thing that many people do not think about when they choose a domain name is whether it is search engine friendly. However, if you are starting a business then you will need to ensure that your website is easy enough to find. After all, the easier the site is to find the more potential [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-6370" title="Internet concept - Domain names" src="http://www.webteacher.ws/blog/wp-content/uploads/2011/04/domainnames.jpg" alt="domain names" width="412" height="291" /></p>
<p>One thing that many people do not think about when they choose a domain name is whether it is search engine friendly. However, if you are starting a business then you will need to ensure that your website is easy enough to find. After all, the easier the site is to find the more potential customers you are likely to receive.</p>
<p>The good news is, there is very rarely a terribly bad domain name. Some may be a little more search friendly than others, but even if you have chosen a more difficult one then it isn’t the end of the world. There are things that you can do to improve how easy it is to find. Most people opt for a brand-specific domain name. However, you could also choose a keyword driven domain name instead.</p>
<h3>Choosing a Keyword Driven Domain Name</h3>
<p>Ideally you want to choose an exact-match domain name. This means that a URL has a character for character match of a certain keyword. These types of domain names are pushed high up the search engine rankings. In order to produce an exact match domain name you will need to follow particular criteria. These include:</p>
<ul>
<li>No Hyphens</li>
<li>Have a .Com .Net or .Org Domain Extension</li>
<li>Identical Spelling and Word Order</li>
</ul>
<p>You will find that extensions which feature do-com are far more popular than others. They are considered to be more credible and if you plan on selling the website it will have more value than other extensions too. If you use extensions such as .US, .Info or .Edu then they will not always produce high SEO results.</p>
<p>When you are creating a domain name you should try to avoid Hyphens. A domain name which features a hyphen is not an exact match domain name. If you find that the domain name that you want is taken then there are ways to make it unique without placing an hyphen between the words. For example, if your exact match domain name would have been Redial.Com, you could add words such as “Top” or “Best” to increase its popularity and to make it unique.</p>
<p>You will also need to make sure that the spelling of the domain name matches the keyword. For example, it should have the same spelling and be in the same order as the keyword that you are targeting. HairdressingTools.com for example will target Hairdressing Tools. If you were to choose a domain name such as HairdresingTools.com then the spelling error would affect your search engine ranking.</p>
<h3>Finding the Best Keywords</h3>
<p>One of the best tricks that you can use to get a good exact match domain name is to search for relevant keywords. You can do this through <a href="https://adwords.google.com/o/Targeting/Explorer?__u=1000000000&amp;__c=1000000000&amp;ideaRequestType=KEYWORD_IDEAS#search.none">Google Keywords</a>. Use the keywords that you want to target. Once you have typed those keywords in you will be able to see which ones have a .org, .com or a .net extension. Next you should download all of the keywords into a Excel document. Under the keyword tool you should find the word “Download”. Select all from the list and an Excel spreadsheet will open.</p>
<p>Once you have the keywords you can use the most popular ones in a bulk domain search tool. This will tell you which keywords you should use for your domain that is currently not already taken.</p>
<p>Overall creating an exact match domain name can be frustrating but it will help you to improve your search rankings. It is important to make your site as easy as possible to find. Why not follow the above advice and create an exact-match domain name now?</p>
<p><em>This guest post is by Lior who is an advisor to an <a href="http://www.theapplicants.com/">applicant tracking software</a> company and also works with an <a href="http://socsci.tau.ac.il/poli-LCE/">MA in Israel</a> program.</em></p>
<hr />
<p><small>© vdebolt for <a href="http://www.webteacher.ws">Web Teacher</a>, 2011. |
<a href="http://www.webteacher.ws/2011/04/25/tips-for-choosing-a-search-friendly-domain-name/">Permalink</a> |
<a href="http://www.webteacher.ws/2011/04/25/tips-for-choosing-a-search-friendly-domain-name/#comments">No comment</a> |

]]></content:encoded>
			<wfw:commentRss>http://www.webteacher.ws/2011/04/25/tips-for-choosing-a-search-friendly-domain-name/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Store your music in the cloud and stream it from any computer.</title>
		<link>http://www.webteacher.ws/2011/03/30/store-your-music-in-the-cloud-and-stream-it-from-any-computer/</link>
		<comments>http://www.webteacher.ws/2011/03/30/store-your-music-in-the-cloud-and-stream-it-from-any-computer/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 13:33:10 +0000</pubDate>
		<dc:creator>vdebolt</dc:creator>
				<category><![CDATA[BlogHer]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[mobiles]]></category>
		<category><![CDATA[Amazon Cloud Drive]]></category>
		<category><![CDATA[Amazon Cloud Storage]]></category>

		<guid isPermaLink="false">http://www.webteacher.ws/?p=6270</guid>
		<description><![CDATA[My granddaughter&#8217;s hard drive had to be replaced. When she opened up iTunes on the new hard drive, she was dismayed to discover that her music wasn&#8217;t already there. I remember saying to her, &#8220;Your music isn&#8217;t in the cloud. It&#8217;s only on your hard drive.&#8221; Things are changing. The grandkid&#8217;s music can be in [...]]]></description>
			<content:encoded><![CDATA[<p>My granddaughter&#8217;s hard drive had to be replaced. When she opened up iTunes on the new hard drive, she was dismayed to discover that her music wasn&#8217;t already there. I remember saying to her, &#8220;Your music isn&#8217;t in the cloud. It&#8217;s only on your hard drive.&#8221;</p>
<p>Things are changing. The grandkid&#8217;s music can be in the cloud now.</p>
<p><a title="amazon cloud player announcement by veesees, on Flickr" href="http://www.flickr.com/photos/veesees/5570974003/"><img src="http://farm6.static.flickr.com/5101/5570974003_94deb246a4.jpg" alt="amazon cloud player announcement" width="460" height="331" /></a></p>
<p>Amazon announced Amazon Cloud Drive and Amazon Cloud Player today.  <a href="https://www.amazon.com/clouddrive/learnmore">Cloud Drive</a> is described as &#8220;your personal disk drive in the sky.&#8221; They are offering 5 GB of online storage free. You can store anything, including files uploaded from your computer, and access it from any computer.</p>
<p>Cloud Player will play music you have stored on your Cloud Drive. It can be listened to from any computer or with a free <a href="http://www.amazon.com/Amazon-com-Amazon-MP3/dp/B004FRX0MY/">Android phone app</a>.</p>
<p>If you make a new MP3 purchase from Amazon right now, they&#8217;ll increase your Cloud Drive storage to 20 GB free for one year. (It&#8217;s hard to find the price for the storage upgrade without actually signing up for it. If you know what it is, would you let me know?) More importantly, any MP3 purchase you make from Amazon is stored free and doesn&#8217;t count against your storage quota.</p>
<p>Amazon jumped into the music in the cloud arena first, but Google and Apple are both working on a similar product. They are going to have to come up with some sweet deals to top 20GB of free storage plus free storage of any purchases.</p>
<p>Suzanne Kantra at Techlicious commented in <a href="http://www.techlicious.com/blog/amazon-cloud-drive-cloud-player-streaming-music-service/">Amazon Cloud Drive &amp; Cloud Player Streaming Music Service</a> that</p>
<blockquote><p>Until now, I’ve been pretty impressed with the way Apple’s iTunes lets me keep my music synced between my iPhone, iPod Touch, iPad and a few computers. Today, with the introduction of Amazon’s Cloud Player streaming music service and Cloud Drive file storage service, iTunes seems a little antiquated.</p>
<p>Instead of plugging all your devices into one computer to keep them synced, which iTunes requires, Amazon Cloud Player, in conjunction with Cloud Drive, keeps your music stored on its servers, so it’s available to any computer or Android device that has an Internet connection.</p></blockquote>
<p>iTunes may not feel antiquated for long. We&#8217;ll have to see what Apple comes up with to compete in this market.</p>
<p>Suzanne at Techlicious explains how it works.</p>
<blockquote><p>Here’s how it works. First you download and install the Amazon MP3 Uploader program. It scours your computer for all of your music—including music you’ve purchased through iTunes—and lets you choose what you’d like to store in your Cloud Drive. You can choose by playlist or individual songs and all files are stored at their original bit rate. If you go to Cloud Drive directly, you’ll see folders for documents, music, pictures and videos, so you can use Cloud Drive as your online backup service. It also means video is next on Amazon’s list for its Cloud Player.</p></blockquote>
<p>Free backup space for all your music, including music from iTunes. Good heavens, what&#8217;s not to like?</p>
<p>What do you think? Are you going to give it a try?</p>
<p class="small">[Ed.: This post appeared on <a href="http://www.blogher.com/stream-all-your-music-amazon-cloud-player">BlogHer</a> in a slightly different form.]</p>
<hr />
<p><small>© vdebolt for <a href="http://www.webteacher.ws">Web Teacher</a>, 2011. |
<a href="http://www.webteacher.ws/2011/03/30/store-your-music-in-the-cloud-and-stream-it-from-any-computer/">Permalink</a> |
<a href="http://www.webteacher.ws/2011/03/30/store-your-music-in-the-cloud-and-stream-it-from-any-computer/#comments">2 comments</a> |

]]></content:encoded>
			<wfw:commentRss>http://www.webteacher.ws/2011/03/30/store-your-music-in-the-cloud-and-stream-it-from-any-computer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Review: World Wide Mind: The Coming Integration of Humanity, Machines, and the Internet</title>
		<link>http://www.webteacher.ws/2011/03/08/review-world-wide-mind-the-coming-integration-of-humanity-machines-and-the-internet/</link>
		<comments>http://www.webteacher.ws/2011/03/08/review-world-wide-mind-the-coming-integration-of-humanity-machines-and-the-internet/#comments</comments>
		<pubDate>Tue, 08 Mar 2011 14:27:22 +0000</pubDate>
		<dc:creator>vdebolt</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[ProductReview]]></category>
		<category><![CDATA[book review]]></category>

		<guid isPermaLink="false">http://www.webteacher.ws/?p=6172</guid>
		<description><![CDATA[product World Wide Mind: The Coming Integration of Humanity, Machines, and the Internet by Michael Chorost is published by Free Press (2011). The title of this book is a good summary of what it&#8217;s about. It&#8217;s not about web design or web education, it&#8217;s about how the human brain could connect with other human minds [...]]]></description>
			<content:encoded><![CDATA[<div class="hreview"><span class="type" style="display: none;">product</span><br />
<a href="http://www.amazon.com/gp/product/1439119147?ie=UTF8&amp;tag=musicaustincom&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1439119147"><img class="photo" title="affiliate link to Amazon.com" src="http://www.webteacher.ws/img/worldwidemind.jpg" alt="affiliate link to Amazon.com" /></a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=musicaustincom&amp;l=as2&amp;o=1&amp;a=1439119147" border="0" alt="" width="1" height="1" /></p>
<div class="description">
<p><a class="fn url" title="affiliate link to Amazon.com" href="http://www.amazon.com/gp/product/1439119147?ie=UTF8&amp;tag=musicaustincom&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1439119147">World Wide Mind: The Coming Integration of Humanity, Machines, and the Internet</a><img style="border: none !important; margin: 0px !important;" src="http://www.assoc-amazon.com/e/ir?t=musicaustincom&amp;l=as2&amp;o=1&amp;a=1439119147" border="0" alt="" width="1" height="1" /> by Michael Chorost is published by Free Press (2011).</p>
<p>The title of this book is a good summary of what it&#8217;s about. It&#8217;s not about web design or web education, it&#8217;s about how the human brain could connect with other human minds through the Internet.</p>
<p>Chorost describes the book as a thought experiment about things that are conceptually plausible, though not yet in practice. He gives many examples of how his ideas about the future are based in technology that is already in use. There are chapters on the technology that is used to detect brain activity, chapters on nanowires and optogenetics – both mechanisms that can read <em>and write</em> brain activity, chapters on communications protocols for sending perceptions and memories from one brain to another, chapters on examples of what might result from linking humans to the Internet, and chapters on a possible future collective mind. The writing style is accessible and clear. In an age when people talk about neural pathways over the dinner table, the science discussions in the book are open and written for the average informed person.</p>
<p>Woven in with all this science reporting and speculation, is a personal narrative about Chorost&#8217;s already wired brain – he has chochlear implants. He also uses stories about his personal life and relationships to introduce concepts about how the human mind works. The book is a surprisingly easy read.</p>
<p>Some of Chorost&#8217;s examples  are part of pop culture. He talks about <cite>The Matrix</cite> and <cite>Eternal Sunshine of the Spotless Mind</cite>, for example. He doesn&#8217;t mention <cite>Dollhouse</cite>, but I think it contains the best example of  hive mind as he describes it. I don&#8217;t mean the plot line in <cite>Dollhouse</cite> where new personalities are injected into people electronically and they can suddenly be doctors or kick boxing experts. Chorost&#8217;s says that brains can&#8217;t learn that way. But there is <a href="http://www.imdb.com/title/tt1535689/">a particular episode</a> of <cite>Dollhouse</cite> where the character Victor is linked to a group of soldiers, who all act with awareness of what the other soldiers are doing. Yet Victor can use his own will and thinking, even while being aware of what the others he&#8217;s linked to are doing and thinking.</p>
<p>That <cite>Dollhouse</cite> episode is an example of Chorost&#8217;s vision of the collective awareness that would come with linking the human brain to the Internet: an awareness, a perception, but not an abandonment of one&#8217;s own thinking, one&#8217;s own self. He thinks this would be a good thing.</p>
<p>The ways of making that a reality involve wiring the brain with tiny wires and/or devices, or possibly using genetically modified genes that are triggered into action with light (optogenetics). The part of the process that he accepts without comment is that people would be willing to step forward and allow these things to be done to their brains. That seems like a pretty big sticking point to me.</p>
<p>The book has notes, a bibliography, and an index for those who want to explore in depth.</p>
<p class="summary">Summary: Theoretical and speculative, but fascinating.</p>
<p class="summary"><span class="item"><span class="reviewer vcard">A review by <a rel="me" href="http://www.webteacher.ws/">Virginia DeBolt</a></span> of <cite>World Wide Mind</cite> (rating: <span class="rating">3</span> stars) </span></p>
</div>
</div>
<p class="small">Technorati Tags: <a rel="tag" href="http://technorati.com/tag/world+wide+mind">World Wide Mind: The Coming Integration of Humanity, Machines, and the Internet</a>, <a rel="tag" href="http://technorati.com/tag/book+reviews">book reviews</a></p>
<hr />
<p><small>© vdebolt for <a href="http://www.webteacher.ws">Web Teacher</a>, 2011. |
<a href="http://www.webteacher.ws/2011/03/08/review-world-wide-mind-the-coming-integration-of-humanity-machines-and-the-internet/">Permalink</a> |
<a href="http://www.webteacher.ws/2011/03/08/review-world-wide-mind-the-coming-integration-of-humanity-machines-and-the-internet/#comments">No comment</a> |

]]></content:encoded>
			<wfw:commentRss>http://www.webteacher.ws/2011/03/08/review-world-wide-mind-the-coming-integration-of-humanity-machines-and-the-internet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>USA Student Internet Guide</title>
		<link>http://www.webteacher.ws/2011/02/21/usa-student-internet-guide/</link>
		<comments>http://www.webteacher.ws/2011/02/21/usa-student-internet-guide/#comments</comments>
		<pubDate>Mon, 21 Feb 2011 14:13:34 +0000</pubDate>
		<dc:creator>vdebolt</dc:creator>
				<category><![CDATA[GuestPost]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.webteacher.ws/?p=6076</guid>
		<description><![CDATA[For the modern American college student, having easy access to the Internet is a necessity for both your studies and social activities. However, many American students live off campus where a university computer network is not readily available. Therefore, acquiring Internet access from a service provider is crucial. Here are some options: Types of Internet [...]]]></description>
			<content:encoded><![CDATA[<p>For the modern American college student, having easy access to the Internet is a necessity for both your studies and social activities. However, many American students live off campus where a university computer network is not readily available. Therefore, acquiring Internet access from a service provider is crucial. Here are some options:</p>
<h3>Types of Internet Service</h3>
<h4>Satellite</h4>
<p>This type of service is pretty straightforward. Your Internet service is provided from a signal that’s sent via satellite. Satellite tends to be just as reliable as DSL or Cable, with the exception of inclement weather. However, phone lines and cable lines are not found everywhere but satellite can be set in any location.</p>
<h4>Dial-Up</h4>
<p>For those who are willing to wait a couple of minutes for the internet to load, don&#8217;t use the phone line often, or tend to use the internet more on campus, then having a dial-up service is useful for the convenience of having internet at a lower cost than its satellite, cable, or DSL counterparts. Internet Service requires a phone line and an Ethernet cord. However, when one uses dial up to access the Internet your phone line will be disabled unless your housing has multiple phone lines.</p>
<h4>DSL</h4>
<p>DSL also uses phone lines like dial-up for internet access but unlike the latter; having the additional phone service is not required. However its availability is not as widespread like other Internet providers. However, when this type of service is available, the speed is comparable to its satellite and cable counterparts.</p>
<h4>Cable</h4>
<p>This type of Internet service uses the cable lines that are installed underground and within the walls of your housing. If you have a TV, you can opt for a cable-internet package, which can be less expensive than buying the services separately. Very common and its reliability is on par with its DSL and Satellite counterparts.</p>
<h3>Speed vs. Cost Analysis</h3>
<p><a title="High Speed Internet" href="http://www.broadbandexpert.com/high-speed-internet/" target="_blank">High Speed Internet</a> access options for American students are many. If you are a student who likes to open multiple browser windows or use multimedia often, a higher bandwidth speed would be beneficial. However, having a higher Internet speed will also mean a higher bill at the end of the month. Also, if you are living with roommates, having Internet access with a higher bandwidth might be a necessity.</p>
<p>However, living with some roommates will keep the costs down and within budget, even with a higher bandwidth speed. It is a possibility that your college or university might have some information on what Internet service provider previous students favored and if certain providers provide discounts for students at your institution.</p>
<p><em>About the author:</em> Firespin Jay is a Tech and Eco writer and enthusiast also enjoys chucking big fiery balls around attached to chains. Come and converse with me on my broadband twitter page <a href="http://www.twitter.com/FirespinJay" target="_self">@FirespinJay</a> chat soon.</p>
<hr />
<p><small>© vdebolt for <a href="http://www.webteacher.ws">Web Teacher</a>, 2011. |
<a href="http://www.webteacher.ws/2011/02/21/usa-student-internet-guide/">Permalink</a> |
<a href="http://www.webteacher.ws/2011/02/21/usa-student-internet-guide/#comments">One comment</a> |

]]></content:encoded>
			<wfw:commentRss>http://www.webteacher.ws/2011/02/21/usa-student-internet-guide/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>2010 Tech Trends: Where We&#8217;ve Been, Where We&#8217;re Headed</title>
		<link>http://www.webteacher.ws/2010/12/07/2010-tech-trends-where-weve-been-where-were-headed/</link>
		<comments>http://www.webteacher.ws/2010/12/07/2010-tech-trends-where-weve-been-where-were-headed/#comments</comments>
		<pubDate>Tue, 07 Dec 2010 13:14:29 +0000</pubDate>
		<dc:creator>vdebolt</dc:creator>
				<category><![CDATA[BlogHer]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[News-Politics]]></category>
		<category><![CDATA[SocialMedia]]></category>

		<guid isPermaLink="false">http://www.webteacher.ws/?p=5607</guid>
		<description><![CDATA[2010 was a fascinating and fast-paced year for tech. Some trends that have been around for a while reached the tipping point this year, and some new trends are emerging that will dominate 2011. eBooks and eBook readers The price for an eBook reader dropped significantly this year. The number of device choices expanded. And [...]]]></description>
			<content:encoded><![CDATA[<p>2010 was a fascinating and fast-paced year for tech. Some trends that have been around for a while reached the tipping point this year, and some new trends are emerging that will dominate 2011.</p>
<h3>eBooks and eBook readers</h3>
<p><a id="aptureLink_5qkLtdiDUJ" style="margin: 0pt auto; text-align: center; display: block; padding: 0px 6px;" href="http://www.flickr.com/photos/43602175@N06/4069260433/"><img style="border: 0px none;" title="Amazon Kindle 2 Wireless eBook Reader" src="http://static.flickr.com/2556/4069260433_7998b2c11b.jpg" alt="" width="287" height="312" /></a></p>
<p>The price for an eBook reader dropped significantly this year. The number of device choices expanded. And the number of books available in that format grew and grew and grew.</p>
<p>Anyone who has the capability to buy an eBook instead of a printed copy is choosing that as the preferred option. There are several reasons for this, among them lower price, instant delivery, and lightweight portability for a reader&#8217;s entire library.</p>
<p>I see the eBook market continuing to expand as more and more users turn to digital delivery for all kinds of reading material.</p>
<h3>Internet TV</h3>
<p><a id="aptureLink_XzNmDEHRuu" style="margin: 0pt auto; text-align: center; display: block; padding: 0px 6px;" href="http://www.flickr.com/photos/jwthompson2/430881238/"><img style="border: 0px none;" title="Apple TV on top of the TV" src="http://farm1.static.flickr.com/173/430881238_7ec9ffe8de.jpg" alt="" width="374" height="281" /></a></p>
<p>This trend hit hard this year, and I think it&#8217;s going to continue to grow. Players like Apple TV, Google TV, Netflix and others have gone from interesting outliers to mainstream. Getting TV shows and movies from what used to be standard sources like cable and satellite subscriptions may become a phenomena of the dusty past. You can stream movies from Netflix to your iPhone!</p>
<p>Of course, you still need a broadband internet connection to your home to use gadgets like an Apple TV, but as <a href="http://www.justtherightthings.com/2010/12/gifts-for-anybody/">Just The Right Things</a> points out, it&#8217;s a gadget the whole family can love.</p>
<h3>HTML5</h3>
<p style="text-align: center;"><a href="http://www.webteacher.ws/blog/wp-content/uploads/2010/11/HTML5.png"><img class="size-full wp-image-5574 aligncenter" title="HTML5" src="http://www.webteacher.ws/blog/wp-content/uploads/2010/11/HTML5.png" alt="HTML5" width="273" height="55" /></a></p>
<p>HTML is the code that is used to markup web page content into headings and paragraphs and lists and such. A lot of geeky drama went into getting HTML5 to the point where it is now – which is a still incomplete set of specs for creating web content. This year, some big players started investing time and development cycles into using HTML5 and making it work on the web. Apple announced it won&#8217;t use Flash on the iPad – which translates into using HTML5 video elements instead.</p>
<p>That&#8217;s a big ouchie for Adobe, the maker of Flash.</p>
<p>Google announced it supports HTML5 and posted some cool demos at <a href="http://www.html5rocks.com/">HTML5Rocks</a>. High traffic websites got retuned to run HTML5 with lots of hoopla around the changes. Most browsers are implementing support for HTML5 in at least some ways. Tech bloggers, like <a href="http://www.webteacher.ws/category/html5/">myself</a>, are talking about HTML5 daily. HTML5 is important to developers for mobile and mobile apps, too. In spite of the fact that it&#8217;s still changing and isn&#8217;t going to be an &#8220;official&#8221; spec for quite a while, HTML5 is going to be rocking the tech world for quite a while.</p>
<h3>Facebook: Too Big to Fail?</h3>
<p><a id="aptureLink_6a2rhDGgJr" style="margin: 0pt auto; text-align: center; display: block; padding: 0px 6px;" href="http://images.ctv.ca/archives/CTVNews/img2/20080317/475_facebook_080317.jpg"><img style="border: 0px none;" title="475 facebook 080317 jpg" src="http://images.ctv.ca/archives/CTVNews/img2/20080317/475_facebook_080317.jpg" alt="" width="326" height="137" /></a></p>
<p>In spite of all its flaws and all its privacy fails, Facebook now has over half a billion users. It expands and expands like some feature-eating swamp thing that will eventually envelop the entire planet.</p>
<p>Everything that could be considered social media – chat, email, multi-player games, status updates, blogging, file sharing, location based features, photo sharing – is part of Facebook. As soon as a new idea for social networking pops up, Facebook adds it to its feature set.</p>
<p>It&#8217;s. Just. Huge.</p>
<p>It&#8217;s even a movie. See reviews on <a href="http://womenandhollywood.com/2010/10/01/the-social-network/">Women and Hollywood</a>, <a href="http://www.genderacrossborders.com/2010/10/05/review-the-social-network/">Gender Across Borders</a>, and <a href="http://guerillawomentn.blogspot.com/2010/10/social-network-another-male-centric.html">Tennessee Guerilla Women</a>.</p>
<p>Here&#8217;s my prediction: for the next year, at least, Facebook is going to continue to grow.</p>
<h3>Cloud Computing</h3>
<p><a id="aptureLink_JjI3VR212z" style="margin: 0pt auto; text-align: center; display: block; padding: 0px 6px;" href="http://www.flickr.com/photos/dannysullivan/266951932/"><img style="border: 0px none;" title="Google Docs &amp; Spreadsheets Logo" src="http://farm1.static.flickr.com/81/266951932_0ce04e4224_o.jpg" alt="" width="163px" height="89px" /></a></p>
<p>Gmail, Flickr, Google Docs, Delicious, Dropbox, Blogspot, WordPress.com – your data, your work, your backups – but not on your hard drive. That&#8217;s the cloud, baby. Resources, software, and information somewhere out there in Internetland and separate from your computer. Accessible from any computer or mobile device. You and your information are now device and location independent. What could be more useful in today&#8217;s world? Not much, which is why the trend is growing.</p>
<h3>Grabbing for Groupon</h3>
<p><a id="aptureLink_vRrgQLIhh8" style="margin: 0pt auto; text-align: center; display: block; padding: 0px 6px;" href="http://images.intomobile.com/wp-content/uploads/2010/07/Groupon-e1279829348319.png"><img style="border: 0px none;" title="Groupon Android app brings hot deals to your phone" src="http://images.intomobile.com/wp-content/uploads/2010/07/Groupon-e1279829348319.png" alt="" width="351" height="294" /></a></p>
<p>The localized discount coupon service <a href="http://www.groupon.com/">Groupon</a> exploded this year. Everybody wants to save money and the local savings deals from Groupon are often over 50% off on things like restaurant meals and services. Groupon deals sizzle like flies to honey, like moths to a flame – big savings entices.</p>
<p>Groupon got so big, Google is trying to buy it for $6 billion. <a href="http://www.readwriteweb.com/archives/groupon_reportedly_rejects_googles_6_billion_acqui.php">Groupon said no</a>, at least for the moment. Whether Groupon stays independent or gets swallowed up by something bigger, services like this are going to grow in the next year.</p>
<h3>Mobile apps: smart phones and tablet computing</h3>
<p><a id="aptureLink_lD7RqzVoMu" style="margin: 0pt auto; text-align: center; display: block; padding: 0px 6px;" href="http://farm5.static.flickr.com/4046/4309948848_5547f3dde2.jpg"><img style="border: 0px none;" title="APPLE IPAD" src="http://farm5.static.flickr.com/4046/4309948848_5547f3dde2.jpg" alt="" width="311" height="311" /></a></p>
<p>Smart phone adoption shows no sign of slowing down. It&#8217;s penetrating every corner of the globe. In some countries, there are more mobile devices than people. Phones with apps continue to get hotter and hotter everywhere you look.</p>
<p>Tablets don&#8217;t make phone calls, but they run software and are eBook readers. The portability and connectivity offered by tablets achieves many of the same benefits as users get from smart phones, only with a bigger screen. Perfect for games and watching video.</p>
<p>Having the Internet in your pocket with a device running mobile apps is a trend that is not slowing in the next year.</p>
<p><em>What trends do you see that I overlooked? Where do you think we&#8217;re headed with tech?</em></p>
<p class="small"><a href="http://www.blogher.com/tech-trends-where-weve-been-where-were-headed">Cross-posted at BlogHer</a> in a slightly different version.</p>
<hr />
<p><small>© vdebolt for <a href="http://www.webteacher.ws">Web Teacher</a>, 2010. |
<a href="http://www.webteacher.ws/2010/12/07/2010-tech-trends-where-weve-been-where-were-headed/">Permalink</a> |
<a href="http://www.webteacher.ws/2010/12/07/2010-tech-trends-where-weve-been-where-were-headed/#comments">One comment</a> |

]]></content:encoded>
			<wfw:commentRss>http://www.webteacher.ws/2010/12/07/2010-tech-trends-where-weve-been-where-were-headed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

