<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-15067757</id><updated>2011-07-24T21:51:17.084+02:00</updated><title type='text'>mphizi's kukaya things</title><subtitle type='html'>What's important? Know what you want. I do. If your likes are like what I like, then you might just get some new ideas here.

Software Development - Information Management and Information Systems - Business Intelligence

Maybe some politics (Any), But no soccer here.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://mchipofya.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15067757/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://mchipofya.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>mphizi</name><uri>http://www.blogger.com/profile/12613942274014278881</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>6</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-15067757.post-115891931201058335</id><published>2006-09-22T10:47:00.000+02:00</published><updated>2006-09-22T12:05:47.123+02:00</updated><title type='text'>Let's Java 1</title><content type='html'>&lt;span style="color: rgb(102, 102, 102);"&gt;&lt;/span&gt;&lt;span style="color: rgb(102, 102, 102);"&gt;import java.lang.String;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 102, 102);"&gt;public class HelloWorld{&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;    &lt;span style="color: rgb(102, 102, 102);"&gt;String Hellostring = "Hello World";&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(102, 102, 102);"&gt;    public void main(String args[]){&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 102, 102);"&gt;        system.out.println(&lt;/span&gt;&lt;span style="color: rgb(102, 102, 102);"&gt;Hellostring&lt;/span&gt;&lt;span style="color: rgb(102, 102, 102);"&gt;);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 102, 102);"&gt;    }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 102, 102);"&gt;}&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;The piece of text in pencil color above, represents a simple "Hello World" program in the Java programming language. The first line requests the java compiler &lt;a href="http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/javac.html"&gt;(1)&lt;/a&gt; to include the class &lt;/span&gt;&lt;/span&gt;&lt;a href="http://java.sun.com/docs/books/tutorial/java/concepts/class.html"&gt;(2)&lt;/a&gt; &lt;span style="color: rgb(102, 102, 102);"&gt;String&lt;/span&gt; situated in the &lt;span style="color: rgb(102, 102, 102);"&gt;java.lang&lt;/span&gt; package &lt;a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/package-summary.html"&gt;(3)&lt;/a&gt; in your class files when it compiles it. The next line, &lt;span style="color: rgb(102, 102, 102);"&gt;public class HelloWorld&lt;/span&gt; declares the beginning of a class definition which spans the text area from the first curly bracket and the last one.&lt;br /&gt;&lt;br /&gt;Within the class definition is the &lt;span style="color: rgb(102, 102, 102);"&gt;main()&lt;/span&gt; method which is called when the class is first loaded by the Java Virtual Machine (see also runtime environment). Note that this method is declared as 'public void' which means that it can be accessed by other classes and that it does not return any value after execution is completed. In this simple program, the only thing we do is print the text that has been stored in the variable &lt;span style="color: rgb(102, 102, 102);"&gt;Hellostring&lt;/span&gt; to the command prompt.&lt;br /&gt;&lt;br /&gt;The variable &lt;span style="color: rgb(102, 102, 102);"&gt;Hellostring &lt;/span&gt;is declared on the first line in the class &lt;span style="color: rgb(102, 102, 102);"&gt;String Hellostring = "Hello World"; &lt;/span&gt;and initialised to the text string "Hello World".&lt;br /&gt;&lt;br /&gt;To run this piece of code, copy it and save it as HelloWorld.java (make sure that it does not have a txt extension) then from the command line navigate to the directory in you have saved your file and enter the following command:&lt;br /&gt;&lt;br /&gt;   &gt;javac HelloWorld.java&lt;br /&gt;&lt;br /&gt;This tells the java compiler to compile the code and generate a java class file HelloWorld.class. You can now run the class with the java tool as follows:&lt;br /&gt;&lt;br /&gt;   &gt;java HelloWorld&lt;br /&gt;&lt;br /&gt;This will load your class and execute it . You should see the following on the command line:&lt;br /&gt;&lt;br /&gt;   &gt;javac HelloWorld.java&lt;br /&gt;   &gt;java HelloWorld&lt;br /&gt;   &gt;Hello World&lt;br /&gt;&lt;br /&gt;The last line here displays the output from your program.&lt;br /&gt;&lt;br /&gt;Guday&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 102, 102);"&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;mphizi's resource hive.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15067757-115891931201058335?l=mchipofya.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15067757/posts/default/115891931201058335'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15067757/posts/default/115891931201058335'/><link rel='alternate' type='text/html' href='http://mchipofya.blogspot.com/2006/09/lets-java-1.html' title='Let&apos;s Java 1'/><author><name>mphizi</name><uri>http://www.blogger.com/profile/12613942274014278881</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-15067757.post-115883303504386944</id><published>2006-09-21T11:59:00.000+02:00</published><updated>2006-09-21T14:31:49.880+02:00</updated><title type='text'>Let's Java</title><content type='html'>For those who care, Java is a fully object oriented programming language, that is in some ways similar to c++ but in fact very different from it. Today I start my "Let's Learn Together" Java journey that will hopefully take us through the basics to advanced concepts such as 2-D and 3-D graphics, component models, remote method invocation, distributed objects, and networking, security management etc. Somehow, we'll get there.&lt;br /&gt;&lt;br /&gt;The pace of this java caravan depends on the travellers (us) and we'll agree on how fast we go as we go.&lt;br /&gt;&lt;br /&gt;Primarily, I use the following material for learning and referencing:&lt;br /&gt;&lt;ol&gt;   &lt;li&gt;&lt;a href="http://java.sun.com/docs/books/tutorial/index.html"&gt;The Java Tutorial&lt;/a&gt; which is also available for download at &lt;a href="http://java.sun.com/docs/books/tutorial/information/download.html"&gt;java.sun.com/docs/books/tutorial/information/download.html&lt;/a&gt;&lt;/li&gt;   &lt;li&gt;&lt;a href="http://java.sun.com/reference/api/index.html"&gt;The Java Platform API Specification&lt;/a&gt; (Java Class Libraries)&lt;/li&gt;   &lt;li&gt;&lt;a href="http://java.sun.com/docs/books/jls/third_edition/html/j3TOC.html"&gt;The Java Language Specification&lt;/a&gt; also available for download at &lt;a href="http://java.sun.com/docs/books/jls/third_edition/html/j3TOC.html"&gt;&lt;/a&gt;&lt;a href="http://java.sun.com/docs/books/jls/index.html"&gt;java.sun.com/docs/books/jls/index.html&lt;/a&gt;&lt;/li&gt; &lt;/ol&gt; You can also get many other reading and reference materials at &lt;a href="http://java.sun.com/developer/onlineTraining/"&gt;java.sun.com/developer/onlineTraining/&lt;/a&gt;&lt;br /&gt;or &lt;a href="http://java.sun.com/j2se/1.5.0/download-pdf.html"&gt;download PDF docs.&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;mphizi's resource hive.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15067757-115883303504386944?l=mchipofya.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15067757/posts/default/115883303504386944'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15067757/posts/default/115883303504386944'/><link rel='alternate' type='text/html' href='http://mchipofya.blogspot.com/2006/09/lets-java.html' title='Let&apos;s Java'/><author><name>mphizi</name><uri>http://www.blogger.com/profile/12613942274014278881</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-15067757.post-112921453726928894</id><published>2005-10-13T16:31:00.000+02:00</published><updated>2005-12-06T16:04:42.826+02:00</updated><title type='text'>Opportunities for the code savvy</title><content type='html'>&lt;a href="http://sourceforge.net/people/"&gt;Sourceforge.net&lt;/a&gt; advertises &lt;a href="http://sourceforge.net/people/"&gt;&lt;span style="COLOR: rgb(51,204,0)"&gt;wanted&lt;/span&gt;&lt;/a&gt; skills. Check it out incase you might have just what they need.&lt;br /&gt;&lt;br /&gt;Also go to planet-source-code's &lt;a href="http://www.rentacoder.com"&gt;www.rentacoder.com&lt;/a&gt; - Free jobs online!!!!!!!!!!!!&lt;div class="blogger-post-footer"&gt;mphizi's resource hive.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15067757-112921453726928894?l=mchipofya.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15067757/posts/default/112921453726928894'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15067757/posts/default/112921453726928894'/><link rel='alternate' type='text/html' href='http://mchipofya.blogspot.com/2005/10/opportunities-for-code-savvy.html' title='Opportunities for the code savvy'/><author><name>mphizi</name><uri>http://www.blogger.com/profile/12613942274014278881</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-15067757.post-112920959139146091</id><published>2005-10-13T15:14:00.000+02:00</published><updated>2005-10-13T16:43:02.603+02:00</updated><title type='text'>Sources of Computing &amp; Software Development Information - i.e. Free Tutorials, Notes, Guides, even eBooks</title><content type='html'>Start at &lt;a href="http://www.intelligentedu.com/"&gt;http://www.intelligentedu.com/&lt;/a&gt; . This is a great site for those seeking to improve their knowledge FREE of costs.&lt;div class="blogger-post-footer"&gt;mphizi's resource hive.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15067757-112920959139146091?l=mchipofya.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15067757/posts/default/112920959139146091'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15067757/posts/default/112920959139146091'/><link rel='alternate' type='text/html' href='http://mchipofya.blogspot.com/2005/10/sources-of-computing-software.html' title='Sources of Computing &amp; Software Development Information - i.e. Free Tutorials, Notes, Guides, even eBooks'/><author><name>mphizi</name><uri>http://www.blogger.com/profile/12613942274014278881</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-15067757.post-112904346520465914</id><published>2005-10-11T17:02:00.000+02:00</published><updated>2005-10-13T16:43:52.796+02:00</updated><title type='text'>RADIUS and FreeRadius</title><content type='html'>If you are interested in using FreeRadius  on MySQL start at&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.frontios.com/freeradius.html"&gt; http://www.frontios.com/freeradius.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;get more information plus a copy at&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.freeradius.org/development.html"&gt; http://www.freeradius.org/development.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;OR if you want to ftp the server&lt;br /&gt;&lt;br /&gt;&lt;a href="ftp://ftp.freeradius.org/pub/radius/freeradius.tar.gz"&gt; ftp://ftp.freeradius.org/pub/radius/freeradius.tar.gz&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;For FreeRadius and Java, there's s really cool tool for developers (gives you APIs and stuff). Find out about the Open Source Java program JRadius at&lt;br /&gt;&lt;br /&gt;&lt;a href="http://jradius.sourceforge.net/index.html"&gt;http://jradius.sourceforge.net/&lt;/a&gt; AND check out the &lt;a href="http://jradius.sourceforge.net/dev.html"&gt;developer's notes&lt;/a&gt; so U don't mess Urself up&lt;div class="blogger-post-footer"&gt;mphizi's resource hive.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15067757-112904346520465914?l=mchipofya.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15067757/posts/default/112904346520465914'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15067757/posts/default/112904346520465914'/><link rel='alternate' type='text/html' href='http://mchipofya.blogspot.com/2005/10/radius-and-freeradius.html' title='RADIUS and FreeRadius'/><author><name>mphizi</name><uri>http://www.blogger.com/profile/12613942274014278881</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-15067757.post-112306240957897629</id><published>2005-08-03T11:38:00.000+02:00</published><updated>2005-10-13T16:44:16.803+02:00</updated><title type='text'>Welcome</title><content type='html'>&lt;span style=";font-family:trebuchet ms;font-size:85%;"  &gt;&lt;strong&gt;This is the first posting on this blog. I will keep updating this information for your pleasurable reading.&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style=";font-family:Trebuchet MS;font-size:85%;"  &gt;&lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style=";font-family:Trebuchet MS;font-size:85%;"  &gt;Malumbo Chipofya&lt;/span&gt;&lt;/strong&gt;&lt;div class="blogger-post-footer"&gt;mphizi's resource hive.&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/15067757-112306240957897629?l=mchipofya.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/15067757/posts/default/112306240957897629'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/15067757/posts/default/112306240957897629'/><link rel='alternate' type='text/html' href='http://mchipofya.blogspot.com/2005/08/welcome.html' title='Welcome'/><author><name>mphizi</name><uri>http://www.blogger.com/profile/12613942274014278881</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry></feed>
