<?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>OSaware</title>
	<atom:link href="http://www.osaware.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.osaware.com/blog</link>
	<description>Computing Rebooted</description>
	<lastBuildDate>Tue, 15 Feb 2011 13:18:07 +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>Tutorials 01</title>
		<link>http://www.osaware.com/blog/?p=7</link>
		<comments>http://www.osaware.com/blog/?p=7#comments</comments>
		<pubDate>Tue, 15 Feb 2011 13:10:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.osaware.com/blog/?p=7</guid>
		<description><![CDATA[Heres a few quick and easy tutorials on how to start programming using NGbasic! We will add more tutorials over time so bear with us here! Tutorial 1 : The Endless Loop 1. Start the NGbasic interpreter by going to www.osaware.com 2. Type CLEAR to clear the screen 3. Type LIST to see if anything [...]]]></description>
			<content:encoded><![CDATA[<p>Heres a few quick and easy tutorials on how to start programming using NGbasic! We will add more tutorials over time so bear with us here!</p>
<p><strong>Tutorial 1 :  The Endless Loop</strong></p>
<p>1. Start the NGbasic interpreter by going to www.osaware.com<br />
2. Type <CODE>CLEAR</CODE> to clear the screen<br />
3. Type <CODE>LIST</CODE> to see if anything is in memory, it should come up blank.<br />
4.  Lets get started, type the following in one line at a time!</p>
<p><CODE><br />
10 REM *** MY FIRST PROGRAM! ***<br />
20 X=0<br />
30 PRINT X<br />
40 X=X+5<br />
50 GOTO 30<br />
</CODE></p>
<p>Thats it, this creates a endless loop, basically it drives the computer nuts as its stuck adding numbers forever.</p>
<p>5. To see your program type <CODE>LIST</CODE></p>
<p>If you got anything wrong just retype the line, for example if on line 50 you entered GOGO instead of GOTO you just need to retype that line end it will be overwritten.</p>
<p>6. To run your program type <CODE>RUN</CODE></p>
<p>You should see lots of numbers start to fill up your screen if you got it right! Since it wont stop you need to press <CODE>CTRL C</CODE> to kill it.</p>
<p>7. The breakdown</p>
<p>Heres a quck breakdown of the program and whats happening:</p>
<p>Line 10 is just a comment you can actually leave it out if you like<br />
Line 20 sets the variable X to be zero so we can use it as a counter.<br />
Line 30 prints out the value of X<br />
Line 40 adds 5 to the current value of X (so 0 .. 5 ..<br />
Line 50 redirects the program back to line 30 creating the endless loop!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.osaware.com/blog/?feed=rss2&#038;p=7</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome to OSaware</title>
		<link>http://www.osaware.com/blog/?p=5</link>
		<comments>http://www.osaware.com/blog/?p=5#comments</comments>
		<pubDate>Tue, 15 Feb 2011 13:07:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.osaware.com/blog/?p=5</guid>
		<description><![CDATA[OSaware is a self-aware, web based operating system that will change the way people interact with computers. The OSaware kernel is based on NGbasic, by Navajo Gunleg. It runs in a web-browser, has full graphics support to the pixel level, and includes support for loading and saving basic programs. OSaware is a move to get [...]]]></description>
			<content:encoded><![CDATA[<p>OSaware is a self-aware, web based operating system that will change the way people interact with computers. The OSaware kernel is based on NGbasic, by Navajo Gunleg. It runs in a web-browser, has full graphics support to the pixel level, and includes support for loading and saving basic programs. </p>
<p>OSaware is a move to get back to the basics of software development using the language that started it all, BASIC, combined with the power of the cloud. We believe that the future of human-machine interaction will ne based on a mixture of simplicity, power and intelligence and this is what OSaware will deliver. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.osaware.com/blog/?feed=rss2&#038;p=5</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

