<?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>IT Resource &#187; Open Source</title>
	<atom:link href="http://www.itresource.com.au/category/open-source/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.itresource.com.au</link>
	<description>Your one stop Information Technology Resource</description>
	<lastBuildDate>Mon, 21 Dec 2009 05:20:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>OLPC in Australia</title>
		<link>http://www.itresource.com.au/2008/12/13/olpc-in-australia/</link>
		<comments>http://www.itresource.com.au/2008/12/13/olpc-in-australia/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 01:38:32 +0000</pubDate>
		<dc:creator>Dave W</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.itresource.com.au/?p=496</guid>
		<description><![CDATA[The One Laptop Per Child (OLPC) Program aims to provide access to IT equipment to remote and disadvantaged children throughout the world, and an Australian version has just been launched with a view to spreading the goodness to kids in Australian and Pacific Island communities. The laptops in question are basic but rugged little beasts, [...]]]></description>
			<content:encoded><![CDATA[<p>The One Laptop Per Child (OLPC) Program aims to provide access to IT equipment to remote and disadvantaged children throughout the world, and an Australian version has just been launched with a view to spreading the goodness to kids in Australian and Pacific Island communities.</p>
<p>The laptops in question are basic but rugged little beasts, designed specifically for the program, and something like 500,000 have been distributed around the world already. Currently just a few thousand will be avaialble for distribution in Australia but the program will be reviewed after this initial launch phase.</p>
<p>OLPC laptops have a basic 433MHz AMD Geode processor, 256MB of memory and 1GB of flash storage (plus an SD port for adding more). They come wireless ready, and run a version of Fedora with a GUI called Sugar, plus a range of open source Apps.</p>
<p>The machine has no moving parts and it is designed to be robust enough for hot and dusty climates and easily repaired in the field. There are three USB ports, audio jacks, stereo speakers and microphone, a VGA camera, a waterproof membrane keyboard and a clever LCD screen that is perfectly readable in bright sunlight.</p>
<p>This excellent scheme is making the laptops available via a donation scheme. Basically, a donation of $399USD will set aside one laptop for use in a remote community PLUS another laptop will be given to you. You can of course, then also opt to donate &#8216;your&#8217; laptop so that the program benefits from 2 machines.</p>
<p>All in all, this seems like an excellent way to give kids out in the bush or in other remote communities a helping hand and a bit of access to IT equipment and ideas that they may otherwise not get.</p>
<p>OLPC Australia can be found at: <a href="http://olpc-australia.org.au/" target="_blank">http://olpc-australia.org.au/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.itresource.com.au/2008/12/13/olpc-in-australia/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Deny User Access to a Website Using Squid</title>
		<link>http://www.itresource.com.au/2008/08/31/deny-user-access-to-a-website-using-squid/</link>
		<comments>http://www.itresource.com.au/2008/08/31/deny-user-access-to-a-website-using-squid/#comments</comments>
		<pubDate>Sun, 31 Aug 2008 13:10:45 +0000</pubDate>
		<dc:creator>Dave W</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[squid]]></category>

		<guid isPermaLink="false">http://www.itresource.com.au/?p=384</guid>
		<description><![CDATA[There is often a requirement to block/deny user access to certain websites and this post shows how administrators can utilise Squid to achieve this: Squid is a popular open source web proxy server and web caching software. It has a wide variety of uses, from speeding up a web server by caching repeated requests, to [...]]]></description>
			<content:encoded><![CDATA[<p>There is often a requirement to block/deny user access to certain websites and this post shows how administrators can utilise <strong>Squid</strong> to achieve this:</p>
<p>Squid is a popular open source web proxy server and web caching software. It has a wide variety of uses, from speeding up a web server by caching repeated requests, to caching web, DNS and other network lookups for groups of people sharing network resources and (which is of most interest to us for the purposes of this post) by aiding security via traffic filtering. It was originally inteneded for Unix/Linux but has been ported to a number of platforms.</p>
<p>Squid has powerful ACL (access control list). The primary use of the ACL system is to implement simple access control. This can be used to deny a user from accessing particular site.</p>
<p>In order to do this we have to edit the Squid configuration file.</p>
<p>e.g. <strong># vi /etc/squid/squid.conf</strong></p>
<p>Search for `Access Controls&#8217; and append the following lines (in this example we are blocking access to &#8216;nastysite.com&#8217;):<br />
<strong>acl badsite dstdomain .nastysite.com<br />
http_access deny badsite</strong></p>
<p>Save and close the file, and then restart Squid:<br />
<strong># /etc/init.d/squid restart</strong></p>
<p> If required, you can specify more than one site to be blocked:<br />
<strong>acl badsite dstdomain .nastysite.com  .anothernastysite.com<br />
http_access deny badsite</strong></p>
<p>You can also use regex expressions to block access to more than one website. for example,  if you would like to deny access for any sites where the URL contains the word &#8220;twitter&#8221;, use the following ACL lines:<br />
<strong>acl badsitegroup url_regex -i twitter<br />
http_access deny badsitegroup</strong></p>
<p>More information on Squid commands can be found at: <a title="Squid Web Cache " href="http://wiki.squid-cache.org/FrontPage" target="_blank">http://wiki.squid-cache.org/FrontPage</a></p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.itresource.com.au/2008/08/31/deny-user-access-to-a-website-using-squid/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Sun makes LWUIT Mobile SDK open source</title>
		<link>http://www.itresource.com.au/2008/08/16/sun-makes-lwuit-mobile-sdk-open-source/</link>
		<comments>http://www.itresource.com.au/2008/08/16/sun-makes-lwuit-mobile-sdk-open-source/#comments</comments>
		<pubDate>Sat, 16 Aug 2008 05:20:35 +0000</pubDate>
		<dc:creator>Dave W</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[sdk]]></category>
		<category><![CDATA[sun]]></category>

		<guid isPermaLink="false">http://www.itresource.com.au/?p=474</guid>
		<description><![CDATA[Sun&#8217;s &#8216;Light-weight UI Toolkit&#8217; (LWUIT) has been made available for download under a version of the GPL2 open-source license, which will make it easier for developers to create applications for the Jave ME mobile/smart phone platform. According to Sun&#8217;s Craig Gering: &#8220;We are enabling mobile developers to quickly and easily create rich, portable interfaces for [...]]]></description>
			<content:encoded><![CDATA[<p>Sun&#8217;s &#8216;Light-weight UI Toolkit&#8217; (LWUIT) has been made available for download under a version of the GPL2 open-source license, which will make it easier for developers to create applications for the Jave ME mobile/smart phone platform.</p>
<p>According to Sun&#8217;s Craig Gering: &#8220;We are enabling mobile developers to quickly and easily create rich, portable interfaces for their applications,&#8221; declared Craig Gering, Sun&#8217;s senior director of embedded Java software.</p>
<p>&#8220;This software will also help address the mobile industry&#8217;s fragmentation issue by enabling developers to create a single interface that will work anywhere Java is found.&#8221;</p>
<p>More information: <a title="LWUIT Blog" href="http://lwuit.blogspot.com/" target="_blank">http://lwuit.blogspot.com/</a></p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.itresource.com.au/2008/08/16/sun-makes-lwuit-mobile-sdk-open-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gizmo&#8217;s tech support site</title>
		<link>http://www.itresource.com.au/2008/07/29/gizmos-tech-support-site/</link>
		<comments>http://www.itresource.com.au/2008/07/29/gizmos-tech-support-site/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 09:29:39 +0000</pubDate>
		<dc:creator>Dave W</dc:creator>
				<category><![CDATA[Developer Tools]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://www.itresource.com.au/?p=468</guid>
		<description><![CDATA[Quick post to tell you about a very useful site (recently &#8216;wiki-fied&#8217; covering free software for business, development and home use. There seems to be a lot of useful stuff in there and it&#8217;s pretty active as well&#8230;well worth a look: It can be found here &#8211; Gizmo&#8217;s Tech Support Site]]></description>
			<content:encoded><![CDATA[<p>Quick post to tell you about a very useful site (recently &#8216;wiki-fied&#8217; covering free software for business, development and home use. There seems to be a lot of useful stuff in there and it&#8217;s pretty active as well&#8230;well worth a look:</p>
<p>It can be found here &#8211; <a title="Gizmo's Tech support alert" href="http://www.techsupportalert.com/" target="_blank">Gizmo&#8217;s Tech Support Site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.itresource.com.au/2008/07/29/gizmos-tech-support-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internode Mirrors SourceForge</title>
		<link>http://www.itresource.com.au/2008/06/03/internode-mirrors-sourceforge/</link>
		<comments>http://www.itresource.com.au/2008/06/03/internode-mirrors-sourceforge/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 03:59:31 +0000</pubDate>
		<dc:creator>Dave W</dc:creator>
				<category><![CDATA[ISP]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Internode]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.itresource.com.au/?p=412</guid>
		<description><![CDATA[Open source advocates will have something to smile about as Internode today launches a high-speed Australian mirror site to SourceForge.net, providing its customers with unmetered access to the the worldâ€™s largest Open Source software development website. SourceForge.net provides free hosting to Open Source software development projects with a centralised resource for managing projects, issues, communications [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.itresource.com.au/wp-content/uploads/2008/04/internode.gif" alt="Internode" class="alignleft" style="float: left;" />Open source advocates will have something to smile about as Internode today launches a high-speed Australian mirror site to SourceForge.net, providing its customers with unmetered access to the the worldâ€™s largest Open Source software development website.</p>
<p><a href="http://www.SourceForge.net" target="_blank">SourceForge.net</a> provides free hosting to Open Source software development projects with a centralised resource for managing projects, issues, communications and code.</p>
<p>By opening a mirror to the development website, Internode has extended the available unmetered downloadable content for its customers to more than 32 terabytes (TB).<br />
<span id="more-412"></span><br />
Technical leader content services for Internodeâ€™s content services group, Kingsley Foreman, said unmetered access to the 4.7 terabytes of SourceForge data was a boon for the Open Source community.</p>
<p>â€œWe see this as an important enhancement for Australiaâ€™s Open Source community by providing high performance access to SourceForge that eclipses its previous local footprint,â€ he said.</p>
<p>â€œIncreasingly, future software will come from the international collaboration that emerges from the Open Source community, so Internode is pleased to make it even easier for this to happen.â€</p>
]]></content:encoded>
			<wfw:commentRss>http://www.itresource.com.au/2008/06/03/internode-mirrors-sourceforge/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>osTicket &#8211; Open Source Support Ticket System</title>
		<link>http://www.itresource.com.au/2008/05/11/osticket-open-source-support-ticket-system/</link>
		<comments>http://www.itresource.com.au/2008/05/11/osticket-open-source-support-ticket-system/#comments</comments>
		<pubDate>Sun, 11 May 2008 09:39:58 +0000</pubDate>
		<dc:creator>Dave W</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://www.itresource.com.au/?p=306</guid>
		<description><![CDATA[osTicket is a widely-used open source support ticket system. It seamlessly integrates inquiries created via email and web-based forms into a simple easy to use multi-user web interface. Easily manage, organize and archive all your support requests and responses in one place while providing your clients with accountability and responsiveness they deserve. osTicket is an [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.itresource.com.au/wp-content/uploads/2008/05/osticket_logo.jpg" alt="" title="osticket_logo" width="230" height="92" class="alignright" style="float: right;" />osTicket is a widely-used open source support ticket system. It seamlessly integrates inquiries created via email and web-based forms into a simple easy to use multi-user web interface. Easily manage, organize and archive all your support requests and responses in one place while providing your clients with accountability and responsiveness they deserve.</p>
<p>osTicket is an attractive alternative to higher-cost and complex customer support systems; simple, lightweight, reliable, open source, and easy to setup and use. The best part is, it&#8217;s completely free.</p>
<p>osTicket comes with it&#8217;s own web-based installer to help guide you through the installation process without frustration.</p>
<p>To install osTicket, your web server must have PHP 4.3 (or better) and MySQL 4.1 (or better) installed.</p>
<p>For more information and to download osTicket, please visit <a href="http://www.osticket.com" target="_blank">http://www.osticket.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.itresource.com.au/2008/05/11/osticket-open-source-support-ticket-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
