<?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; OpenSource</title>
	<atom:link href="http://www.webteacher.ws/category/opensource/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>Review: Moodle for Dummies</title>
		<link>http://www.webteacher.ws/2011/08/29/review-moodle-for-dummies/</link>
		<comments>http://www.webteacher.ws/2011/08/29/review-moodle-for-dummies/#comments</comments>
		<pubDate>Mon, 29 Aug 2011 12:16:25 +0000</pubDate>
		<dc:creator>vdebolt</dc:creator>
				<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[WebDesignBookReview]]></category>

		<guid isPermaLink="false">http://www.webteacher.ws/?p=6948</guid>
		<description><![CDATA[product Moodle For Dummies (For Dummies (Computer/Tech), written by Radana Dvorak is aimed at the institutional user who is required to use Moodle instead of one of the education management systems like Blackboard. It is not meant for the individual user who might want to set up Moodle on his or her own server. The [...]]]></description>
			<content:encoded><![CDATA[<div class="hreview"><span class="type" style="display: none;">product</span><a href="http://www.amazon.com/gp/product/0470949422/ref=as_li_tf_il?ie=UTF8&amp;tag=musicaustincom&amp;linkCode=as2&amp;camp=217145&amp;creative=399373&amp;creativeASIN=0470949422"><img class="photo" title="affiliate link to Amazon.com" src="http://ws.assoc-amazon.com/widgets/q?_encoding=UTF8&amp;Format=_SL160_&amp;ASIN=0470949422&amp;MarketPlace=US&amp;ID=AsinImage&amp;WS=1&amp;tag=musicaustincom&amp;ServiceVersion=20070822" alt="" /></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=0470949422&amp;camp=217145&amp;creative=399373" alt="" width="1" height="1" border="0" /></p>
<div class="description">
<p><a class="fn url" title="affiliate link to Amazon.com" href="http://www.amazon.com/gp/product/0470949422/ref=as_li_tf_tl?ie=UTF8&amp;tag=musicaustincom&amp;linkCode=as2&amp;camp=217145&amp;creative=399373&amp;creativeASIN=0470949422">Moodle For Dummies (For Dummies (Computer/Tech)</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=0470949422&amp;camp=217145&amp;creative=399373" alt="" width="1" height="1" border="0" />, written by Radana Dvorak is aimed at the institutional user who is required to use Moodle instead of one of the education management systems like Blackboard. It is not meant for the individual user who might want to set up Moodle on his or her own server.</p>
<p>The book consists of screen by screen and menu by menu explanations of Moodle and its capabilities. It covers creating and managing courses, adding modules to courses, administering courses, setting up questions, grading, and more. There are explanations of how to add chat, blogs, and wikis to a course, and of using databases to share material with your students. You can learn how to set up for different languages, set security, and change the appearance of your course. There&#8217;s a chapter on getting reports and statistics and viewing your logs.</p>
<p>The last chapter talks about ways to keep your learners involved, but the suggestions are pretty mundane.</p>
<p>There&#8217;s nothing very exciting about <cite>Moodle for Dummies</cite>, but if you need to learn to use Moodle, this book will get you there.</p>
<p class="summary">Summary: A utilitarian explanation of absolutely everything you can do with Moodle.</p>
<p><span class="item"><span class="reviewer vcard">A review by <a href="http://www.webteacher.ws/" rel="me">Virginia DeBolt</a></span> of<cite> Moodle for Dummies </cite>(rating: 4 stars)</span></p>
</div>
</div>
<hr />
<p><small>© vdebolt for <a href="http://www.webteacher.ws">Web Teacher</a>, 2011. |
<a href="http://www.webteacher.ws/2011/08/29/review-moodle-for-dummies/">Permalink</a> |
<a href="http://www.webteacher.ws/2011/08/29/review-moodle-for-dummies/#comments">No comment</a> |

]]></content:encoded>
			<wfw:commentRss>http://www.webteacher.ws/2011/08/29/review-moodle-for-dummies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BlueGriffon</title>
		<link>http://www.webteacher.ws/2011/05/12/bluegriffon/</link>
		<comments>http://www.webteacher.ws/2011/05/12/bluegriffon/#comments</comments>
		<pubDate>Thu, 12 May 2011 12:48:15 +0000</pubDate>
		<dc:creator>vdebolt</dc:creator>
				<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[WebStandards]]></category>

		<guid isPermaLink="false">http://www.webteacher.ws/?p=6466</guid>
		<description><![CDATA[A new web standards compliant WYSIWYG web editor is now available at bluegriffon.org. Features include that it&#8217;s open source and free, plus it does: HTML5 &#8211; including forms, video and audio CSS3 &#8211; including D Transforms, Transitions, Shadows, Linear/Radial Gradients and Repeating Gradients, Border Images, Columns, Flex Box Model SVG MathML a user interface to [...]]]></description>
			<content:encoded><![CDATA[<p>A new web standards compliant WYSIWYG web editor is now available at <a href="http://www.bluegriffon.org/">bluegriffon.org</a>. Features include that it&#8217;s open source and free, plus it does:</p>
<ul>
<li>HTML5 &#8211; including forms, video and audio</li>
<li>CSS3 &#8211; including D Transforms, Transitions, Shadows, Linear/Radial Gradients and Repeating Gradients, Border Images, Columns, Flex Box Model</li>
<li>SVG</li>
<li>MathML</li>
<li>a user interface to work with some important ARIA attributes</li>
</ul>
<p>It&#8217;s based on the Gecko rendering engine and works in Linux, Mac and Windows. Although the software is free, they are selling add ons for a few Euros each. The MathML, for example, is an add on.</p>
<p>You can, of course, toggle between code and design views.</p>
<p>A hat tip to <a href="http://twitter.com/#!/mollydotcom">@mollydotcom</a> who tweeted the news.<br />
<!-- http://twitter.com/mollydotcom/status/68282856560001020 --> <!-- .bbpBox{background:url(http://a2.twimg.com/profile_background_images/155715850/4831.jpg) #EBEBEB;padding:20px;} --></p>
<div id="tweet_68282856560001020" class="bbpBox" style="background: url(http://a2.twimg.com/profile_background_images/155715850/4831.jpg) #EBEBEB; padding: 20px;">
<p class="bbpTweet" style="background: #fff; padding: 10px 12px 10px 12px; margin: 0; min-height: 48px; color: #000; font-size: 16px !important; line-height: 22px; -webkit-border-radius: 5px;">Proud of <a href="http://twitter.com/glazou" target="_new">@glazou</a> &#8211; he made a very sweet WYSIWYG editor. x-platform, HTML5, CSS3, SVG, MathML &#8211; very cool! <a href="http://t.co/qnoV3Ce" target="_new">http://t.co/qnoV3Ce</a><span class="timestamp" style="font-size: 12px; display: block;"><a title="Wed May 11 11:54:36 " href="http://twitter.com/mollydotcom/status/68282856560001020">Wed May 11 11:54:36 </a> via <a rel="nofollow" href="http://twitter.com/tweetbutton">Tweet Button</a></span><span class="metadata" style="display: block; width: 100%; clear: both; margin-top: 8px; padding-top: 12px; height: 40px; border-top: 1px solid #e6e6e6;"><span class="author" style="line-height: 19px;"><a href="http://twitter.com/mollydotcom"><img style="float: left; margin: 0pt 7px 0pt 0px; width: 38px; height: 38px;" src="http://a2.twimg.com/profile_images/201244181/molly-webbie_normal_normal.gif" alt="" /></a><strong><a href="http://twitter.com/mollydotcom">Molly E. Holzschlag</a></strong><br />
mollydotcom</span></span></p>
</div>
<p><!-- end of tweet --></p>
<hr />
<p><small>© vdebolt for <a href="http://www.webteacher.ws">Web Teacher</a>, 2011. |
<a href="http://www.webteacher.ws/2011/05/12/bluegriffon/">Permalink</a> |
<a href="http://www.webteacher.ws/2011/05/12/bluegriffon/#comments">No comment</a> |

]]></content:encoded>
			<wfw:commentRss>http://www.webteacher.ws/2011/05/12/bluegriffon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Find the Right Online Shopping Cart for You</title>
		<link>http://www.webteacher.ws/2010/12/14/how-to-find-the-right-online-shopping-cart-for-you/</link>
		<comments>http://www.webteacher.ws/2010/12/14/how-to-find-the-right-online-shopping-cart-for-you/#comments</comments>
		<pubDate>Tue, 14 Dec 2010 14:22:05 +0000</pubDate>
		<dc:creator>vdebolt</dc:creator>
				<category><![CDATA[GuestPost]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[ProductReview]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[WebDesign]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[shopping carts]]></category>

		<guid isPermaLink="false">http://www.webteacher.ws/?p=5651</guid>
		<description><![CDATA[An efficient and user-friendly online shopping cart is an essential tool for any business or website owner involved in e-commerce product sales. But with so many online shopping carts available, it can be hard to decide which cart application will be up to the task at hand. To begin with, there is the issue of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.webteacher.ws/blog/wp-content/uploads/2010/12/coins.jpg"><img class="alignnone size-full wp-image-5655" title="coins" src="http://www.webteacher.ws/blog/wp-content/uploads/2010/12/coins.jpg" alt="coins" width="500" height="333" /></a></p>
<p>An efficient and user-friendly online shopping cart is an essential tool for any business or website owner involved in e-commerce product sales. But with so many online shopping carts available, it can be hard to decide which cart application will be up to the task at hand.</p>
<p>To begin with, there is the issue of selecting a free product or opting for one that has service charges. Naturally, everyone would choose the free option if they could, but there are occasions when free software may not possess the level of sophistication required. If this is the case, then purchasing a licensed product may be necessary, but then which one will be the right shopping cart for your transactional requirements?</p>
<h3>Free Shopping Carts versus Paid E-Commerce Platforms</h3>
<p>There are many well designed and functional free online shopping carts available. Most of these are open-source and operate under a GPL (General Public License). A lot of high-end shopping cart designers also produce free versions for smaller businesses or individual users.</p>
<p>Businesses or websites that have a larger product base or high sale yield may need to opt for a more substantial e-commerce platform. This will be a commercial licensed product that has advanced features and greater transactional control. Some of these platforms will charge a reoccurring monthly fee, while others may simply charge a one-off license payment.</p>
<p>The first decision should be whether the online business or product-based website can justify the price of a fully-fledged e-commerce platform, or will a good free GPL product suffice? This depends on stock levels, projected sales and expected consumer interaction. Once this decision has been made, it is then time to evaluate available products that meet the necessary criteria.</p>
<h3>Online Shopping Carts: The Essential Features</h3>
<p>In order to clarify things, it is probably best to initially outline a few necessary features that every online shopping cart and e-commerce platform should possess. This will help eliminate some feature-deficient products and help focus on only those products that meet, or surpass, the primary criteria.</p>
<ul>
<li>Catalogue Support – The ability to arrange products into accessible sections</li>
<li>Customer Database – Keep track of customer information</li>
<li>Order Management – Real-time status of current orders and refund organization</li>
<li>Payment Processing – Wide range of commercially acceptable payment options</li>
<li>Shipping &amp; Handling – Email notification of orders and delivery fee calculation</li>
<li>Statistical Analysis – Analyze orders, sales and conversion rates</li>
<li>Multi-Lingual Capability – Translate into other languages</li>
<li>Localization – Accept foreign currency and calculate taxes</li>
<li>SEO Consideration – URL rewriting and provision for sitemap creation</li>
<li>Security Measures – Secure logins. SSL compatible.</li>
<li>Efficient Administration – User management and site maintenance</li>
<li>Optional Customization – Advert insertion and featured product options</li>
</ul>
<p>These features should come as standard, even in free versions. The more exceptional e-commerce platforms will come incorporated with more advanced features. Many of these full-feature platforms may charge for their product.</p>
<h3>Advanced Features</h3>
<ul>
<li>Additional Levels of Security &#8211; PC DSS (Payment Application Data Security Standard) compliant. This is a regulation enforced by the PCI SSC (Payment Card Industry Security Standards Council). You can find more information about these regulations and standards at the official <a href="https://www.pcisecuritystandards.org">PCI DSS website</a>.</li>
<li>Gift Card and Coupon Facility – Customers can purchase physical cards and use coupon codes</li>
<li>Store Credit Available – Issue store credit for refunds etc.</li>
<li>Rewards Systems – Ability to encourage return custom by awarding customers with redeemable loyalty points</li>
<li>Customer Subscription – Allow customers to subscribe to newsletters, promotional emails etc.</li>
<li>Advanced Analytics – Geo-location statistics, integration with Google Analytics.</li>
<li>Social Media Compliant – Ready for integration with your favorite social media sites</li>
<li>Advanced Customer Assistance – Breadcrumb trails and one-click bookmarking features</li>
</ul>
<p>This is not an exhaustible list. Nor should a product be penalized if it happens to neglect one or two advance features, but then excels in most of the others. These are simply guidelines to help weed out the lower-quality shopping carts and e-commerce platforms.</p>
<h3>Recommended Shopping Carts and E-Commerce Platforms</h3>
<p>Now that the required and desired features have been highlighted, here are a few products that readily possess the above features and functions. (Note: Some of the free versions may not possess advanced features).</p>
<ul>
<li><a href="http://www.magentocommerce.com">Magento</a>: Free and commercial versions</li>
<li><a href="http://www.prestashop.com">PrestaShop</a>: Free and commercial versions</li>
<li><a href="http://www.ablecommerce.com">Able Commerce</a>: Paid version only</li>
<li><a href="http://www.1shoppingcart.com">1ShoppingCart</a>: Paid version only</li>
<li><a href="http://www.zen-cart.com">Zen Cart</a>: Free</li>
<li><a href="https://www.shopify.com">Shopify</a>: Paid version only</li>
<li><a href="http://www.oscommerce.com">osCommerce</a>: Free</li>
<li><a href="https://www.avactis.com">Avactis</a>: Free and paid versions</li>
<li><a href="http://www.productcart.com/">Product Cart</a>: Paid version only</li>
<li><a href="http://www.shoppingcartelite.com">Shopping Cart Elite</a>: Paid version only</li>
</ul>
<h3>Shop Around to Find Your Ideal Cart</h3>
<p>The selections above are an ideal place to start looking for an online shopping cart. But there are many alternative options. For anyone that has never used e-commerce software, it may be prudent to start with one of the free platforms and see what features and functions are preferred.</p>
<p>Every platform will have its own user interface and different modules and sometimes finding the best online shopping cart is a matter of locating a respectable product that you feel comfortable with. It is true that some versions will require more interaction and individual development while others will be more novice-friendly and possess almost one-click functionality. Finding a platform that you can use with ease is a large part of the selection process.</p>
<p>Don’t be afraid to try before you buy. Many paid versions will offer limited-time trials and even if that option does not appear available, in many cases the designers will gladly allow you a free test if you contact them directly.</p>
<p>Finding the right e-commerce platform will optimize you online business, help you to organize your storefronts, generate return business, and efficiently process and manage sales and transactions.</p>
<p><em>About the Author:</em> This guest post is contributed by Roko Nastic of <a href="http://webmasterformat.com/">WebmasterFormat.com</a>, a website focused on delivering advice and actionable tips on writing, website promotion techniques, <a href="http://webmasterformat.com/find-a-host/poll-who-is-the-best-host">best web hosts</a> and the latest trends in web development technologies.</p>
<hr />
<p><small>© vdebolt for <a href="http://www.webteacher.ws">Web Teacher</a>, 2010. |
<a href="http://www.webteacher.ws/2010/12/14/how-to-find-the-right-online-shopping-cart-for-you/">Permalink</a> |
<a href="http://www.webteacher.ws/2010/12/14/how-to-find-the-right-online-shopping-cart-for-you/#comments">4 comments</a> |

]]></content:encoded>
			<wfw:commentRss>http://www.webteacher.ws/2010/12/14/how-to-find-the-right-online-shopping-cart-for-you/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Useful Links: Open source, STEM programs, iPhone unavailable–sometimes</title>
		<link>http://www.webteacher.ws/2009/12/28/useful-links-open-source-stem-programs-iphone-unavailable%e2%80%93sometimes/</link>
		<comments>http://www.webteacher.ws/2009/12/28/useful-links-open-source-stem-programs-iphone-unavailable%e2%80%93sometimes/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 14:21:36 +0000</pubDate>
		<dc:creator>vdebolt</dc:creator>
				<category><![CDATA[BlogHer]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[AT&T]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[STEM]]></category>

		<guid isPermaLink="false">http://www.webteacher.ws/?p=3707</guid>
		<description><![CDATA[Say Hello to the Open Source Decade by Laura Scott. Open Source has been around for quite some time, but odds are most people you ask won&#8217;t know what &#8220;open source&#8221; is. This isn&#8217;t because open source is obscure, but rather it has slipped into the mainstream, and unless you&#8217;re already in the know, there&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://rarepattern.com/nodes/2009/say-hello-open-source-decade">Say Hello to the Open Source Decade</a> by Laura Scott.</p>
<blockquote><p>Open Source has been around for quite some time, but odds are most people you ask won&#8217;t know what &#8220;open source&#8221; is. This isn&#8217;t because open source is obscure, but rather it has slipped into the mainstream, and unless you&#8217;re already in the know, there&#8217;s no real reason you will have noticed it.</p></blockquote>
<p><a href="http://www.blogher.com/planting-seeds-science-interests-kids-all-ages">Planting seeds of science interest in kids of all ages</a> is a great list of resources leading to programs of all sorts meant to bring kids into STEM fields.</p>
<p>Live in New York and want an iPhone? Forget about it. <a href="http://consumerist.com/2009/12/att-customer-service-new-york-city-is-not-ready-for-the-iphone.html">AT&amp;T Customer Service: &#8220;New York City Is Not Ready For The iPhone&#8221;</a>. Apparently AT&amp;T decided the solution to their lack of coverage in the Big Apple was to stop selling Apple phones there. The blackout on iPhone only extends to online sales, according to TechCrunch, where we see <a href="http://www.techcrunch.com/2009/12/27/att-iphone-new-york-city/">Relax, You Can Still Buy an iPhone in New York City. Just Not Online</a>. The end of this story will be to learn what happened to the poor AT&amp;T service rep who pronounced the fateful sentence, &#8220;New York City is not ready for the iPhone.&#8221;</p>
<hr />
<p><small>© vdebolt for <a href="http://www.webteacher.ws">Web Teacher</a>, 2009. |
<a href="http://www.webteacher.ws/2009/12/28/useful-links-open-source-stem-programs-iphone-unavailable%e2%80%93sometimes/">Permalink</a> |
<a href="http://www.webteacher.ws/2009/12/28/useful-links-open-source-stem-programs-iphone-unavailable%e2%80%93sometimes/#comments">No comment</a> |

]]></content:encoded>
			<wfw:commentRss>http://www.webteacher.ws/2009/12/28/useful-links-open-source-stem-programs-iphone-unavailable%e2%80%93sometimes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Summary of eHow articles for August</title>
		<link>http://www.webteacher.ws/2009/08/24/summary-of-ehow-articles-for-august-2/</link>
		<comments>http://www.webteacher.ws/2009/08/24/summary-of-ehow-articles-for-august-2/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 13:21:58 +0000</pubDate>
		<dc:creator>vdebolt</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[eHow]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Web Apps]]></category>
		<category><![CDATA[Albuquerque  New Mexico]]></category>
		<category><![CDATA[You Tube]]></category>

		<guid isPermaLink="false">http://www.webteacher.ws/?p=3010</guid>
		<description><![CDATA[The image above is a Wordle, and shows you some of the things I was talking about here lately. Below is what I did at eHow in August. How to Visit the Albuquerque International Balloon Fiesta How to Use Tweetube How to Resize a YouTube Video How to Connect Several Twitter Tweets How to Reuse [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-3029" title="wordle" src="http://www.webteacher.ws/blog/wp-content/uploads/2009/08/wordle.jpg" alt="wordle" width="500" height="247" /></p>
<p class="clearleft">The image above is a <a href="http://wordle.net">Wordle</a>, and shows you some of the things I was talking about here lately.</p>
<p>Below is what I did at eHow in August.</p>
<ul>
<li><a href="http://www.ehow.com/how_5288239_visit-albuquerque-international-balloon-fiesta.html">How to Visit the Albuquerque International Balloon Fiesta</a></li>
<li><a href="http://www.ehow.com/how_5282634_use-tweetube.html">How to Use Tweetube</a></li>
<li><a href="http://www.ehow.com/how_5282585_resize-youtube-video.html">How to Resize a YouTube Video</a></li>
<li><a href="http://www.ehow.com/how_5323596_connect-several-twitter-tweets.html">How to Connect Several Twitter Tweets</a></li>
<li><a href="http://www.ehow.com/how_5323554_reuse-flash-drive-mac.html">How to Reuse a Flash Drive on a Mac</a></li>
<li><a href="http://www.ehow.com/how_5323515_use-zemanta-firefox.html">How to Use Zemanta for Firefox</a></li>
<li><a href="http://www.ehow.com/how_5323468_develop-relationships-blog.html">How to Develop Relationships With a Blog</a></li>
<li><a href="http://www.ehow.com/how_5326970_make-screencasts-screenr.html">How to Make Screencasts with Screenr</a></li>
<li><a href="http://www.ehow.com/how_5327389_locate-good-open-source-software.html">How to Locate Good Open Source Software</a></li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/85be310b-17dd-435e-b500-bb31f4999b69/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_e.png?x-id=85be310b-17dd-435e-b500-bb31f4999b69" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related more-info pretty-attribution paragraph-reblog"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>
<hr />
<p><small>© vdebolt for <a href="http://www.webteacher.ws">Web Teacher</a>, 2009. |
<a href="http://www.webteacher.ws/2009/08/24/summary-of-ehow-articles-for-august-2/">Permalink</a> |
<a href="http://www.webteacher.ws/2009/08/24/summary-of-ehow-articles-for-august-2/#comments">No comment</a> |

]]></content:encoded>
			<wfw:commentRss>http://www.webteacher.ws/2009/08/24/summary-of-ehow-articles-for-august-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful Links: Open Web Tools, HTML 5 nav, CSS 3 Cheat Sheet</title>
		<link>http://www.webteacher.ws/2009/07/14/useful-links-open-web-tools-html-5-nav-css-3-cheat-sheet/</link>
		<comments>http://www.webteacher.ws/2009/07/14/useful-links-open-web-tools-html-5-nav-css-3-cheat-sheet/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 14:42:57 +0000</pubDate>
		<dc:creator>vdebolt</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[web-education]]></category>
		<category><![CDATA[Open Web Tools Directory]]></category>

		<guid isPermaLink="false">http://www.webteacher.ws/?p=2860</guid>
		<description><![CDATA[The Open Web Tools Directory lists the best available tools for Design, Code, Test, Debug, Deploy and Docs in a very cool HTML 5 display using the canvas element. HTML 5: nav ambiguity resolved at zeldman.com is interesting because The Zeldman has the same problem I have with the HTML 5 specs, and also because [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://tools.mozilla.com/">Open Web Tools Directory </a>lists the best available tools for Design, Code, Test, Debug, Deploy and Docs in a very cool HTML 5 display using the canvas element.</p>
<p><a href="http://www.zeldman.com/2009/07/13/html-5-nav-ambiguity-resolved/">HTML 5: nav ambiguity resolved</a> at zeldman.com is interesting because The Zeldman has the same problem I have with the HTML 5 specs, and also because the discussion that follows is fascinating. Don&#8217;t just read the article—read the comments, too.</p>
<p><a href="http://www.smashingmagazine.com/2009/07/13/css-3-cheat-sheet-pdf/">CSS 3 Cheat Sheet (PDF)</a> is another freebie from Smashing Magazine that is just begging to be used as a class handout. Match that up with the <a href="http://www.smashingmagazine.com/2009/07/06/html-5-cheat-sheet-pdf/">HTML 5 Cheat Sheet</a> from SM that I mentioned a few days ago.</p>
<hr />
<p><small>© vdebolt for <a href="http://www.webteacher.ws">Web Teacher</a>, 2009. |
<a href="http://www.webteacher.ws/2009/07/14/useful-links-open-web-tools-html-5-nav-css-3-cheat-sheet/">Permalink</a> |
<a href="http://www.webteacher.ws/2009/07/14/useful-links-open-web-tools-html-5-nav-css-3-cheat-sheet/#comments">No comment</a> |

]]></content:encoded>
			<wfw:commentRss>http://www.webteacher.ws/2009/07/14/useful-links-open-web-tools-html-5-nav-css-3-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Women in Tech: Addison Berry</title>
		<link>http://www.webteacher.ws/2008/10/28/women-in-tech-addison-berry/</link>
		<comments>http://www.webteacher.ws/2008/10/28/women-in-tech-addison-berry/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 13:40:24 +0000</pubDate>
		<dc:creator>vdebolt</dc:creator>
				<category><![CDATA[BlogHer]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[women]]></category>
		<category><![CDATA["Addison Berry"]]></category>
		<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://www.webteacher.ws/?p=1556</guid>
		<description><![CDATA[Meet Addison Berry, a woman who traveled a roundabout path into tech and is now one of the most visible leaders in the open source content management world of Drupal. My thanks for Addi for agreeing to answer some questions and let us get to know her. Q: Let&#8217;s start off with Drupal. You work [...]]]></description>
			<content:encoded><![CDATA[<p>Meet <a href="http://rocktreesky.com/">Addison Berry</a>, a woman who traveled a roundabout path into tech and is now one of the most visible leaders in the open source content management world of Drupal. My thanks for Addi for agreeing to answer some questions and let us get to know her.</p>
<p><strong>Q:</strong> Let&#8217;s start off with Drupal. You work for <a href="http://www.lullabot.com/">Lullabot</a>, a company that does Drupal books, podcasts and videos. And, you&#8217;re head of the <a href="http://drupal.org/">Drupal.org</a> documentation team. How did you become so interested and involved in Drupal?</p>
<p><strong>A:</strong> Well I was a WordPress user for a while and had started doing little side jobs building sites with it. I managed to do quite a bit with it. Then at my old job, in the midst of redoing the website there, I told them that it didn&#8217;t make sense for me to hand-code the whole thing and be the only one who knew what was going on. I convinced them that we needed to use a CMS instead. The only problem was that I didn&#8217;t know of one to use. I quickly realized that WordPress would not stretch that far for us. So I sat down and started reviewing open source CMS. I needed to decide quickly and honestly Drupal just made more sense to me, more quickly than the handful of others I was looking at, so I put my stake in the ground and started building.</p>
<p>As chance would have it, a few months after I decided on Drupal, Lullabot offered their first Drupal workshop and it was located in Washington, DC &#8211; literally three blocks from my office. It was an easy sell to the boss. After the workshop, I really grasped the full potential of Drupal and got really excited about what I&#8217;d be able to do with. That got me excited about the software and they mentioned some community stuff, but ya know, I needed to get my work done. Several months after that a new thing called the <a href="http://groups.drupal.org/drupal-dojo">Drupal Dojo</a> started up and I plunged in full-speed ahead. It was a great learning opportunity, but more importantly I really got to know people and finally engaged with the community. The Drupal community is just amazing and once I was there, I jumped in everywhere I could. Lots of people helped me and so I did what I could to help others. That ended up coming back to me in a job offer from Lullabot that allows me to work with Drupal full-time.</p>
<p>Read the <a href="http://www.blogher.com/women-tech-addison-berry">full interview at BlogHer</a>.</p>
<hr />
<p><small>© vdebolt for <a href="http://www.webteacher.ws">Web Teacher</a>, 2008. |
<a href="http://www.webteacher.ws/2008/10/28/women-in-tech-addison-berry/">Permalink</a> |
<a href="http://www.webteacher.ws/2008/10/28/women-in-tech-addison-berry/#comments">No comment</a> |

]]></content:encoded>
			<wfw:commentRss>http://www.webteacher.ws/2008/10/28/women-in-tech-addison-berry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Women in Tech: Shelley Powers</title>
		<link>http://www.webteacher.ws/2008/10/21/women-in-tech-shelley-powers/</link>
		<comments>http://www.webteacher.ws/2008/10/21/women-in-tech-shelley-powers/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 14:04:46 +0000</pubDate>
		<dc:creator>vdebolt</dc:creator>
				<category><![CDATA[BlogHer]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[WaSP]]></category>
		<category><![CDATA[web-education]]></category>
		<category><![CDATA[WebDesign]]></category>
		<category><![CDATA[women]]></category>
		<category><![CDATA["women in tech"]]></category>
		<category><![CDATA[Shelley Powers]]></category>

		<guid isPermaLink="false">http://www.webteacher.ws/?p=1510</guid>
		<description><![CDATA[This is the first of several interviews with women in technology. Today you&#8217;ll learn about Shelley Powers. Shelley is perhaps best known as a writer. Her most recent books are Learning JavaScript and Painting the Web. She&#8217;s also a programmer and web developer, and she applies a powerful and logical mind to everything she does. [...]]]></description>
			<content:encoded><![CDATA[<p>This is the first of several interviews with women in technology. Today you&#8217;ll learn about Shelley Powers. Shelley is perhaps best known as a writer. Her most recent books are Learning JavaScript and Painting the Web. She&#8217;s also a programmer and web developer, and she applies a powerful and logical mind to everything she does.</p>
<p><strong>Q:</strong> I looked you up on Amazon and found a list of books you&#8217;ve written that includes Learning JavaScript, Painting the Web, Adding Ajax, Learning JavaScript: Add Sparkle and Life to Your Web Pages, Unix Power Tools, Practical RDF, Powerbuilder 5 How-To, Developing Asp Components, Dynamic HTML, Dynamic Web Publishing Unleashed, Javascript How-To: The Definitive Javascript Problem-Solver, and Using Perl For Web Programming.</p>
<p>Wow!</p>
<p>How did you get started on a career as a writer? What was your education and background?</p>
<p><strong>A:</strong> I&#8217;m a late bloomer educationally. I quit high school when I was 15 and joined a religious cult, Children of God. When I came to my senses and left the group, I went from the frying pan to the fire by marrying, at 16, a man who had learning disabilities and resented the fact that I liked to read. We lived in a house in the country and if it weren&#8217;t for the fact that the local library would send books out, and allow you to return them in pre-paid envelopes, I would have had very little to read for two years.</p>
<p>. . . Read the full post at <a href="http://www.blogher.com/women-tech-shelley-powers">BlogHer</a>.</p>
<hr />
<p><small>© vdebolt for <a href="http://www.webteacher.ws">Web Teacher</a>, 2008. |
<a href="http://www.webteacher.ws/2008/10/21/women-in-tech-shelley-powers/">Permalink</a> |
<a href="http://www.webteacher.ws/2008/10/21/women-in-tech-shelley-powers/#comments">No comment</a> |

]]></content:encoded>
			<wfw:commentRss>http://www.webteacher.ws/2008/10/21/women-in-tech-shelley-powers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful links: Palin, ARIA, Open Office, CSS Systems</title>
		<link>http://www.webteacher.ws/2008/09/30/useful-links-33/</link>
		<comments>http://www.webteacher.ws/2008/09/30/useful-links-33/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 12:51:51 +0000</pubDate>
		<dc:creator>vdebolt</dc:creator>
				<category><![CDATA[accessibility]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[News-Politics]]></category>
		<category><![CDATA[OpenSource]]></category>

		<guid isPermaLink="false">http://www.webteacher.ws/?p=1403</guid>
		<description><![CDATA[Palin&#8217;s experience in just 12 minutes. An analysis from Lawrence Lessig. ARIA on the fast track. Ian Lloyd&#8217;s thoughts on the Web Accessiblity Initiative’s Accessible Rich Internet Applications Suite and what it might do to validation. Open Office for Aqua. Burningbird puts the open source office suite through its paces and finds it a good [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.youtube.com/watch?v=9hnrZrlxjI0">Palin&#8217;s experience in just 12 minutes</a>. An analysis from Lawrence Lessig.</p>
<p><a href="http://accessify.com/news/2008/09/aria-on-the-fast-track/">ARIA on the fast track</a>. Ian Lloyd&#8217;s thoughts on the Web Accessiblity Initiative’s Accessible Rich Internet Applications   Suite and what it might do to validation.</p>
<p><a href="http://realtech.burningbird.net/computers/mac-os-x/openoffice-aqua">Open Office for Aqua</a>. Burningbird puts the open source office suite through its paces and finds it a good substitute for the office suite from that big corporation (you know the one).</p>
<p><a href="http://natbat.net/2008/Sep/28/css-systems/">CSS Systems for writing maintainable CSS</a>. A presentation about &#8220;CSS Systems&#8221; with links to slides and notes. The author describes CSS Systems as,</p>
<blockquote><p>A CSS System is a reusable set of content-oriented markup patterns and associated CSS created to express a site&#8217;s individual design. It is the end result of a process that emphasizes up-front planning, loose coupling between CSS and markup, pre-empting browser bugs and overall robustness. It also incorporates a shared vocabulary for developers to communicate the intent of the code.</p></blockquote>
<hr />
<p><small>© vdebolt for <a href="http://www.webteacher.ws">Web Teacher</a>, 2008. |
<a href="http://www.webteacher.ws/2008/09/30/useful-links-33/">Permalink</a> |
<a href="http://www.webteacher.ws/2008/09/30/useful-links-33/#comments">No comment</a> |

]]></content:encoded>
			<wfw:commentRss>http://www.webteacher.ws/2008/09/30/useful-links-33/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

