<?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>Mokona Modoki</title>
	<atom:link href="http://www.mokonamodoki.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.mokonamodoki.com</link>
	<description>It is what it is, at the time of the time</description>
	<lastBuildDate>Tue, 10 Aug 2010 13:36:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Copying files from one linux server to another via SSH</title>
		<link>http://www.mokonamodoki.com/copying-files-from-one-linux-server-to-another-via-ssh</link>
		<comments>http://www.mokonamodoki.com/copying-files-from-one-linux-server-to-another-via-ssh#comments</comments>
		<pubDate>Tue, 10 Aug 2010 13:30:03 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Hints and Tips]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[address]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[copying]]></category>
		<category><![CDATA[hostname]]></category>
		<category><![CDATA[ip]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[local]]></category>
		<category><![CDATA[port]]></category>
		<category><![CDATA[remote]]></category>
		<category><![CDATA[scp]]></category>
		<category><![CDATA[scruity]]></category>
		<category><![CDATA[secure]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[specify]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=632</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>Ever wanted to copy files from one linux server to another, via SSH? Here&#8217;s the command:</p>
<p><code>scp -P 22 -r /home/username/local-directory ip-or-hostname-of-remote-server:/home/username/remote-directory.</code></p>
<p><code>scp</code> = Secure Copy.</p>
<p><code>-r</code> = Tecursive (copy the contents of the directory and the contents of any directories inside that directory).</p>
<p><code>-P</code> = (specifying the port number).</p>
<p><code>22</code> = The port number SSH is running on, on the remote server. (That&#8217;s right, some of us who are little security conscious, don&#8217;t leave SSH running on port 22).</p>
<p><code>/home/username/local-directory</code> = The local directory on the &#8217;source&#8217; server, containing the files you want to copy to the remote servers</p>
<p><code>/home/username/remote-directory</code> = The directory on the &#8216;destination&#8217; server, where you want to copy the files to.</p>
<p><code>ip-or-hostname-of-remote-server</code> = The example says it all. Replace this section with the remote <a href="http://www.google.com.au/url?ei=B1VhTOHQI4aSuQP9w4WJCQ&amp;sig2=ZExD5FCIW16Qggpv3qPO7A&amp;q=http://en.wikipedia.org/wiki/IP_address&amp;sa=X&amp;ved=0CBoQpAMoAA&amp;usg=AFQjCNHhfe6xSnGInZvQ_fquaBP1flUD_Q" target="_blank">IP Address</a> or <a href="http://www.google.com.au/url?ei=GlVhTJnSHIa4uAO3oaWHCQ&amp;sig2=MFFYyN5RwiDajDUBu6S6eA&amp;q=http://en.wikipedia.org/wiki/Hostname&amp;sa=X&amp;ved=0CA0QpAMoAA&amp;usg=AFQjCNG1eG8aearcvHyqJMUzQnc9yNhNjA" target="_blank">Hostname</a> of the destination server.</p>
<p>Easy enough? If not, or you would like further examples or assistance, please feel free to ask you questions in the comments.</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcopying-files-from-one-linux-server-to-another-via-ssh&amp;title=Copying%20files%20from%20one%20linux%20server%20to%20another%20via%20SSH&amp;bodytext=Ever%20wanted%20to%20copy%20files%20from%20one%20linux%20server%20to%20another%2C%20via%20SSH%3F%20Here%27s%20the%20command%3A%0D%0A%0D%0Ascp%20-P%2022%20-r%20%2Fhome%2Fusername%2Flocal-directory%20ip-or-hostname-of-remote-server%3A%2Fhome%2Fusername%2Fremote-directory.%0D%0A%0D%0Ascp%20%3D%20Secure%20Copy.%0D%0A%0D%0A-r%20%3D%20Tecursive%20%28copy%20the" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcopying-files-from-one-linux-server-to-another-via-ssh" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcopying-files-from-one-linux-server-to-another-via-ssh&amp;title=Copying%20files%20from%20one%20linux%20server%20to%20another%20via%20SSH&amp;notes=Ever%20wanted%20to%20copy%20files%20from%20one%20linux%20server%20to%20another%2C%20via%20SSH%3F%20Here%27s%20the%20command%3A%0D%0A%0D%0Ascp%20-P%2022%20-r%20%2Fhome%2Fusername%2Flocal-directory%20ip-or-hostname-of-remote-server%3A%2Fhome%2Fusername%2Fremote-directory.%0D%0A%0D%0Ascp%20%3D%20Secure%20Copy.%0D%0A%0D%0A-r%20%3D%20Tecursive%20%28copy%20the" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcopying-files-from-one-linux-server-to-another-via-ssh&amp;t=Copying%20files%20from%20one%20linux%20server%20to%20another%20via%20SSH" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcopying-files-from-one-linux-server-to-another-via-ssh&amp;title=Copying%20files%20from%20one%20linux%20server%20to%20another%20via%20SSH" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcopying-files-from-one-linux-server-to-another-via-ssh&amp;title=Copying%20files%20from%20one%20linux%20server%20to%20another%20via%20SSH&amp;annotation=Ever%20wanted%20to%20copy%20files%20from%20one%20linux%20server%20to%20another%2C%20via%20SSH%3F%20Here%27s%20the%20command%3A%0D%0A%0D%0Ascp%20-P%2022%20-r%20%2Fhome%2Fusername%2Flocal-directory%20ip-or-hostname-of-remote-server%3A%2Fhome%2Fusername%2Fremote-directory.%0D%0A%0D%0Ascp%20%3D%20Secure%20Copy.%0D%0A%0D%0A-r%20%3D%20Tecursive%20%28copy%20the" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Copying%20files%20from%20one%20linux%20server%20to%20another%20via%20SSH&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcopying-files-from-one-linux-server-to-another-via-ssh" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Copying%20files%20from%20one%20linux%20server%20to%20another%20via%20SSH&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcopying-files-from-one-linux-server-to-another-via-ssh" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/copying-files-from-one-linux-server-to-another-via-ssh/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check for a Process and Start It if It&#8217;s Not Started (Linux/Unix)</title>
		<link>http://www.mokonamodoki.com/check-for-a-process-and-start-it-if-its-not-started-linux-unix</link>
		<comments>http://www.mokonamodoki.com/check-for-a-process-and-start-it-if-its-not-started-linux-unix#comments</comments>
		<pubDate>Tue, 10 Aug 2010 13:15:08 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Hints and Tips]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[check]]></category>
		<category><![CDATA[daemons]]></category>
		<category><![CDATA[helpful]]></category>
		<category><![CDATA[ircbot]]></category>
		<category><![CDATA[ircservices]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[monitor]]></category>
		<category><![CDATA[ngircd]]></category>
		<category><![CDATA[openfire]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[sc_serv]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[shoutcast]]></category>
		<category><![CDATA[StreamTranscoder]]></category>
		<category><![CDATA[uncommon]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[vps]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=628</guid>
		<description><![CDATA[I came across a conundrum some time ago. I have a CentOS Linux based VPS running a few various different &#8216;processes&#8217; for different purposes. My problem was that from time to time, these processes would stop or die, for whatever reason. Given that I require absolute uptime from these processes (or at least as close [...]]]></description>
			<content:encoded><![CDATA[<p>I came across a conundrum some time ago. I have a CentOS Linux based VPS running a few various different &#8216;processes&#8217; for different purposes. My problem was that from time to time, these processes would stop or die, for whatever reason. Given that I require absolute uptime from these processes (or at least as close as I can get) I needed a script, a way to check if the process was running, and if not, to start it, all without my manual help. Now, Before you read any further, I just want to make it clear, <strong>I am talking about uncommon processes (not system services or daemons)</strong>. To name a few:</p>
<ul>
<li><a href="http://www.shoutirc.com" target="_blank">IRCBot (ircbot)</a></li>
<li><a href="http://ngircd.barton.de/" target="_blank">ngIRCd (ngircd)</a></li>
<li><a href="http://www.ircservices.za.net/" target="_blank">Services for IRC (ircservces)</a></li>
<li><a href="http://www.shoutcast.com/download" target="_blank">Shoutcast (sc_serv)</a></li>
<li><a href="http://www.oddsock.org/tools/streamTranscoderV3/" target="_blank">StreamTranscoder (transcoderv3)</a></li>
<li><a href="http://www.igniterealtime.org/projects/openfire/" target="_blank">Openfire</a></li>
</ul>
<p>Initially, I searched and searched the internet and found all sorts of solutions dating back to the 1990&#8217;s all the way through to 2010. I even managed to cobble something together, but it was pretty terrible and failed sometimes (more often than not actually).</p>
<p>Some readers may have noticed that one of my examples above, already contains an almost perfectly good solution!</p>
<p><a href="http://www.ircservices.za.net/" target="_blank">Services for IRC</a> (developed primarily by Andrew Church), contains an additional script (once compiled and installed) under the file name of ircservces-chk (located here: /usr/local/sbin/ircservices-chk on most linux distributions). The contents of this file looks like this:<br />
<code><br />
#!/bin/sh<br />
#<br />
# Script to check whether IRC Services is running, and restart it if not.<br />
# Usage: ircservices-chk [-q] [ircservices-options]<br />
#        -q: don't write any output<br />
#        ircservices-options: options to pass to ircservices executable<br />
# If you change PIDFile in ircservices.conf, also change PIDFILE below.<br />
#<br />
# IRC Services is copyright (c) 1996-2009 Andrew Church.<br />
#     E-mail:<br />
# Parts written by Andrew Kempe and others.<br />
# This program is free but copyrighted software; see the file GPL.txt for<br />
# details.</code></p>
<p><code>PIDFILE=ircservices.pid</code></p>
<p><code>if [ "X$1" = "X-q" ] ; then<br />
exec 1&gt;/dev/null<br />
exec 2&gt;/dev/null<br />
shift<br />
fi</code></p>
<p><code>ok=<br />
if [ -f "/usr/local/lib/ircservices/$PIDFILE" ] ; then<br />
pid=`cat "/usr/local/lib/ircservices/$PIDFILE"`<br />
if echo "0$pid" | grep -q '[^0-9]' ; then<br />
rm -f "/usr/local/lib/ircservices/$PIDFILE"<br />
elif kill -0 $pid ; then<br />
ok=1<br />
fi<br />
fi</code></p>
<p><code> </code></p>
<p><code>if [ ! "$ok" ] ; then<br />
"/usr/local/sbin/ircservices" "$@"<br />
fi<br />
</code><br />
This script is almost perfect for my use (it does an exactly perfect job for ircservices), but not quite. This script uses the process id (PID) of ircservices to check if it is running or not. That&#8217;s ok, but not all programs output their current process ID to a file based location on the system or in any way that&#8217;s useful to the end user. I added a line to the beginning of the script, using the pgrep command to output the PID of my selected process to a file.<br />
<code><br />
pgrep process-name &gt; /home/username/a-directory-of-your-choosing/a-file-name-of-your-choosing.pid<br />
</code></p>
<p>Obviously you would replace <em>process-name</em> with the name of the process you want to monitor and <em>username </em>with your actual username.</p>
<p>You can use the command <code>ps aux</code> to list all the processes currently running on your system and locate the process you want to monitor.</p>
<p>The &#8216;.pid&#8217; file extension isn&#8217;t really necessary, however it might be handy for identifying what the file is, should you come across it later on down the track. Here&#8217;s my example for checking that ircbot is running:</p>
<p><code>#!/bin/sh<br />
#<br />
# Script to check whether IRC Services is running, and restart it if not.<br />
# Usage: ircservices-chk [-q] [ircservices-options]<br />
#        -q: don't write any output<br />
#        ircservices-options: options to pass to ircservices executable<br />
# If you change PIDFile in ircservices.conf, also change PIDFILE below.<br />
#<br />
# IRC Services is copyright (c) 1996-2009 Andrew Church.<br />
#     E-mail:<br />
# Parts written by Andrew Kempe and others.<br />
# This program is free but copyrighted software; see the file GPL.txt for<br />
# details.<br />
pgrep ircbot &gt; /home/username/ircbot/ircbot.pid<br />
PIDFILE=ircbot.pid</code></p>
<p><code>if [ "X$1" = "X-q" ] ; then<br />
exec 1&gt;/dev/null<br />
exec 2&gt;/dev/null<br />
shift<br />
fi</code></p>
<p><code> </code></p>
<p><code>ok=<br />
if [ -f "/home/username/ircbot/$PIDFILE" ] ; then<br />
pid=`cat "/home/username/ircbot/$PIDFILE"`<br />
if echo "0$pid" | grep -q '[^0-9]' ; then<br />
rm -f "/home/username/ircbot/$PIDFILE"<br />
elif kill -0 $pid ; then<br />
ok=1<br />
fi<br />
fi</code></p>
<p><code> </code></p>
<p><span style="font-family: monospace;">if [ ! "$ok" ] ; then</span></p>
<p><code> "/home/username/ircbot/ircbot" "$@"<br />
fi<br />
</code></p>
<p>Here&#8217;s my final version.</p>
<p><code>#!/bin/sh<br />
#<br />
# Script to check whether a process is running, and restart it if not.<br />
# Usage: running [-q]<br />
#        -q: don't write any output<br />
# Props to Andrew Church (http://www.ircservices.za.net) for creating<br />
# the original script ircservices-chk of which this script you are using<br />
# now is a slight modification by Quin Rose of Mokona Modoki<br />
# http://www.mokonamodoki.com/</code></p>
<p><code>pgrep ircbot &gt; /home/username/ircbot/ircbot.pid</code></p>
<p><code>PIDFILE=ircbot.pid</code></p>
<p><code>if [ "X$1" = "X-q" ] ; then<br />
exec 1&gt;/dev/null<br />
exec 2&gt;/dev/null<br />
shift<br />
fi</code></p>
<p><code> </code></p>
<p><code>ok=<br />
if [ -f "/home/username/ircbot/$PIDFILE" ] ; then<br />
pid=`cat "/home/username/ircbot/$PIDFILE"`<br />
if echo "0$pid" | grep -q '[^0-9]' ; then<br />
rm -f "/home/username/ircbot/$PIDFILE"<br />
elif kill -0 $pid ; then<br />
ok=1<br />
fi<br />
fi</p>
<p></code></p>
<p><code>if [ ! "$ok" ] ; then<br />
"/home/username/ircbot/ircbot" "$@"<br />
fi<br />
</code><br />
To use this script, just copy and past the code above into your favourite editor and be sure to save the script, and make it executable with: <code> chmod +x filename</code></p>
<p>Last but not least, you don&#8217;t want to have to run this script all the time, and manually by yourself do you? Wondering if you can just get put it in a cron job and let it rip? Well, Yes! You can! Add the following line to cron for automatic (once a minute) process checking goodness:<br />
<code><br />
* * * * * /home/andrew/ircbot/ircbot-chk -q</code></p>
<p>There are plenty of resources on the web relating to cron, so if you would rather have cron execute the script less often, you&#8217;ll need to do a little <a href="http://www.google.com.au/search?hl=en&amp;safe=off&amp;rlz=1C1GPCK_enAU346&amp;q=cron&amp;aq=f&amp;aqi=&amp;aql=&amp;oq=&amp;gs_rfai=" target="_blank">googling</a>.</p>
<p>Adding the -q sends all output from the script to /dev/null (a black hole of sorts) thus not showing any output on the screen. You can test it with or without the -q.</p>
<p>If you have any questions or would like for information or examples, please do let me know in the comments, and I will be only too happy to be of assistance! This certainly helped me, so I thought I would share, so that it could help you too!</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcheck-for-a-process-and-start-it-if-its-not-started-linux-unix&amp;title=Check%20for%20a%20Process%20and%20Start%20It%20if%20It%27s%20Not%20Started%20%28Linux%2FUnix%29&amp;bodytext=I%20came%20across%20a%20conundrum%20some%20time%20ago.%20I%20have%20a%20CentOS%20Linux%20based%20VPS%20running%20a%20few%20various%20different%20%27processes%27%20for%20different%20purposes.%20My%20problem%20was%20that%20from%20time%20to%20time%2C%20these%20processes%20would%20stop%20or%20die%2C%20for%20whatever%20reason.%20Given%20that%20I%20r" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcheck-for-a-process-and-start-it-if-its-not-started-linux-unix" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcheck-for-a-process-and-start-it-if-its-not-started-linux-unix&amp;title=Check%20for%20a%20Process%20and%20Start%20It%20if%20It%27s%20Not%20Started%20%28Linux%2FUnix%29&amp;notes=I%20came%20across%20a%20conundrum%20some%20time%20ago.%20I%20have%20a%20CentOS%20Linux%20based%20VPS%20running%20a%20few%20various%20different%20%27processes%27%20for%20different%20purposes.%20My%20problem%20was%20that%20from%20time%20to%20time%2C%20these%20processes%20would%20stop%20or%20die%2C%20for%20whatever%20reason.%20Given%20that%20I%20r" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcheck-for-a-process-and-start-it-if-its-not-started-linux-unix&amp;t=Check%20for%20a%20Process%20and%20Start%20It%20if%20It%27s%20Not%20Started%20%28Linux%2FUnix%29" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcheck-for-a-process-and-start-it-if-its-not-started-linux-unix&amp;title=Check%20for%20a%20Process%20and%20Start%20It%20if%20It%27s%20Not%20Started%20%28Linux%2FUnix%29" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcheck-for-a-process-and-start-it-if-its-not-started-linux-unix&amp;title=Check%20for%20a%20Process%20and%20Start%20It%20if%20It%27s%20Not%20Started%20%28Linux%2FUnix%29&amp;annotation=I%20came%20across%20a%20conundrum%20some%20time%20ago.%20I%20have%20a%20CentOS%20Linux%20based%20VPS%20running%20a%20few%20various%20different%20%27processes%27%20for%20different%20purposes.%20My%20problem%20was%20that%20from%20time%20to%20time%2C%20these%20processes%20would%20stop%20or%20die%2C%20for%20whatever%20reason.%20Given%20that%20I%20r" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Check%20for%20a%20Process%20and%20Start%20It%20if%20It%27s%20Not%20Started%20%28Linux%2FUnix%29&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcheck-for-a-process-and-start-it-if-its-not-started-linux-unix" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Check%20for%20a%20Process%20and%20Start%20It%20if%20It%27s%20Not%20Started%20%28Linux%2FUnix%29&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcheck-for-a-process-and-start-it-if-its-not-started-linux-unix" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/check-for-a-process-and-start-it-if-its-not-started-linux-unix/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Recover From &#8216;Testing Memory&#8217; System Halt After Installing Comodo Time Machine</title>
		<link>http://www.mokonamodoki.com/how-to-recover-from-testing-memory-system-halt-after-installing-comodo-time-machine</link>
		<comments>http://www.mokonamodoki.com/how-to-recover-from-testing-memory-system-halt-after-installing-comodo-time-machine#comments</comments>
		<pubDate>Wed, 03 Mar 2010 10:00:34 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Hints and Tips]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Time of the Time]]></category>
		<category><![CDATA[7]]></category>
		<category><![CDATA[Boot]]></category>
		<category><![CDATA[CD]]></category>
		<category><![CDATA[Comodo]]></category>
		<category><![CDATA[Comodo Time Machine]]></category>
		<category><![CDATA[ghost]]></category>
		<category><![CDATA[Hirens]]></category>
		<category><![CDATA[Hirens Boot CD]]></category>
		<category><![CDATA[Machine]]></category>
		<category><![CDATA[MBR]]></category>
		<category><![CDATA[MBRtool]]></category>
		<category><![CDATA[Memory]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Repair]]></category>
		<category><![CDATA[Start]]></category>
		<category><![CDATA[Start Up Repair]]></category>
		<category><![CDATA[Startup]]></category>
		<category><![CDATA[Startup Repair]]></category>
		<category><![CDATA[Testing]]></category>
		<category><![CDATA[Testing Memory]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[Up]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows XP]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=618</guid>
		<description><![CDATA[Comodo Time Machine is a fantastic product. Allowing you to completely ruin your Windows operating system, and then restore it back as good as new with the click of a button (well, maybe more than one click). By that I mean its great software for being able to roll back after your kids have just [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.comodo.com/home/data-storage-encryption/data-recovery.php">Comodo Time Machine</a> is a fantastic product. Allowing you to completely ruin your Windows operating system, and then restore it back as good as new with the click of a button (well, maybe more than one click). By that I mean its great software for being able to roll back after your kids have just destroyed the OS directories or you have suffered damage by a virus.</p>
<p>For most users, the installation is a breeze and Comodo Time Machine does it&#8217;s job. Unfortunately, this is not the case for all of us.</p>
<p>I&#8217;ve been installing Comodo Time Machine on systems for a little while now, and more than once, after the initial installation, I get the following error message upon boot up:</p>
<p><code><strong>Testing Memory &lt;Hexadecimal Value&gt;...</strong></code></p>
<p>Something went wrong. I don&#8217;t know exactly what, and perhaps a helpful reader can fill us in, however at this point, it would seem all is lost. Now, I&#8217;ve only tested this so far on PCs with Windows Vista and Windows 7. So if you have Windows XP, you made need to use a little additional effort.</p>
<p>If you have Windows 7 or Windows Vista, possibly like me, your first thought was &#8216;No worries, I&#8217;ll use the System Repair Utility on the my installation media&#8217;. This won&#8217;t work. &#8216;Startup Repair&#8217; won&#8217;t be able to solve the issue, and neither will rolling back to a &#8216;System Restore&#8217; point. It simply won&#8217;t work, yet.</p>
<p>Even though this is a problem for you, as far as your computer and operating system are concerned, there is no issue. Which is correct. Yes, Comodo Time Machine has failed to install correctly (of which there are many reasons why this may occur, one being lack of space on drive &#8216;C:&#8217;), however that has not really done any harm to your PC. You just simply can&#8217;t get into Windows!</p>
<p>If you have Windows 7 or Windows Vista, yes Startup Repair can help you, but first you have to give it something to repair. I was pretty desperate when this first happened to me, and I actually ended up re-installing the entire system. Not the second time around though. No way was I re-installing, especially since I didn&#8217;t have a backup of my clients system, and I was working on site without additional PCs to help my efforts.</p>
<p>In come Hirens Boot CD. Admittedly, you could use any number of rescue boot CDs out there on the internet, I happened to have Hirens Boot CD 10.0 which had exactly the tools I needed. In CD/ISO form, Hirens boot CD does contain some software that others would call &#8216;commercial&#8217; thus I can&#8217;t provide you with a download link to the ISO. However, <a href="http://www.hiren.info" target="_blank">this page</a>, and <a href="http://www.google.com/search?hl=en&amp;safe=off&amp;rlz=1C1GPCK_enAU339AU339&amp;ei=REKOS67ACM2IkAW6gP2FDQ&amp;sa=X&amp;oi=spell&amp;resnum=0&amp;ct=result&amp;cd=1&amp;ved=0CBIQBSgA&amp;q=Hiren's.BootCD+10.1.iso&amp;spell=1" target="_blank">this page</a>, should get you on the right track.</p>
<p>Once you have the CD prepared (or USB Key), place it in your computer, and boot from it. Most recent computers are capable of booting from a USB device or CD-ROM. In fact, I don&#8217;t think I&#8217;ve ever come across a computer that couldn&#8217;t boot from CD-ROM, and I&#8217;ve worked on some old PCs!</p>
<p>Don&#8217;t try booting the &#8216;MiniXP&#8217; It&#8217;s a little over kill for what we are going to do, although it is a very VERY responsive Windows XP based environment with most of the tools available. MiniXP runs entirely from memory, meaning you can remove the CD or USB Key once it has finished booting! Neat huh?!</p>
<p>Choose to &#8216;StartBootCD&#8217;. At the &#8216;Hirens All in 1 BootCD 10.1 Menu&#8217; menu, you&#8217;ll need to use your keyboard to select option 9, then select option 1, then select option 2. You should now have MBRtool loaded.</p>
<p>This program requires just a little understanding about the configuration of your HDDs in your computer. For simplicity sake however, if your computer only has one HDD with only one partition on it, the following instructions will work just fine. If your computer has multiple HDDs, and you don&#8217;t boot from the otherwise known as the &#8216;first HDD&#8217; then you need to pay attention to the screen and modify the instructions below accordingly. Feel free to ask for help in the comments below.</p>
<p>Enter 4 and press [Enter]</p>
<p>Enter 6 and press [Enter]</p>
<p>Enter 0 and press [Enter] (Zero)</p>
<p>Enter o and press [Enter] (O, as in the circled shaped letter for Orange) &lt;&#8211; This final step will wipe your MBR straight away, no questions asked. If you are feeling concerned, nervous or worried at this point, I suggest you reboot again and use another program on the CD called &#8216;ghost&#8217; to clone your HDD in its current state to a safe location.</p>
<p>Remember, I said we need to give Windows 7 / Windows Vista Startup Repair tool, something to fix? Well, now it has something to fix!</p>
<p>Press the [ESC] key three times to return you to the DOS prompt. Remove the CD/USB, put your Windows 7 or Windows Vista installation media in the drive and type: reboot (followed by a press of the enter key). Be sure to boot from your newly inserted installation media again.</p>
<p>After selecting your language, Time and currency format and Keyboard or input method, click Next. Click the text link &#8216;Repair your computer&#8217;. The &#8216;System Recovery Options&#8217; window will appear. Don&#8217;t be alarmed at the fact that it doesn&#8217;t detect your installed operating system (Windows 7 or Windows Vista), this is what we want!</p>
<p>Click the next button, and from the main menu choose &#8216;Startup Repair&#8217;. This process should only take a few seconds. If you want some assurance it worked, click the &#8216;Click here for diagnostic and repair details&#8217; link and scroll to the bottom. You should see something like this:</p>
<p><code><br />
Root cause found:<br />
----------------------------<br />
MBR is corrupt<br />
Repair action: Disk metadata repair<br />
Result: Completed succesfully. Error code = 0x0<br />
Time taken = ####ms<br />
----------------------------<br />
----------------------------<br />
</code></p>
<p>Click the Close button and click the Finish button. Your system should automatically reboot. If not, click the Restart button.</p>
<p>Hopefully you are now staring at your Windows 7 / Windows Vista logon screen or desktop!</p>
<p><strong>For Windows XP Users</strong></p>
<p><strong> </strong>Thankfully Windows XP has something  a little less evolved, but no less powerful called &#8216;The Recovery Console&#8217;. To access it, you&#8217;ll need an original Windows XP (SP1/2/3) installation media disc. Boot from the media and when prompted, press the R key.</p>
<p>When you are asked for the Administrator password, enter it. If you are on Windows XP Home, and you&#8217;ve never configured an Administrator password, chances are it&#8217;s blank, so just press enter. This may apply to some Windows XP Professional users as well.</p>
<p>At the prompt, assuming you have Windows XP installed to C:\&gt; type:</p>
<p><code>fixmbr</code></p>
<p>Ignore the warnings, unless you understand what they are (your situation couldn&#8217;t get any worse at this point anyway), and press the [Y] key followed by pressing the [Enter] key.</p>
<p>Type:</p>
<p><code>exit</code></p>
<p>to leave the recovery console and reboot. Hopefully you are now staring at your Windows XP Logon screen or desktop!</p>
<p><strong>Why Does This Work?</strong></p>
<p>When you install Comodo Time Machine, it makes a modification to your HDD MBR (Master Boot Record) telling your computer to first boot Comodo Time Machine (instead of your Windows OS), which in turn is configured to boot your Windows OS. When we use MBRtool to erase your MBR, we then use one of the options above to rebuild or repair your MBR. Regardless of Windows XP, Vista or 7, your MBR will be repaired/rebuilt to only boot your Windows OS again! By passing Comodo Time Machine altogether.</p>
<p><strong>What About Comodo Time Machine?</strong></p>
<p>It&#8217;s up to you. If you try again and it fails, you know now you have a way to get things working again. Having said that, I&#8217;ve had an almost 100% success rate when installing Comodo Time Machine again the second time around. I don&#8217;t why sometimes it fails the first time around like it does, it just does.</p>
<p>Any comments, improvements or criticism is welcome.</p>
<p>Kudos to <a href="http://www.tech-recipes.com/author/qmchenry/" target="_blank">qmchenry</a> at <a href="http://www.tech-recipes.com">Tech-Recipes</a> for the <a href="http://www.tech-recipes.com/rx/483/xp_repair_fix_master_boot_record_recovery_console/" target="_blank">Windows XP Recovery Console instructions</a>, where you can find additional comments and instructions about it&#8217;s use.</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fhow-to-recover-from-testing-memory-system-halt-after-installing-comodo-time-machine&amp;title=How%20To%20Recover%20From%20%27Testing%20Memory%27%20System%20Halt%20After%20Installing%20Comodo%20Time%20Machine&amp;bodytext=Comodo%20Time%20Machine%20is%20a%20fantastic%20product.%20Allowing%20you%20to%20completely%20ruin%20your%20Windows%20operating%20system%2C%20and%20then%20restore%20it%20back%20as%20good%20as%20new%20with%20the%20click%20of%20a%20button%20%28well%2C%20maybe%20more%20than%20one%20click%29.%20By%20that%20I%20mean%20its%20great%20software%20for%20bei" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fhow-to-recover-from-testing-memory-system-halt-after-installing-comodo-time-machine" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fhow-to-recover-from-testing-memory-system-halt-after-installing-comodo-time-machine&amp;title=How%20To%20Recover%20From%20%27Testing%20Memory%27%20System%20Halt%20After%20Installing%20Comodo%20Time%20Machine&amp;notes=Comodo%20Time%20Machine%20is%20a%20fantastic%20product.%20Allowing%20you%20to%20completely%20ruin%20your%20Windows%20operating%20system%2C%20and%20then%20restore%20it%20back%20as%20good%20as%20new%20with%20the%20click%20of%20a%20button%20%28well%2C%20maybe%20more%20than%20one%20click%29.%20By%20that%20I%20mean%20its%20great%20software%20for%20bei" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fhow-to-recover-from-testing-memory-system-halt-after-installing-comodo-time-machine&amp;t=How%20To%20Recover%20From%20%27Testing%20Memory%27%20System%20Halt%20After%20Installing%20Comodo%20Time%20Machine" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fhow-to-recover-from-testing-memory-system-halt-after-installing-comodo-time-machine&amp;title=How%20To%20Recover%20From%20%27Testing%20Memory%27%20System%20Halt%20After%20Installing%20Comodo%20Time%20Machine" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fhow-to-recover-from-testing-memory-system-halt-after-installing-comodo-time-machine&amp;title=How%20To%20Recover%20From%20%27Testing%20Memory%27%20System%20Halt%20After%20Installing%20Comodo%20Time%20Machine&amp;annotation=Comodo%20Time%20Machine%20is%20a%20fantastic%20product.%20Allowing%20you%20to%20completely%20ruin%20your%20Windows%20operating%20system%2C%20and%20then%20restore%20it%20back%20as%20good%20as%20new%20with%20the%20click%20of%20a%20button%20%28well%2C%20maybe%20more%20than%20one%20click%29.%20By%20that%20I%20mean%20its%20great%20software%20for%20bei" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=How%20To%20Recover%20From%20%27Testing%20Memory%27%20System%20Halt%20After%20Installing%20Comodo%20Time%20Machine&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fhow-to-recover-from-testing-memory-system-halt-after-installing-comodo-time-machine" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=How%20To%20Recover%20From%20%27Testing%20Memory%27%20System%20Halt%20After%20Installing%20Comodo%20Time%20Machine&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fhow-to-recover-from-testing-memory-system-halt-after-installing-comodo-time-machine" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/how-to-recover-from-testing-memory-system-halt-after-installing-comodo-time-machine/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Can&#8217;t Access Windows 2000 or Windows XP File and Printer Shares From Windows 7</title>
		<link>http://www.mokonamodoki.com/cant-access-windows-2000-or-windows-xp-file-and-printer-shares-from-windows-7</link>
		<comments>http://www.mokonamodoki.com/cant-access-windows-2000-or-windows-xp-file-and-printer-shares-from-windows-7#comments</comments>
		<pubDate>Sat, 10 Oct 2009 00:30:52 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Hints and Tips]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Time of the Time]]></category>
		<category><![CDATA[File Sharing]]></category>
		<category><![CDATA[Printer Sharing]]></category>
		<category><![CDATA[Windows 2000]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=614</guid>
		<description><![CDATA[Can&#8217;t access file shares and shared printers on your Windows 2000 or Windows XP Machines from Windows 7? The solution is below. I had this issue for a few days and finally, after searching through heaps of forum threads and posts, stumbled across the solution. The solution was originally posted on Windows Client Tech Centre [...]]]></description>
			<content:encoded><![CDATA[<p>Can&#8217;t access file shares and shared printers on your Windows 2000 or Windows XP Machines from Windows 7? The solution is below. I had this issue for a few days and finally, after searching through heaps of forum threads and posts, stumbled across the solution. The solution was originally posted on <a href="http://social.technet.microsoft.com/Forums/en-US/w7itpronetworking/thread/ed05788a-af43-4df6-b124-fdb57391752e" target="_blank">Windows Client Tech Centre</a> forums (by a user known as &#8216;<a href="http://social.technet.microsoft.com/Forums/en-US/w7itpronetworking/thread/ed05788a-af43-4df6-b124-fdb57391752e" target="_blank">shooda</a>&#8216;).</p>
<p>On your Windows 7 Machines:</p>
<ol>
<li>Access the &#8216;Run&#8217; command (otherwise known as the run box). If you can&#8217;t see it in your Start Menu, try enabling it in the &#8216;Superbar&#8217; (the Task Bar) properties or on your keyboard press the &#8216;Windows&#8217; (WIN) key and the &#8216;R&#8217; key at the same time.</li>
<li>Type: gpedit.msc (press enter or click OK)</li>
<li>Make your way down through Computer Configuration
<ol>
<li>Windows Settings
<ol>
<li>Security Settings
<ol>
<li>Local Policies
<ol>
<li>Security Options</li>
<li>And double click on &#8216;Network security: LAN Manager authentication level&#8217;
<ol>
<li>Click the drop down box and select the option &#8216;Send LM &amp; NTLM Responses&#8217;</li>
<li>Click OK</li>
</ol>
</li>
</ol>
</li>
</ol>
</li>
</ol>
</li>
</ol>
</li>
<li>Close the Local Group Policy Editor.</li>
<li>Done! Try accessing file and printer shares on your Windows 2000 and Windows XP machines from your Windows 7 machines.</li>
</ol>
<p>More information (as technical as it is) can be found <a href="http://social.technet.microsoft.com/Forums/en-US/w7itpronetworking/thread/ed05788a-af43-4df6-b124-fdb57391752e" target="_blank">here</a>.</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcant-access-windows-2000-or-windows-xp-file-and-printer-shares-from-windows-7&amp;title=Can%27t%20Access%20Windows%202000%20or%20Windows%20XP%20File%20and%20Printer%20Shares%20From%20Windows%207&amp;bodytext=Can%27t%20access%20file%20shares%20and%20shared%20printers%20on%20your%20Windows%202000%20or%20Windows%20XP%20Machines%20from%20Windows%207%3F%20The%20solution%20is%20below.%20I%20had%20this%20issue%20for%20a%20few%20days%20and%20finally%2C%20after%20searching%20through%20heaps%20of%20forum%20threads%20and%20posts%2C%20stumbled%20across%20the" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcant-access-windows-2000-or-windows-xp-file-and-printer-shares-from-windows-7" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcant-access-windows-2000-or-windows-xp-file-and-printer-shares-from-windows-7&amp;title=Can%27t%20Access%20Windows%202000%20or%20Windows%20XP%20File%20and%20Printer%20Shares%20From%20Windows%207&amp;notes=Can%27t%20access%20file%20shares%20and%20shared%20printers%20on%20your%20Windows%202000%20or%20Windows%20XP%20Machines%20from%20Windows%207%3F%20The%20solution%20is%20below.%20I%20had%20this%20issue%20for%20a%20few%20days%20and%20finally%2C%20after%20searching%20through%20heaps%20of%20forum%20threads%20and%20posts%2C%20stumbled%20across%20the" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcant-access-windows-2000-or-windows-xp-file-and-printer-shares-from-windows-7&amp;t=Can%27t%20Access%20Windows%202000%20or%20Windows%20XP%20File%20and%20Printer%20Shares%20From%20Windows%207" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcant-access-windows-2000-or-windows-xp-file-and-printer-shares-from-windows-7&amp;title=Can%27t%20Access%20Windows%202000%20or%20Windows%20XP%20File%20and%20Printer%20Shares%20From%20Windows%207" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcant-access-windows-2000-or-windows-xp-file-and-printer-shares-from-windows-7&amp;title=Can%27t%20Access%20Windows%202000%20or%20Windows%20XP%20File%20and%20Printer%20Shares%20From%20Windows%207&amp;annotation=Can%27t%20access%20file%20shares%20and%20shared%20printers%20on%20your%20Windows%202000%20or%20Windows%20XP%20Machines%20from%20Windows%207%3F%20The%20solution%20is%20below.%20I%20had%20this%20issue%20for%20a%20few%20days%20and%20finally%2C%20after%20searching%20through%20heaps%20of%20forum%20threads%20and%20posts%2C%20stumbled%20across%20the" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Can%27t%20Access%20Windows%202000%20or%20Windows%20XP%20File%20and%20Printer%20Shares%20From%20Windows%207&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcant-access-windows-2000-or-windows-xp-file-and-printer-shares-from-windows-7" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Can%27t%20Access%20Windows%202000%20or%20Windows%20XP%20File%20and%20Printer%20Shares%20From%20Windows%207&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcant-access-windows-2000-or-windows-xp-file-and-printer-shares-from-windows-7" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/cant-access-windows-2000-or-windows-xp-file-and-printer-shares-from-windows-7/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>VMware Server 1.0.9 on CentOS 5.3</title>
		<link>http://www.mokonamodoki.com/vmware-server-1-0-9-on-centos-5-3</link>
		<comments>http://www.mokonamodoki.com/vmware-server-1-0-9-on-centos-5-3#comments</comments>
		<pubDate>Thu, 24 Sep 2009 11:00:10 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Hints and Tips]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Time of the Time]]></category>
		<category><![CDATA[1.0.9]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=609</guid>
		<description><![CDATA[The contents of this guide should work perfectly fine on a base (yes that&#8217;s base, not bare bones) only installation of either CentOS 32/64 bit or RHEL 5.3 32/64 bit. If you have any troubles, please do leave a comment and I&#8217;ll do my best to assist you. This guide assumes you are setting up [...]]]></description>
			<content:encoded><![CDATA[<p>The contents of this guide should work perfectly fine on a base (yes that&#8217;s base, not bare bones) only installation of either CentOS 32/64 bit or RHEL 5.3 32/64 bit. If you have any troubles, please do leave a comment and I&#8217;ll do my best to assist you. This guide assumes you are setting up your machine to be a server, although the steps will work just fine on a machine configured to be a desktop.</p>
<p><strong>Install CentOS 5.3 32/64 Bit<br />
</strong></p>
<p>If you haven&#8217;t installed CentOS 5.3 already, you should do so. Kinda hard to use VMware Server 1.0.9 without an operating system. Most people want the host OS to have as little additional crap as possible. In regards to that, during the installation, make a point of not installing any additional packages, or package groups except the &#8216;Base&#8217; group (oh and leave the base group in it&#8217;s default state, don&#8217;t go ticking on any extras, you&#8217;ll make the installation install more dependancies thus more crap). So in other words, only the &#8216;Base&#8217; group should be ticked, untick the rest!</p>
<p>Nope, you won&#8217;t have any GUI, and even if you did, you still have to do the rest of the configuration at the command line anyway. VMware Server 1.0.9 host with GUI = bad idea, unless of course your host is also your desktop.</p>
<p>Once installed, configure your host as you like it from the &#8216;firstboot&#8217; screen and than login as root. Here&#8217;s a few tips.</p>
<ul>
<li>Disable any services you aren&#8217;t using.</li>
<li>Disable SE Linux</li>
<li>Unless you&#8217;re going to configure and use it with VMware Server 1.0.9 machines, disable ip6tables</li>
<li>Don&#8217;t go configuring special firewall rules just yet, leave that until later.</li>
</ul>
<p>Even though it&#8217;s the host, its&#8217; software should still be up to date. Issue the following command and download any updates.</p>
<p><code>yum update</code></p>
<p>Updates finished? Awesome! Lets reboot the server and start the next step afresh.</p>
<p><code>shutdown -r now</code></p>
<p><strong>Install VMware Server 1.0.9 Required Components.</strong></p>
<p>Plenty of you will argue about what you do and don&#8217;t need to complete the install. Well, I&#8217;ve completed this configuration of server with VMware Server more times than I care to remember now, and sometimes I needed all of these packages and sometimes I didn&#8217;t. No, I didn&#8217;t bother to find out why. Do you know why? Great! Put it in the comments!</p>
<p>Login in as root and issue the following commands one after the other. Yes, you can issue them all at once if you&#8217;re clever, I like to take my time, in case the worlds explodes.</p>
<p><code>yum install kernel-devel</code><br />
<code>yum install kernel-headers</code><br />
<code>yum install libXtst*</code><br />
<code>yum install xinetd</code><br />
<code>yum install gcc*</code></p>
<p>On a couple of occasions, I needed the following package &#8211; It could have been when I was using CentOS 5.3 64Bit</p>
<p><code>yum install libXdmcp-devel</code><br />
<code>yum install libXrender*</code></p>
<p>What does the &#8216;*&#8217; mean? It means grab any packages that start with &#8216;anytextbeforethe*&#8217;</p>
<p>Installed all the packages? Fantastic! Lets reboot the server and start the next step afresh.</p>
<p><code>shutdown -r now</code></p>
<p><strong>Install VMware Server 1.0.9</strong></p>
<p>How you get the installation package of VMware Server 1.0.9 onto your server is up to you. Here are a few tips.</p>
<ul>
<li>Download VMware Server 1.0.9 <a href="http://register.vmware.com/content/download-109.html" target="_blank">Here</a> or <a title="Yes, it's the RPM file!" href="http://download3.vmware.com/software/vmserver/VMware-server-1.0.9-156507.i386.rpm" target="_blank">Here</a></li>
<li>Make sure you register for a VMware Server  serial number or numbers. It&#8217;s free.</li>
<li>You can use WinSCP to transfer VMware Server 1.0.9. to your server (it uses SSH). Get it <a href="http://winscp.net/eng/download.php#download2" target="_blank">Here</a> or<a title="Yes, it's the windows installation package!" href="http://winscp.net/download/winscp423setup.exe" target="_blank"> Here</a>.</li>
<li>You could use the wget command with the direct link above, directly on your server, like this:
<ul>
<li><code>wget -c http://download3.vmware.com/software/vmserver/VMware-server-1.0.9-156507.i386.rpm</code></li>
</ul>
</li>
<li>Burn it to a CD</li>
<li>Burn it to a DVD</li>
<li>Transfer it to a USB Drive</li>
</ul>
<p>Once you have the VMware Server 1.0.9 installation file on your server, installing is pretty straight forward. If you&#8217;ve never installed a RPM file before, pay attention, people go to university for this stuff. Make sure you are logged in as root, and issue the following:</p>
<p><code>rpm -ivh VMware-server-1.0.9-156507.i386.rpm</code></p>
<p>Easy, no?</p>
<p>Depending on the power of your server, it may take a few minutes to install. Once installed, we have one last final step. No need to reboot this time!</p>
<p><strong>Configuring VMware Server 1.0.9</strong></p>
<p>Issue the following command. If some or none of the required packages are not installed, this will tell you straight away.</p>
<p><code>vmware-config.pl</code></p>
<p>or if you are so inclined:</p>
<p><code>/usr/bin/vmware-config.pl</code></p>
<p>Both do the exact same thing. Don&#8217;t run both (either by concatenating them both together or one after the other), that would just be silly and make you leave a comment about how you ran both and got an error message.</p>
<p><strong>NB: </strong>If you are told that some packages or components are missing, I suggest going back and re-issuing the &#8216;yum&#8217; commands above in the section &#8216;<em>Install VMware Server 1.0.9 Required Components</em>&#8216;. Before you issue any commands, press <strong>ctrl-c</strong> to quit the setup program and return to the command prompt.</p>
<p>If you see something like the following, you are good to go:</p>
<pre>Making sure services for VMware Server are stopped.

Stopping VMware services:
   Virtual machine monitor                                 [  OK  ]

You must read and accept the End User License Agreement to continue.
Press enter to display it.</pre>
<p>The configuration settings of VMware Server 1.0.9 is now up to you. Here are a few tips:</p>
<ul>
<li>Accept the agreement, type Y or Yes and press the enter key.</li>
<li>The defaults are all fine.</li>
<li>In most cases, Bridged networking is what you are after, so say &#8216;No&#8217; to host only and NAT (unless you know what they are and you are going to use them)</li>
<li>Sometimes the installation would tell me that port 902 is unavailable. This is not true. Override by typing in 902, otherwise you&#8217;ll need to remember 904 (or whatever other number you select) and type it in every time when you use the VMware Server 1.0.9 client. Not cool.</li>
<li>At the very least, choose your own location for the storage of VMware Server 1.0.9 servers. I always put mine in /home/vmware (because I have /home on a separate partition)</li>
<li>Put your Serial Key in now, rather than later.</li>
</ul>
<p>Installation and Configuration is now complete! If you need any further help / assistance, please, feel free to leave a comment</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fvmware-server-1-0-9-on-centos-5-3&amp;title=VMware%20Server%201.0.9%20on%20CentOS%205.3&amp;bodytext=The%20contents%20of%20this%20guide%20should%20work%20perfectly%20fine%20on%20a%20base%20%28yes%20that%27s%20base%2C%20not%20bare%20bones%29%20only%20installation%20of%20either%20CentOS%2032%2F64%20bit%20or%20RHEL%205.3%2032%2F64%20bit.%20If%20you%20have%20any%20troubles%2C%20please%20do%20leave%20a%20comment%20and%20I%27ll%20do%20my%20best%20to%20assist%20yo" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fvmware-server-1-0-9-on-centos-5-3" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fvmware-server-1-0-9-on-centos-5-3&amp;title=VMware%20Server%201.0.9%20on%20CentOS%205.3&amp;notes=The%20contents%20of%20this%20guide%20should%20work%20perfectly%20fine%20on%20a%20base%20%28yes%20that%27s%20base%2C%20not%20bare%20bones%29%20only%20installation%20of%20either%20CentOS%2032%2F64%20bit%20or%20RHEL%205.3%2032%2F64%20bit.%20If%20you%20have%20any%20troubles%2C%20please%20do%20leave%20a%20comment%20and%20I%27ll%20do%20my%20best%20to%20assist%20yo" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fvmware-server-1-0-9-on-centos-5-3&amp;t=VMware%20Server%201.0.9%20on%20CentOS%205.3" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fvmware-server-1-0-9-on-centos-5-3&amp;title=VMware%20Server%201.0.9%20on%20CentOS%205.3" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fvmware-server-1-0-9-on-centos-5-3&amp;title=VMware%20Server%201.0.9%20on%20CentOS%205.3&amp;annotation=The%20contents%20of%20this%20guide%20should%20work%20perfectly%20fine%20on%20a%20base%20%28yes%20that%27s%20base%2C%20not%20bare%20bones%29%20only%20installation%20of%20either%20CentOS%2032%2F64%20bit%20or%20RHEL%205.3%2032%2F64%20bit.%20If%20you%20have%20any%20troubles%2C%20please%20do%20leave%20a%20comment%20and%20I%27ll%20do%20my%20best%20to%20assist%20yo" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=VMware%20Server%201.0.9%20on%20CentOS%205.3&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fvmware-server-1-0-9-on-centos-5-3" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=VMware%20Server%201.0.9%20on%20CentOS%205.3&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fvmware-server-1-0-9-on-centos-5-3" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/vmware-server-1-0-9-on-centos-5-3/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Proxmox OpenVZ Server 2 NICs 2 Gateways</title>
		<link>http://www.mokonamodoki.com/proxmox-openvz-server-2-nics-2-gateways</link>
		<comments>http://www.mokonamodoki.com/proxmox-openvz-server-2-nics-2-gateways#comments</comments>
		<pubDate>Tue, 22 Sep 2009 04:00:35 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Hints and Tips]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Time of the Time]]></category>
		<category><![CDATA[Gateways]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[OpenVZ]]></category>
		<category><![CDATA[Promox]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=605</guid>
		<description><![CDATA[These are two solutions that worked for me. They are by no means the only solutions.
My Predicament.
A server (a Dell SC440), with two physical network interfaces. Our office has two ISP connections (DSL broadband). We have the one internal network range (192.168.1.0/24) with two gateways (1.254 and 1.221).
I have installed Promox on the server. I [...]]]></description>
			<content:encoded><![CDATA[<p><em><strong>These are two solutions that worked for me. They are by no means the only solutions.</strong></em></p>
<p><strong>My Predicament.</strong><br />
A server (a Dell SC440), with two physical network interfaces. Our office has two ISP connections (DSL broadband). We have the one internal network range (192.168.1.0/24) with two gateways (1.254 and 1.221).</p>
<p>I have installed Promox on the server. I wanted to be able to choose which gateway the guest containers used, instead of them being locked into using the same gateway as the host server. Some of the guest OS containers will host services via the first ISP, and the others will host services via the second ISP. (obviously with firewall rules etc configured in our gateways). So the container gateway entries need to point to their respective ISP/Gateway.</p>
<p><strong>Note: </strong>While the security advantage of venet over veth is certainly worthwhile in a hosting environment (and others as well), in my case, we have two hardware firewalls that haven&#8217;t let us down yet, and there is little to no concern for the possibility of an internal hacker (there are only three of us!)</p>
<p><span id="more-605"></span></p>
<p><strong>Solution 1. Requires the most effort, but gives the most flexibility. </strong></p>
<p>I decided to configure the host with a vmbr0 device that contains a bond0 device, that contains devices eth0 and eth1 (you can look at the video tutorials on <a href="pve.proxmox.com" target="_blank">pve.proxmox.com</a> for anyone unsure of how to create a bond0) &#8211; I configured the bond0 with an IP address that matches our office network (this address doesn&#8217;t matter in regards to the containers, just makes the host easy to access if it&#8217;s on the same network).</p>
<p>Creating the network bond is meaningless (except for redundancy reasons), so long as you end up with an accessible vmbrX device, that contains either ethX or bondX, you&#8217;re good to go. Bonding network devices in linux is close to using the &#8216;join to network bridge&#8217; feature available in Windows 2000/XP/Vista/7 when you have two similiar Ethernet network devices.</p>
<p>When creating a new container in the web interface, instead of choosing Virtual Network (venet) choose Bridged Ethernet (veth) instead.</p>
<p>It has been pointed out to me, that veth is not as secure as venet (which is true), however veth does give your guest container OS direct access to the network, in a smiliar fashion to the way VMware server can give a guest OS direct access to a physical network using Bridged Ethernet.</p>
<p>Once your guest OS container is up and running, you&#8217;ll need to use the &#8220;Open VNC Console&#8221; link on the container&#8217;s General page, in the proxmox web interface, to get console access to the container, so that you can manually configure your network interfaces. Instead of configuring venet0:0 or similiar devices, you&#8217;ll be back to configuring eth0 or similiar devices. In CentOS, these turn out to be ifcfg-eth0 and ifcfg-lo. If you are unsure of how to do this manually, I suggest googling for some answers, or in CentOS, you can use a tool (if it&#8217;s available in your guest OS template) called system-config-network-tui. It&#8217;s available via Yum if you don&#8217;t have it.</p>
<p>Easy way to get it<br />
1. Create a container with CentOS<br />
2. Assigned it an IP Address using Virtual Network (venet)<br />
3. Login via the VNC console or SSH and issue: <code>yum install system-config-network-tui</code><br />
4. Logout<br />
5. Use the Proxmox web interface to shutdown the container<br />
6. Remove the Virtual Network Adapter (venet) by deleting the IP Address and clicking Save.<br />
7. The page will refresh and you can now select vmbr0 from the Bridged Ethernet Devices section. Click Save.<br />
8. Start your container<br />
9. Login via VNC Console and issue:<code> system-config-network-tui</code><br />
10. You&#8217;re on your own from here. Remember, you need to configure eth0 not venet0 and venet0:0 &#8211; you may want to remove these. Don&#8217;t forget to set your gateway and edit your DNS<br />
11. Restart your network with<code> /etc/init.d/network restart</code></p>
<p><strong>Solution 2. Requires less effort, doesn&#8217;t necassarily give as much flexibility, but increases security.</strong></p>
<p>You can edit your /etc/network/interfaces file on the host (the server with Proxmox installed). It&#8217;s actually kinda easy. This option also lets you avoid having to edit the network settings inside your guest container OS. So you can create plenty of containers, without have to edit each one! Neat!</p>
<p><strong>Remember:</strong> I have two Gateways. 1.254 and 1.221 and my server has two network interfaces.</p>
<p>I could configure each of the network interfaces with two different networks. For example: NIC1: 192.168.1.0/24 with a gateway of 192.168.1.254 and NIC2: 192.168.4.0/24 with a gateway of 192.168.4.254.</p>
<p>There is no point in configuring both interfaces with the same network, for example: NIC1: 192.168.1.200 with a gateway of 192.168.1.254 and NIC2: 192.168.1.205 with a gateway of 192.168.1.221. The host (and consequently any guest container OS) will always use the gateway configured in eth0). If there is a way around this, I wasn&#8217;t able to figure it out.</p>
<p>By configuring each NIC with a separate network (192.168.1.0/24 and 192.168.4.0/24), I can make a guest container OS use the gateway of the 192.168.4.0/24 network, by giving it an IP Address like: 192.168.4.54, or make a guest container OS use the gateway of the 192.168.1.0/24 network, by giving it an IP Address like: 192.168.1.54.</p>
<p>However, we&#8217;re not done yet. Here&#8217;s how you do it. In the Web Interface, I again configured my network as follows. This could be done in a variety of ways, so long as you end up with a vmbr0.</p>
<p>I created a bond0, that contained eth0 and eth1. I then created a vmbr0 that contained bond0. I set the IP address of vmbr0 to 192.168.1.230 &#8211; so I could access it again after reboot. I didn&#8217;t configure IP Addresses anywhere else.</p>
<p>After rebooting, I edited my /etc/network/interfaces file</p>
<p>On the host I issused:<code> nano /etc/network/interfaces</code> (I love nano, I know it&#8217;s for noobs but I can&#8217;t get my head around vi, I&#8217;ve used nano for too long!)</p>
<p>At the bottom of my /etc/network/interfaces file I added</p>
<p><code>auto vmbr0:0<br />
iface vmbr0:0 inet static<br />
address 192.168.4.100<br />
netmask 255.255.255.0<br />
gateway 192.168.4.254</code></p>
<p><code>auto vmbr0:1<br />
iface vmbr0:0 inet static<br />
address 192.168.1.100<br />
netmask 255.255.255.0<br />
gateway 192.168.1.254</code></p>
<p>DNS can be configured individually for each container using the proxmox web interface, or in my case of using CentOS, by editing the resov.conf file inside my guest container OS. Do what is easiest for you. You can also use system-config-network-tui.</p>
<p>Once I had modified by /etc/network/interfaces file, I saved and than restarted the network service by issuing: /etc/init.d/networking restart</p>
<p>I next created guest OS containers, with IP addresses that matched the network of the gateway that I wanted to use. In this situation, the guest container OS&#8217;s can also commuinicate with each other, even though they may be using different networks, thanks to the host. Handy, no?</p>
<p>In the end for me, I am using <strong>Solution 1</strong>. Mainly because we are not running a hosting company, rather just running services on our network and migrating away from VMware, so configuring network settings manually in this case, isn&#8217;t a big issue. In the proxmox web interface, I added the IP Address of each container, into the comments section for future reference.</p>
<p>If I was to use <strong>Solution 2</strong>, in our case we would have to change the IP Address of not only the gateway, but also many other devices also currently using the 192.168.1.0/24 network. We would inevitibly have to implement a routing solution to allow nodes on each network (1.0 and 4.0), to communicate with devices on either network, as is the case with most devices communicating with each other now.</p>
<p>As I said above, this is not necassarily the best or only solution, it is however what I was able to come up with. Comments, suggestions and improvements are welcome.</p>
<p>If someone can help me get the security of using venet instead of veth (and manually configuring the containers) and be able to get each of my containers to use one gateway or the other, all on the one network, without having to edit the container network settings, well then that would be awesome!</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fproxmox-openvz-server-2-nics-2-gateways&amp;title=Proxmox%20OpenVZ%20Server%202%20NICs%202%20Gateways&amp;bodytext=These%20are%20two%20solutions%20that%20worked%20for%20me.%20They%20are%20by%20no%20means%20the%20only%20solutions.%0D%0A%0D%0AMy%20Predicament.%0D%0AA%20server%20%28a%20Dell%20SC440%29%2C%20with%20two%20physical%20network%20interfaces.%20Our%20office%20has%20two%20ISP%20connections%20%28DSL%20broadband%29.%20We%20have%20the%20one%20internal%20netwo" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fproxmox-openvz-server-2-nics-2-gateways" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fproxmox-openvz-server-2-nics-2-gateways&amp;title=Proxmox%20OpenVZ%20Server%202%20NICs%202%20Gateways&amp;notes=These%20are%20two%20solutions%20that%20worked%20for%20me.%20They%20are%20by%20no%20means%20the%20only%20solutions.%0D%0A%0D%0AMy%20Predicament.%0D%0AA%20server%20%28a%20Dell%20SC440%29%2C%20with%20two%20physical%20network%20interfaces.%20Our%20office%20has%20two%20ISP%20connections%20%28DSL%20broadband%29.%20We%20have%20the%20one%20internal%20netwo" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fproxmox-openvz-server-2-nics-2-gateways&amp;t=Proxmox%20OpenVZ%20Server%202%20NICs%202%20Gateways" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fproxmox-openvz-server-2-nics-2-gateways&amp;title=Proxmox%20OpenVZ%20Server%202%20NICs%202%20Gateways" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fproxmox-openvz-server-2-nics-2-gateways&amp;title=Proxmox%20OpenVZ%20Server%202%20NICs%202%20Gateways&amp;annotation=These%20are%20two%20solutions%20that%20worked%20for%20me.%20They%20are%20by%20no%20means%20the%20only%20solutions.%0D%0A%0D%0AMy%20Predicament.%0D%0AA%20server%20%28a%20Dell%20SC440%29%2C%20with%20two%20physical%20network%20interfaces.%20Our%20office%20has%20two%20ISP%20connections%20%28DSL%20broadband%29.%20We%20have%20the%20one%20internal%20netwo" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Proxmox%20OpenVZ%20Server%202%20NICs%202%20Gateways&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fproxmox-openvz-server-2-nics-2-gateways" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Proxmox%20OpenVZ%20Server%202%20NICs%202%20Gateways&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fproxmox-openvz-server-2-nics-2-gateways" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/proxmox-openvz-server-2-nics-2-gateways/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sacred 2 on Windows 7</title>
		<link>http://www.mokonamodoki.com/sacred-2-on-windows-7</link>
		<comments>http://www.mokonamodoki.com/sacred-2-on-windows-7#comments</comments>
		<pubDate>Tue, 22 Sep 2009 02:00:11 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Hints and Tips]]></category>
		<category><![CDATA[Time of the Time]]></category>
		<category><![CDATA[Ageia]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Game]]></category>
		<category><![CDATA[Impulse]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[Physx]]></category>
		<category><![CDATA[Sacred 2]]></category>
		<category><![CDATA[Steam]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=602</guid>
		<description><![CDATA[Kudos go to my girlfriend for sussing this one out.
Recently, we came across a conundrum concerning the computer game Sacred 2 running under Windows 7. Long story short, it just wouldn&#8217;t work. It should be noted that the reason for this not working, has nothing to do with Nvidia / ATI Graphics cards, but it [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: right;"><em>Kudos go to <a title="Chibichatter" href="http://www.chibichatter.com" target="_blank">my girlfriend</a> for sussing this one out.</em></p>
<p>Recently, we came across a conundrum concerning the computer game Sacred 2 running under Windows 7. Long story short, it just wouldn&#8217;t work. It should be noted that the reason for this not working, has nothing to do with Nvidia / ATI Graphics cards, but it is related to <a href="http://en.wikipedia.org/wiki/PhysX" target="_blank">Physx</a>/<a href="http://en.wikipedia.org/wiki/Ageia" target="_blank">Ageia</a>. Make sure you have the latest version of Physx installed. Sacred 2 does come with the last version of Physx known as Ageia Physx (before nvidia bought it and rebranded it to just Physx). You can also obtain the latest stand alone Physx package from the nvidia website.<em><strong> Even if you have an ATI graphics card, you still need to have this installed to play Sacred 2 and any other games that require Physx</strong></em>. So long as your CPU supports it and it is powerful enough, you&#8217;ll get CPU powered physics, instead of physics powered by your graphics card. Some people call this &#8220;Software Physics&#8221; or &#8220;Software&#8221; mode. I&#8217;ve noticed no performance difference between a computer playing Sacred 2 with an Nvidia graphics card and a computer with an ATI graphics card.</p>
<p>This fix should work for owners of Sacred 2 under Windows 7, regardless of the version  you have (Steam, Impulse, Stand alone or whatever).</p>
<ol>
<li>Create a shortcut to the Sacred 2 executable. You&#8217;ll find it in the game directory, in another directory called &#8217;system&#8217;. For me, it is: <code>D:\Games\Steam\SteamApps\Common\Sacred 2\System\Sacred2.exe</code></li>
<li>Put the shortcut on your desktop, or somewhere handy.</li>
<li>Right click the shortcut and select properties</li>
<li>Click the Shortcut tab</li>
<li>In the Target field, you need to add the following: -skipopenal -nocpubinding. The contents of my Target field look like this: <code>"D:\Games\Steam\SteamApps\common\sacred 2\system\sacred2.exe" -skipopenal -nocpubinding</code></li>
<li>Click Apply and Click OK.</li>
<li>Double click the shortcut and play Sacred 2!</li>
</ol>
<p>Still can&#8217;t get it to work? Leave a comment and I&#8217;ll see what I can do to help you out. Further comments and suggestions are welcome. These are just simply the steps that worked for us. In case you are wondering, we are using the RTM (Release To Manfacture) version of Windows 7 (we are Microsoft Technet Partners). This is the same version that is available to consumers and end users as of mid October 2009.</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fsacred-2-on-windows-7&amp;title=Sacred%202%20on%20Windows%207&amp;bodytext=Kudos%20go%20to%20my%20girlfriend%20for%20sussing%20this%20one%20out.%0D%0A%0D%0ARecently%2C%20we%20came%20across%20a%20conundrum%20concerning%20the%20computer%20game%20Sacred%202%20running%20under%20Windows%207.%20Long%20story%20short%2C%20it%20just%20wouldn%27t%20work.%20It%20should%20be%20noted%20that%20the%20reason%20for%20this%20not%20workin" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fsacred-2-on-windows-7" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fsacred-2-on-windows-7&amp;title=Sacred%202%20on%20Windows%207&amp;notes=Kudos%20go%20to%20my%20girlfriend%20for%20sussing%20this%20one%20out.%0D%0A%0D%0ARecently%2C%20we%20came%20across%20a%20conundrum%20concerning%20the%20computer%20game%20Sacred%202%20running%20under%20Windows%207.%20Long%20story%20short%2C%20it%20just%20wouldn%27t%20work.%20It%20should%20be%20noted%20that%20the%20reason%20for%20this%20not%20workin" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fsacred-2-on-windows-7&amp;t=Sacred%202%20on%20Windows%207" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fsacred-2-on-windows-7&amp;title=Sacred%202%20on%20Windows%207" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fsacred-2-on-windows-7&amp;title=Sacred%202%20on%20Windows%207&amp;annotation=Kudos%20go%20to%20my%20girlfriend%20for%20sussing%20this%20one%20out.%0D%0A%0D%0ARecently%2C%20we%20came%20across%20a%20conundrum%20concerning%20the%20computer%20game%20Sacred%202%20running%20under%20Windows%207.%20Long%20story%20short%2C%20it%20just%20wouldn%27t%20work.%20It%20should%20be%20noted%20that%20the%20reason%20for%20this%20not%20workin" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Sacred%202%20on%20Windows%207&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fsacred-2-on-windows-7" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Sacred%202%20on%20Windows%207&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fsacred-2-on-windows-7" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/sacred-2-on-windows-7/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Certificate 2 &#8211; S2 Week 17</title>
		<link>http://www.mokonamodoki.com/certificate-2-s2-week-17</link>
		<comments>http://www.mokonamodoki.com/certificate-2-s2-week-17#comments</comments>
		<pubDate>Wed, 26 Nov 2008 22:00:28 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Certificate 2]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT ICA20105 / 19001]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=575</guid>
		<description><![CDATA[Actually Posted on 3rd December 2008
Task 2 completed, Task 3 almost completed. At this rate you&#8217;ll have everything done by week 18 easily! Keep up the great work, you&#8217;ve kept on track all year, well done!
[ad#adtype1]



Share This:


	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<p style="text-align: right;"><em>Actually Posted on 3rd December 2008</em></p>
<p style="text-align: left;">Task 2 completed, Task 3 almost completed. At this rate you&#8217;ll have everything done by week 18 easily! Keep up the great work, you&#8217;ve kept on track all year, well done!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-17&amp;title=Certificate%202%20-%20S2%20Week%2017&amp;bodytext=Actually%20Posted%20on%203rd%20December%202008%0D%0ATask%202%20completed%2C%20Task%203%20almost%20completed.%20At%20this%20rate%20you%27ll%20have%20everything%20done%20by%20week%2018%20easily%21%20Keep%20up%20the%20great%20work%2C%20you%27ve%20kept%20on%20track%20all%20year%2C%20well%20done%21%0D%0A%5Bad%23adtype1%5D" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-17" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-17&amp;title=Certificate%202%20-%20S2%20Week%2017&amp;notes=Actually%20Posted%20on%203rd%20December%202008%0D%0ATask%202%20completed%2C%20Task%203%20almost%20completed.%20At%20this%20rate%20you%27ll%20have%20everything%20done%20by%20week%2018%20easily%21%20Keep%20up%20the%20great%20work%2C%20you%27ve%20kept%20on%20track%20all%20year%2C%20well%20done%21%0D%0A%5Bad%23adtype1%5D" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-17&amp;t=Certificate%202%20-%20S2%20Week%2017" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-17&amp;title=Certificate%202%20-%20S2%20Week%2017" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-17&amp;title=Certificate%202%20-%20S2%20Week%2017&amp;annotation=Actually%20Posted%20on%203rd%20December%202008%0D%0ATask%202%20completed%2C%20Task%203%20almost%20completed.%20At%20this%20rate%20you%27ll%20have%20everything%20done%20by%20week%2018%20easily%21%20Keep%20up%20the%20great%20work%2C%20you%27ve%20kept%20on%20track%20all%20year%2C%20well%20done%21%0D%0A%5Bad%23adtype1%5D" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Certificate%202%20-%20S2%20Week%2017&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-17" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Certificate%202%20-%20S2%20Week%2017&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-17" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/certificate-2-s2-week-17/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CAFC &#8211; S2 Week 16</title>
		<link>http://www.mokonamodoki.com/cafc-s2-week-16</link>
		<comments>http://www.mokonamodoki.com/cafc-s2-week-16#comments</comments>
		<pubDate>Fri, 21 Nov 2008 22:01:51 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[CAFCA]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT Computers a First Course / 3771]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=572</guid>
		<description><![CDATA[Actually Posted on 3rd December 2008
Hi everyone. A little sad to see this class getting to such low numbers too! Those of you that did attend, made a start on the tutorial notes for Microsoft Publisher 2007. If you missed the lesson or were unable to attend for any reason, you can certainly grab a [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: right;"><em>Actually Posted on 3rd December 2008</em></p>
<p>Hi everyone. A little sad to see this class getting to such <a title="http://www.mokonamodoki.com/digital-media-s2-week-16" href="http://www.mokonamodoki.com/digital-media-s2-week-16" target="_self">low numbers</a> too! Those of you that did attend, made a start on the tutorial notes for Microsoft Publisher 2007. If you missed the lesson or were unable to attend for any reason, you can certainly grab a copy  of the tutorial notes below.</p>
<p><a href="http://www.mokonamodoki.com/wp-content/uploads/2008/12/cafc-s2-week-16.doc">CAFC &#8211; S2 Week 16 &#8211; Lesson Notes<br />
</a></p>
<p>See you next lesson!</p>
<p><strong>Remember</strong>; I put these links and resources here for your use. So if they are of no use to you, too hard to understand or you feel they are off topic, then please let me know, via any of the communication channels you have with me. I am more then happy to make changes, source better content or even create fresh content from scratch, just for you! You need only ask … nicely!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-16&amp;title=CAFC%20-%20S2%20Week%2016&amp;bodytext=Actually%20Posted%20on%203rd%20December%202008%0D%0A%0D%0AHi%20everyone.%20A%20little%20sad%20to%20see%20this%20class%20getting%20to%20such%20low%20numbers%20too%21%20Those%20of%20you%20that%20did%20attend%2C%20made%20a%20start%20on%20the%20tutorial%20notes%20for%20Microsoft%20Publisher%202007.%20If%20you%20missed%20the%20lesson%20or%20were%20unabl" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-16" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-16&amp;title=CAFC%20-%20S2%20Week%2016&amp;notes=Actually%20Posted%20on%203rd%20December%202008%0D%0A%0D%0AHi%20everyone.%20A%20little%20sad%20to%20see%20this%20class%20getting%20to%20such%20low%20numbers%20too%21%20Those%20of%20you%20that%20did%20attend%2C%20made%20a%20start%20on%20the%20tutorial%20notes%20for%20Microsoft%20Publisher%202007.%20If%20you%20missed%20the%20lesson%20or%20were%20unabl" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-16&amp;t=CAFC%20-%20S2%20Week%2016" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-16&amp;title=CAFC%20-%20S2%20Week%2016" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-16&amp;title=CAFC%20-%20S2%20Week%2016&amp;annotation=Actually%20Posted%20on%203rd%20December%202008%0D%0A%0D%0AHi%20everyone.%20A%20little%20sad%20to%20see%20this%20class%20getting%20to%20such%20low%20numbers%20too%21%20Those%20of%20you%20that%20did%20attend%2C%20made%20a%20start%20on%20the%20tutorial%20notes%20for%20Microsoft%20Publisher%202007.%20If%20you%20missed%20the%20lesson%20or%20were%20unabl" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=CAFC%20-%20S2%20Week%2016&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-16" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=CAFC%20-%20S2%20Week%2016&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-16" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/cafc-s2-week-16/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Certificate 1 &#8211; S2 Week 16</title>
		<link>http://www.mokonamodoki.com/certificate-1-s2-week-16</link>
		<comments>http://www.mokonamodoki.com/certificate-1-s2-week-16#comments</comments>
		<pubDate>Fri, 21 Nov 2008 22:00:01 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Certificate 1]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT ICA10105 / 19000]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=564</guid>
		<description><![CDATA[Actually Posted on 3rd December 2008
Good to see everyone continuing to attend the lessons! Makes me feel like my time is well spent in Coonabarabran! Good to see everyone continuing with the discussion style learning in the class room, although I noticing a distinct pattern of the same people doing the discussing. I do wonder [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: right;"><em>Actually Posted on 3rd December 2008</em></p>
<p style="text-align: left;">Good to see everyone continuing to attend the lessons! Makes me feel like my time is well spent in Coonabarabran! Good to see everyone continuing with the discussion style learning in the class room, although I noticing a distinct pattern of the same people doing the discussing. I do wonder if some of you actually want to do a TEST!!</p>
<p style="text-align: left;">If you missed the lesson or would like an additional copy of the notes, you can grab them below.</p>
<p style="text-align: left;"><a href="http://www.mokonamodoki.com/wp-content/uploads/2008/12/certificate-1-week-16-s2-iaooss.doc">Certificate 1 &#8211; S2 Week 16 &#8211; Lesson Notes 1<br />
</a></p>
<p style="text-align: left;"><a href="http://www.mokonamodoki.com/wp-content/uploads/2008/12/certificate-1-week-161-s2-iaooss.doc">Certificate 1 &#8211; S2 Week 16 &#8211; Lesson Notes 2<br />
</a></p>
<p>See you all next lesson!</p>
<p>There will not be a follow up video tutorial for this session.</p>
<p><strong>Remember</strong>; I put these links and resources here for your use. So if they are of no use to you, too hard to understand or you feel they are off topic, then please let me know, via any of the communication channels you have with me. I am more then happy to make changes, source better content or even create fresh content from scratch, just for you! You need only ask … nicely!
</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-16&amp;title=Certificate%201%20-%20S2%20Week%2016&amp;bodytext=Actually%20Posted%20on%203rd%20December%202008%0D%0AGood%20to%20see%20everyone%20continuing%20to%20attend%20the%20lessons%21%20Makes%20me%20feel%20like%20my%20time%20is%20well%20spent%20in%20Coonabarabran%21%20Good%20to%20see%20everyone%20continuing%20with%20the%20discussion%20style%20learning%20in%20the%20class%20room%2C%20although%20I%20n" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-16" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-16&amp;title=Certificate%201%20-%20S2%20Week%2016&amp;notes=Actually%20Posted%20on%203rd%20December%202008%0D%0AGood%20to%20see%20everyone%20continuing%20to%20attend%20the%20lessons%21%20Makes%20me%20feel%20like%20my%20time%20is%20well%20spent%20in%20Coonabarabran%21%20Good%20to%20see%20everyone%20continuing%20with%20the%20discussion%20style%20learning%20in%20the%20class%20room%2C%20although%20I%20n" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-16&amp;t=Certificate%201%20-%20S2%20Week%2016" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-16&amp;title=Certificate%201%20-%20S2%20Week%2016" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-16&amp;title=Certificate%201%20-%20S2%20Week%2016&amp;annotation=Actually%20Posted%20on%203rd%20December%202008%0D%0AGood%20to%20see%20everyone%20continuing%20to%20attend%20the%20lessons%21%20Makes%20me%20feel%20like%20my%20time%20is%20well%20spent%20in%20Coonabarabran%21%20Good%20to%20see%20everyone%20continuing%20with%20the%20discussion%20style%20learning%20in%20the%20class%20room%2C%20although%20I%20n" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Certificate%201%20-%20S2%20Week%2016&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-16" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Certificate%201%20-%20S2%20Week%2016&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-16" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/certificate-1-s2-week-16/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Digital Media &#8211; S2 Week 16</title>
		<link>http://www.mokonamodoki.com/digital-media-s2-week-16</link>
		<comments>http://www.mokonamodoki.com/digital-media-s2-week-16#comments</comments>
		<pubDate>Wed, 19 Nov 2008 22:01:39 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Digital Media]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT Foundation / 19040]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=562</guid>
		<description><![CDATA[Actually Posted on 3rd December 2008
Well this is sad. Only one poor student showed up this lesson. Lucky for them, I decided to hang around so they could get the extra time in. I&#8217;m a little worried there will be no one at all in week 18!
Only two more weeks to go!
See you all next [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: right;"><em>Actually Posted on 3rd December 2008</em></p>
<p>Well this is sad. Only one poor student showed up this lesson. Lucky for them, I decided to hang around so they could get the extra time in. I&#8217;m a little worried there will be no one at all in week 18!</p>
<p>Only two more weeks to go!</p>
<p>See you all next lesson!</p>
<p>There were no additional notes or follow up video tutorials for this lesson.</p>
<p><strong>Remember</strong>; I put these links and resources here for your use. So if they are of no use to you, too hard to understand or you feel they are off topic, then please let me know, via any of the communication channels you have with me. I am more then happy to make changes, source better content or even create fresh content from scratch, just for you! You need only ask … nicely!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-16&amp;title=Digital%20Media%20-%20S2%20Week%2016&amp;bodytext=Actually%20Posted%20on%203rd%20December%202008%0D%0A%0D%0AWell%20this%20is%20sad.%20Only%20one%20poor%20student%20showed%20up%20this%20lesson.%20Lucky%20for%20them%2C%20I%20decided%20to%20hang%20around%20so%20they%20could%20get%20the%20extra%20time%20in.%20I%27m%20a%20little%20worried%20there%20will%20be%20no%20one%20at%20all%20in%20week%2018%21%0D%0A%0D%0AOnly%20" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-16" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-16&amp;title=Digital%20Media%20-%20S2%20Week%2016&amp;notes=Actually%20Posted%20on%203rd%20December%202008%0D%0A%0D%0AWell%20this%20is%20sad.%20Only%20one%20poor%20student%20showed%20up%20this%20lesson.%20Lucky%20for%20them%2C%20I%20decided%20to%20hang%20around%20so%20they%20could%20get%20the%20extra%20time%20in.%20I%27m%20a%20little%20worried%20there%20will%20be%20no%20one%20at%20all%20in%20week%2018%21%0D%0A%0D%0AOnly%20" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-16&amp;t=Digital%20Media%20-%20S2%20Week%2016" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-16&amp;title=Digital%20Media%20-%20S2%20Week%2016" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-16&amp;title=Digital%20Media%20-%20S2%20Week%2016&amp;annotation=Actually%20Posted%20on%203rd%20December%202008%0D%0A%0D%0AWell%20this%20is%20sad.%20Only%20one%20poor%20student%20showed%20up%20this%20lesson.%20Lucky%20for%20them%2C%20I%20decided%20to%20hang%20around%20so%20they%20could%20get%20the%20extra%20time%20in.%20I%27m%20a%20little%20worried%20there%20will%20be%20no%20one%20at%20all%20in%20week%2018%21%0D%0A%0D%0AOnly%20" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Digital%20Media%20-%20S2%20Week%2016&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-16" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Digital%20Media%20-%20S2%20Week%2016&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-16" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/digital-media-s2-week-16/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Certificate 2 &#8211; S2 Week 16</title>
		<link>http://www.mokonamodoki.com/certificate-2-s2-week-16</link>
		<comments>http://www.mokonamodoki.com/certificate-2-s2-week-16#comments</comments>
		<pubDate>Wed, 19 Nov 2008 22:00:43 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Certificate 2]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT ICA20105 / 19001]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=560</guid>
		<description><![CDATA[Actually Posted on December 3rd 2008
Excellent Work! Keep up the Good Work. This Current Module is almost completed.
Only two weeks left!
[ad#adtype1]



Share This:


	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<p style="text-align: right;"><em>Actually Posted on December 3rd 2008</em></p>
<p>Excellent Work! Keep up the Good Work. This Current Module is almost completed.</p>
<p>Only two weeks left!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-16&amp;title=Certificate%202%20-%20S2%20Week%2016&amp;bodytext=Actually%20Posted%20on%20December%203rd%202008%0D%0A%0D%0AExcellent%20Work%21%20Keep%20up%20the%20Good%20Work.%20This%20Current%20Module%20is%20almost%20completed.%0D%0A%0D%0AOnly%20two%20weeks%20left%21%0D%0A%5Bad%23adtype1%5D" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-16" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-16&amp;title=Certificate%202%20-%20S2%20Week%2016&amp;notes=Actually%20Posted%20on%20December%203rd%202008%0D%0A%0D%0AExcellent%20Work%21%20Keep%20up%20the%20Good%20Work.%20This%20Current%20Module%20is%20almost%20completed.%0D%0A%0D%0AOnly%20two%20weeks%20left%21%0D%0A%5Bad%23adtype1%5D" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-16&amp;t=Certificate%202%20-%20S2%20Week%2016" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-16&amp;title=Certificate%202%20-%20S2%20Week%2016" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-16&amp;title=Certificate%202%20-%20S2%20Week%2016&amp;annotation=Actually%20Posted%20on%20December%203rd%202008%0D%0A%0D%0AExcellent%20Work%21%20Keep%20up%20the%20Good%20Work.%20This%20Current%20Module%20is%20almost%20completed.%0D%0A%0D%0AOnly%20two%20weeks%20left%21%0D%0A%5Bad%23adtype1%5D" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Certificate%202%20-%20S2%20Week%2016&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-16" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Certificate%202%20-%20S2%20Week%2016&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-16" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/certificate-2-s2-week-16/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Weekly Funny &#8211; That Killed Him</title>
		<link>http://www.mokonamodoki.com/the-weekly-funny-that-killed-him</link>
		<comments>http://www.mokonamodoki.com/the-weekly-funny-that-killed-him#comments</comments>
		<pubDate>Tue, 18 Nov 2008 22:00:09 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[TAFE]]></category>
		<category><![CDATA[The Weekly Funny]]></category>
		<category><![CDATA[Time of the Time]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=555</guid>
		<description><![CDATA[<script type="text/javascript" src="http://www.mokonamodoki.com/wp-includes/js/jquery/jquery.js"></script><script type="text/javascript" src="http://www.mokonamodoki.com/wp-content/plugins/pb-embedflash/js/sbadapter/shadowbox-jquery.js"></script><script type="text/javascript" src="http://www.mokonamodoki.com/wp-content/plugins/pb-embedflash/js/shadowbox.js"></script><script type="text/javascript"><!--
window.onload = function() {var options ={assetURL:'',loadingImage:'http://www.mokonamodoki.com/wp-content/plugins/pb-embedflash/css/images/loading.gif',flvPlayer:'http://www.mokonamodoki.com/wp-content/plugins/pb-embedflash/swf/mediaplayer.swf',animate:true,animSequence:'wh',overlayColor:'#000',overlayOpacity:0.85,overlayBgImage:'http://www.mokonamodoki.com/wp-content/plugins/pb-embedflash/css/images/overlay-85.png',listenOverlay:true,autoplayMovies:true,showMovieControls:true,resizeDuration:0.35,fadeDuration:0.35,displayNav:true,continuous:false,displayCounter:true,counterType:'default',viewportPadding:20,handleLgImages:'resize',initialHeight:160,initialWidth:320,enableKeys:true,keysClose:['c', 'q', 27],keysPrev:['p', 37],keysNext:['n', 39],handleUnsupported:'',text: {cancel:'Cancel',loading: 'loading',close:'<span class="shortcut">C</span>lose',next:'<span class="shortcut">N</span>ext',prev:'<span class="shortcut">P</span>revious',errors:{single: 'You must install the <a href="{0}">{1}</a> browser plugin to view this content.',shared: 'You must install both the <a href="{0}">{1}</a> and <a href="{2}">{3}</a> browser plugins to view this content.',either: 'You must install either the <a href="{0}">{1}</a> or the <a href="{2}">{3}</a> browser plugin to view this content.'}}};Shadowbox.init(options);}
--></script>If you&#8217;ve guess by now that my email inbox must be full of videos, you&#8217;d be right!
Another via Email
(Please open the article to see the flash file or player.)
Remember: If you have something funny that you would like to see featured in The Weekly Funny, submit it to me or tell me about it via one [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve guess by now that my email inbox must be full of videos, you&#8217;d be right!</p>
<p>Another via Email</p>
<p style="text-align: center;"><small>(Please open the article to see the flash file or player.)</small></p>
<p style="text-align: left;"><strong>Remember:</strong> If you have something funny that you would like to see featured in The Weekly Funny, submit it to me or tell me about it via one of the many communication channels you have with me</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-that-killed-him&amp;title=The%20Weekly%20Funny%20-%20That%20Killed%20Him&amp;bodytext=If%20you%27ve%20guess%20by%20now%20that%20my%20email%20inbox%20must%20be%20full%20of%20videos%2C%20you%27d%20be%20right%21%0D%0A%0D%0AAnother%20via%20Email%0D%0A%5Bflash%20http%3A%2F%2Fwww.mokonamodoki.com%2Fwp-content%2Fuploads%2F2008%2F11%2Fhospital.flv%5D%0D%0ARemember%3A%C2%A0If%20you%20have%20something%20funny%20that%20you%20would%20like%20to%20see%20fe" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-that-killed-him" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-that-killed-him&amp;title=The%20Weekly%20Funny%20-%20That%20Killed%20Him&amp;notes=If%20you%27ve%20guess%20by%20now%20that%20my%20email%20inbox%20must%20be%20full%20of%20videos%2C%20you%27d%20be%20right%21%0D%0A%0D%0AAnother%20via%20Email%0D%0A%5Bflash%20http%3A%2F%2Fwww.mokonamodoki.com%2Fwp-content%2Fuploads%2F2008%2F11%2Fhospital.flv%5D%0D%0ARemember%3A%C2%A0If%20you%20have%20something%20funny%20that%20you%20would%20like%20to%20see%20fe" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-that-killed-him&amp;t=The%20Weekly%20Funny%20-%20That%20Killed%20Him" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-that-killed-him&amp;title=The%20Weekly%20Funny%20-%20That%20Killed%20Him" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-that-killed-him&amp;title=The%20Weekly%20Funny%20-%20That%20Killed%20Him&amp;annotation=If%20you%27ve%20guess%20by%20now%20that%20my%20email%20inbox%20must%20be%20full%20of%20videos%2C%20you%27d%20be%20right%21%0D%0A%0D%0AAnother%20via%20Email%0D%0A%5Bflash%20http%3A%2F%2Fwww.mokonamodoki.com%2Fwp-content%2Fuploads%2F2008%2F11%2Fhospital.flv%5D%0D%0ARemember%3A%C2%A0If%20you%20have%20something%20funny%20that%20you%20would%20like%20to%20see%20fe" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=The%20Weekly%20Funny%20-%20That%20Killed%20Him&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-that-killed-him" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=The%20Weekly%20Funny%20-%20That%20Killed%20Him&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-that-killed-him" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/the-weekly-funny-that-killed-him/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CAFC &#8211; S2 Week 15</title>
		<link>http://www.mokonamodoki.com/cafc-s2-week-15</link>
		<comments>http://www.mokonamodoki.com/cafc-s2-week-15#comments</comments>
		<pubDate>Thu, 13 Nov 2008 22:01:34 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[CAFCA]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT Computers a First Course / 3771]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=551</guid>
		<description><![CDATA[Hi everyone. It seems this class is beginning to seriously lack in students as well! Lucky for those of you that have continued to attend, this course is only 6 months long, meaning that unless it got down to no students attending, the class has remained on schdule.
This week we spent the session working through [...]]]></description>
			<content:encoded><![CDATA[<p>Hi everyone. It seems this class is beginning to seriously lack in students as well! Lucky for those of you that have continued to attend, this course is only 6 months long, meaning that unless it got down to no students attending, the class has remained on schdule.</p>
<p>This week we spent the session working through a tutorial on Microsoft PowerPoint 2007. If you missed this weeks lesson, you can grab a copy of the notes below.</p>
<p><a href="http://www.mokonamodoki.com/wp-content/uploads/2008/11/cafc-s2-week-15.doc">CAFC &#8211; S2 Week 15 &#8211; Lesson Notes 1</a></p>
<p><a href="http://www.mokonamodoki.com/wp-content/uploads/2008/11/cafc-s2-week-151.doc">CAFC &#8211; S2 Week 15 &#8211; Lesson Notes 2</a></p>
<p>See you next lesson!</p>
<p><strong>Remember</strong>; I put these links and resources here for your use. So if they are of no use to you, too hard to understand or you feel they are off topic, then please let me know, via any of the communication channels you have with me. I am more then happy to make changes, source better content or even create fresh content from scratch, just for you! You need only ask … nicely!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-15&amp;title=CAFC%20-%20S2%20Week%2015&amp;bodytext=Hi%20everyone.%20It%20seems%20this%20class%20is%20beginning%20to%20seriously%20lack%20in%20students%20as%20well%21%20Lucky%20for%20those%20of%20you%20that%20have%20continued%20to%20attend%2C%20this%20course%20is%20only%206%20months%20long%2C%20meaning%20that%20unless%20it%20got%20down%20to%20no%20students%20attending%2C%20the%20class%20has%20rema" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-15" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-15&amp;title=CAFC%20-%20S2%20Week%2015&amp;notes=Hi%20everyone.%20It%20seems%20this%20class%20is%20beginning%20to%20seriously%20lack%20in%20students%20as%20well%21%20Lucky%20for%20those%20of%20you%20that%20have%20continued%20to%20attend%2C%20this%20course%20is%20only%206%20months%20long%2C%20meaning%20that%20unless%20it%20got%20down%20to%20no%20students%20attending%2C%20the%20class%20has%20rema" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-15&amp;t=CAFC%20-%20S2%20Week%2015" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-15&amp;title=CAFC%20-%20S2%20Week%2015" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-15&amp;title=CAFC%20-%20S2%20Week%2015&amp;annotation=Hi%20everyone.%20It%20seems%20this%20class%20is%20beginning%20to%20seriously%20lack%20in%20students%20as%20well%21%20Lucky%20for%20those%20of%20you%20that%20have%20continued%20to%20attend%2C%20this%20course%20is%20only%206%20months%20long%2C%20meaning%20that%20unless%20it%20got%20down%20to%20no%20students%20attending%2C%20the%20class%20has%20rema" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=CAFC%20-%20S2%20Week%2015&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-15" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=CAFC%20-%20S2%20Week%2015&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-15" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/cafc-s2-week-15/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Certificate 1 &#8211; S2 Week 15</title>
		<link>http://www.mokonamodoki.com/certificate-1-s2-week-15</link>
		<comments>http://www.mokonamodoki.com/certificate-1-s2-week-15#comments</comments>
		<pubDate>Thu, 13 Nov 2008 22:00:10 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Certificate 1]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT ICA10105 / 19000]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=546</guid>
		<description><![CDATA[Good to see the entire class attending again! We were to begin a module called &#8220;Install Software Applications&#8221; this week. I decided to swap this to alternate module, covering the same outcomes. &#8220;Install Software Applications&#8221; is an older module, with out of date teaching materials and notes. The alternate subject we started: Install and Optimise [...]]]></description>
			<content:encoded><![CDATA[<p>Good to see the entire class attending again! We were to begin a module called &#8220;Install Software Applications&#8221; this week. I decided to swap this to alternate module, covering the same outcomes. &#8220;Install Software Applications&#8221; is an older module, with out of date teaching materials and notes. The alternate subject we started: Install and Optimise Operating System Software has far newer teaching materials and update to date notes and learning materials. As usual we continued with the forum style session. It&#8217;s good to have everyone participate in the discussion, rather than me simply ranting on out the front of the room. </p>
<p>We only have three more weeks of this semester remaining! Try not to miss a lesson, and remember to participate in the discussion each week.</p>
<p><a href="http://www.mokonamodoki.com/wp-content/uploads/2008/11/certificate-1-week-15-s2-iaooss.doc">Certificate 1 &#8211; S2 Week 15 &#8211; Lesson Notes</a></p>
<p>See you all next lesson!</p>
<p>There will not be a follow up video tutorial for this session.</p>
<p><strong>Remember</strong>; I put these links and resources here for your use. So if they are of no use to you, too hard to understand or you feel they are off topic, then please let me know, via any of the communication channels you have with me. I am more then happy to make changes, source better content or even create fresh content from scratch, just for you! You need only ask … nicely!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-15&amp;title=Certificate%201%20-%20S2%20Week%2015&amp;bodytext=Good%20to%20see%20the%20entire%20class%20attending%20again%21%20We%20were%20to%20begin%20a%20module%20called%20%22Install%20Software%20Applications%22%20this%20week.%20I%20decided%20to%20swap%20this%20to%20alternate%20module%2C%20covering%20the%20same%20outcomes.%20%22Install%20Software%20Applications%22%20is%20an%20older%20module%2C%20with" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-15" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-15&amp;title=Certificate%201%20-%20S2%20Week%2015&amp;notes=Good%20to%20see%20the%20entire%20class%20attending%20again%21%20We%20were%20to%20begin%20a%20module%20called%20%22Install%20Software%20Applications%22%20this%20week.%20I%20decided%20to%20swap%20this%20to%20alternate%20module%2C%20covering%20the%20same%20outcomes.%20%22Install%20Software%20Applications%22%20is%20an%20older%20module%2C%20with" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-15&amp;t=Certificate%201%20-%20S2%20Week%2015" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-15&amp;title=Certificate%201%20-%20S2%20Week%2015" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-15&amp;title=Certificate%201%20-%20S2%20Week%2015&amp;annotation=Good%20to%20see%20the%20entire%20class%20attending%20again%21%20We%20were%20to%20begin%20a%20module%20called%20%22Install%20Software%20Applications%22%20this%20week.%20I%20decided%20to%20swap%20this%20to%20alternate%20module%2C%20covering%20the%20same%20outcomes.%20%22Install%20Software%20Applications%22%20is%20an%20older%20module%2C%20with" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Certificate%201%20-%20S2%20Week%2015&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-15" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Certificate%201%20-%20S2%20Week%2015&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-15" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/certificate-1-s2-week-15/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Digital Media &#8211; S2 Week 15</title>
		<link>http://www.mokonamodoki.com/digital-media-s2-week-15</link>
		<comments>http://www.mokonamodoki.com/digital-media-s2-week-15#comments</comments>
		<pubDate>Wed, 12 Nov 2008 22:01:44 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Digital Media]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT Foundation / 19040]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=544</guid>
		<description><![CDATA[Well, our class really is coming down to a small motely crew, with only 4 people turning up to this weeks session. It&#8217;s good to see those of you attending, progressing quite nicely with photoshop. However, you really should have your PowerPoint presentation started by now, and have some &#8220;before and after&#8221; photos in it. [...]]]></description>
			<content:encoded><![CDATA[<p>Well, our class really is coming down to a small motely crew, with only 4 people turning up to this weeks session. It&#8217;s good to see those of you attending, progressing quite nicely with photoshop. However, you really should have your PowerPoint presentation started by now, and have some &#8220;before and after&#8221; photos in it. If you haven&#8217;t started your presentation yet, then next session should be the time that you do so. </p>
<p><strong>Remember: We have only three weeks remaining</strong></p>
<p>See you all next lesson!</p>
<p>There were no additional notes or follow up video tutorials for this lesson.</p>
<p><strong>Remember</strong>; I put these links and resources here for your use. So if they are of no use to you, too hard to understand or you feel they are off topic, then please let me know, via any of the communication channels you have with me. I am more then happy to make changes, source better content or even create fresh content from scratch, just for you! You need only ask … nicely!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-15&amp;title=Digital%20Media%20-%20S2%20Week%2015&amp;bodytext=Well%2C%20our%20class%20really%20is%20coming%20down%20to%20a%20small%20motely%20crew%2C%20with%20only%204%20people%20turning%20up%20to%20this%20weeks%20session.%20It%27s%20good%20to%20see%20those%20of%20you%20attending%2C%20progressing%20quite%20nicely%20with%20photoshop.%20However%2C%20you%20really%20should%20have%20your%20PowerPoint%20prese" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-15" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-15&amp;title=Digital%20Media%20-%20S2%20Week%2015&amp;notes=Well%2C%20our%20class%20really%20is%20coming%20down%20to%20a%20small%20motely%20crew%2C%20with%20only%204%20people%20turning%20up%20to%20this%20weeks%20session.%20It%27s%20good%20to%20see%20those%20of%20you%20attending%2C%20progressing%20quite%20nicely%20with%20photoshop.%20However%2C%20you%20really%20should%20have%20your%20PowerPoint%20prese" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-15&amp;t=Digital%20Media%20-%20S2%20Week%2015" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-15&amp;title=Digital%20Media%20-%20S2%20Week%2015" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-15&amp;title=Digital%20Media%20-%20S2%20Week%2015&amp;annotation=Well%2C%20our%20class%20really%20is%20coming%20down%20to%20a%20small%20motely%20crew%2C%20with%20only%204%20people%20turning%20up%20to%20this%20weeks%20session.%20It%27s%20good%20to%20see%20those%20of%20you%20attending%2C%20progressing%20quite%20nicely%20with%20photoshop.%20However%2C%20you%20really%20should%20have%20your%20PowerPoint%20prese" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Digital%20Media%20-%20S2%20Week%2015&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-15" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Digital%20Media%20-%20S2%20Week%2015&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-15" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/digital-media-s2-week-15/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Certificate 2 &#8211; S2 Week 15</title>
		<link>http://www.mokonamodoki.com/certificate-2-s2-week-15</link>
		<comments>http://www.mokonamodoki.com/certificate-2-s2-week-15#comments</comments>
		<pubDate>Wed, 12 Nov 2008 22:00:25 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Certificate 2]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT ICA20105 / 19001]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=542</guid>
		<description><![CDATA[This week we began an alternate topic to &#8220;Install Software Applications&#8221;. Instead we started ICAI4030 &#8211; Install Software to Networked Computers. This topic is slightly more difficult, but covers the same outcomes. It also contains a good amount of additional notes. On your transcript however, it will still say &#8220;Install Software Applications&#8221;. This topic has [...]]]></description>
			<content:encoded><![CDATA[<p>This week we began an alternate topic to &#8220;Install Software Applications&#8221;. Instead we started ICAI4030 &#8211; Install Software to Networked Computers. This topic is slightly more difficult, but covers the same outcomes. It also contains a good amount of additional notes. On your transcript however, it will still say &#8220;Install Software Applications&#8221;. This topic has a few tasks within it, however we will only be covering the first four. With only another three weeks remaining, we need to get these four topics covered quickly, so working on them between sessions is paramount to completion.</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-15&amp;title=Certificate%202%20-%20S2%20Week%2015&amp;bodytext=This%20week%20we%20began%20an%20alternate%20topic%20to%20%22Install%20Software%20Applications%22.%20Instead%20we%20started%20ICAI4030%20-%20Install%20Software%20to%20Networked%20Computers.%20This%20topic%20is%20slightly%20more%20difficult%2C%20but%20covers%20the%20same%20outcomes.%20It%20also%20contains%20a%20good%20amount%20of%20ad" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-15" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-15&amp;title=Certificate%202%20-%20S2%20Week%2015&amp;notes=This%20week%20we%20began%20an%20alternate%20topic%20to%20%22Install%20Software%20Applications%22.%20Instead%20we%20started%20ICAI4030%20-%20Install%20Software%20to%20Networked%20Computers.%20This%20topic%20is%20slightly%20more%20difficult%2C%20but%20covers%20the%20same%20outcomes.%20It%20also%20contains%20a%20good%20amount%20of%20ad" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-15&amp;t=Certificate%202%20-%20S2%20Week%2015" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-15&amp;title=Certificate%202%20-%20S2%20Week%2015" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-15&amp;title=Certificate%202%20-%20S2%20Week%2015&amp;annotation=This%20week%20we%20began%20an%20alternate%20topic%20to%20%22Install%20Software%20Applications%22.%20Instead%20we%20started%20ICAI4030%20-%20Install%20Software%20to%20Networked%20Computers.%20This%20topic%20is%20slightly%20more%20difficult%2C%20but%20covers%20the%20same%20outcomes.%20It%20also%20contains%20a%20good%20amount%20of%20ad" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Certificate%202%20-%20S2%20Week%2015&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-15" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Certificate%202%20-%20S2%20Week%2015&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-15" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/certificate-2-s2-week-15/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Weekly Funny &#8211; New Speed Hump</title>
		<link>http://www.mokonamodoki.com/the-weekly-funny-new-speed-hump</link>
		<comments>http://www.mokonamodoki.com/the-weekly-funny-new-speed-hump#comments</comments>
		<pubDate>Tue, 11 Nov 2008 22:00:02 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[TAFE]]></category>
		<category><![CDATA[The Weekly Funny]]></category>
		<category><![CDATA[Time of the Time]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=540</guid>
		<description><![CDATA[Another via Email &#8211; Imagine one of these outside your house!
(Please open the article to see the flash file or player.)
Remember: If you have something funny that you would like to see featured in The Weekly Funny, submit it to me or tell me about it via one of the many communication channels you have with [...]]]></description>
			<content:encoded><![CDATA[<p>Another via Email &#8211; Imagine one of these outside your house!</p>
<p style="text-align: center;"><small>(Please open the article to see the flash file or player.)</small></p>
<p style="text-align: left;"><strong>Remember:</strong> If you have something funny that you would like to see featured in The Weekly Funny, submit it to me or tell me about it via one of the many communication channels you have with me.</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-new-speed-hump&amp;title=The%20Weekly%20Funny%20-%20New%20Speed%20Hump&amp;bodytext=Another%20via%20Email%20-%20Imagine%20one%20of%20these%20outside%20your%20house%21%0D%0A%5Bflash%20http%3A%2F%2Fwww.mokonamodoki.com%2Fwp-content%2Fuploads%2F2008%2F11%2Fthe-speed-bump.flv%5D%0D%0ARemember%3A%C2%A0If%20you%20have%20something%20funny%20that%20you%20would%20like%20to%20see%20featured%20in%20The%20Weekly%20Funny%2C%20submit%20it" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-new-speed-hump" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-new-speed-hump&amp;title=The%20Weekly%20Funny%20-%20New%20Speed%20Hump&amp;notes=Another%20via%20Email%20-%20Imagine%20one%20of%20these%20outside%20your%20house%21%0D%0A%5Bflash%20http%3A%2F%2Fwww.mokonamodoki.com%2Fwp-content%2Fuploads%2F2008%2F11%2Fthe-speed-bump.flv%5D%0D%0ARemember%3A%C2%A0If%20you%20have%20something%20funny%20that%20you%20would%20like%20to%20see%20featured%20in%20The%20Weekly%20Funny%2C%20submit%20it" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-new-speed-hump&amp;t=The%20Weekly%20Funny%20-%20New%20Speed%20Hump" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-new-speed-hump&amp;title=The%20Weekly%20Funny%20-%20New%20Speed%20Hump" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-new-speed-hump&amp;title=The%20Weekly%20Funny%20-%20New%20Speed%20Hump&amp;annotation=Another%20via%20Email%20-%20Imagine%20one%20of%20these%20outside%20your%20house%21%0D%0A%5Bflash%20http%3A%2F%2Fwww.mokonamodoki.com%2Fwp-content%2Fuploads%2F2008%2F11%2Fthe-speed-bump.flv%5D%0D%0ARemember%3A%C2%A0If%20you%20have%20something%20funny%20that%20you%20would%20like%20to%20see%20featured%20in%20The%20Weekly%20Funny%2C%20submit%20it" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=The%20Weekly%20Funny%20-%20New%20Speed%20Hump&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-new-speed-hump" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=The%20Weekly%20Funny%20-%20New%20Speed%20Hump&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-new-speed-hump" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/the-weekly-funny-new-speed-hump/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CAFC &#8211; S2 Week 14</title>
		<link>http://www.mokonamodoki.com/cafc-s2-week-14</link>
		<comments>http://www.mokonamodoki.com/cafc-s2-week-14#comments</comments>
		<pubDate>Thu, 06 Nov 2008 22:01:28 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[CAFCA]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT Computers a First Course / 3771]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=530</guid>
		<description><![CDATA[Hi everyone. This week we pretty well finished up the current module on Excel. We don&#8217;t have many weeks of this term left, so any additional learning you wanted to do with Excel, will need to be as soon as you arrive to class each work (before 6:30pm) or in your own time at home. [...]]]></description>
			<content:encoded><![CDATA[<p>Hi everyone. This week we pretty well finished up the current module on Excel. We don&#8217;t have many weeks of this term left, so any additional learning you wanted to do with Excel, will need to be as soon as you arrive to class each work (before 6:30pm) or in your own time at home. If you have missed the notes for last few weeks, you can grab a copy of them below. We will be starting a new topic next week. </p>
<p><a href="http://www.mokonamodoki.com/wp-content/uploads/2008/11/cafc-s2-week-14.doc">CAFC &#8211; S2 Week 14 &#8211; Lesson Notes</a></p>
<p>See you all next lesson!</p>
<p><strong>Remember</strong>; I put these links and resources here for your use. So if they are of no use to you, too hard to understand or you feel they are off topic, then please let me know, via any of the communication channels you have with me. I am more then happy to make changes, source better content or even create fresh content from scratch, just for you! You need only ask … nicely!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-14&amp;title=CAFC%20-%20S2%20Week%2014&amp;bodytext=Hi%20everyone.%20This%20week%20we%20pretty%20well%20finished%20up%20the%20current%20module%20on%20Excel.%20We%20don%27t%20have%20many%20weeks%20of%20this%20term%20left%2C%20so%20any%20additional%20learning%20you%20wanted%20to%20do%20with%20Excel%2C%20will%20need%20to%20be%20as%20soon%20as%20you%20arrive%20to%20class%20each%20work%20%28before%206%3A30pm" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-14" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-14&amp;title=CAFC%20-%20S2%20Week%2014&amp;notes=Hi%20everyone.%20This%20week%20we%20pretty%20well%20finished%20up%20the%20current%20module%20on%20Excel.%20We%20don%27t%20have%20many%20weeks%20of%20this%20term%20left%2C%20so%20any%20additional%20learning%20you%20wanted%20to%20do%20with%20Excel%2C%20will%20need%20to%20be%20as%20soon%20as%20you%20arrive%20to%20class%20each%20work%20%28before%206%3A30pm" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-14&amp;t=CAFC%20-%20S2%20Week%2014" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-14&amp;title=CAFC%20-%20S2%20Week%2014" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-14&amp;title=CAFC%20-%20S2%20Week%2014&amp;annotation=Hi%20everyone.%20This%20week%20we%20pretty%20well%20finished%20up%20the%20current%20module%20on%20Excel.%20We%20don%27t%20have%20many%20weeks%20of%20this%20term%20left%2C%20so%20any%20additional%20learning%20you%20wanted%20to%20do%20with%20Excel%2C%20will%20need%20to%20be%20as%20soon%20as%20you%20arrive%20to%20class%20each%20work%20%28before%206%3A30pm" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=CAFC%20-%20S2%20Week%2014&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-14" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=CAFC%20-%20S2%20Week%2014&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-14" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/cafc-s2-week-14/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Certificate 1 &#8211; S2 Week 14</title>
		<link>http://www.mokonamodoki.com/certificate-1-s2-week-14</link>
		<comments>http://www.mokonamodoki.com/certificate-1-s2-week-14#comments</comments>
		<pubDate>Thu, 06 Nov 2008 22:00:40 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Certificate 1]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT ICA10105 / 19000]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=527</guid>
		<description><![CDATA[Hi everyone. Another good session with plenty of discussion! This week finished up the module &#8220;Connected Hardware Peripherals&#8221;. We will start a new module next week called &#8220;Install Software Applications&#8221;. If you missed this weeks session, you can get a copy of the notes below.
Certificate 1 &#8211; S2 Week 14 &#8211; Lesson Notes
See you all [...]]]></description>
			<content:encoded><![CDATA[<p>Hi everyone. Another good session with plenty of discussion! This week finished up the module &#8220;Connected Hardware Peripherals&#8221;. We will start a new module next week called &#8220;Install Software Applications&#8221;. If you missed this weeks session, you can get a copy of the notes below.</p>
<p><a href="http://www.mokonamodoki.com/wp-content/uploads/2008/11/certificate-1-week-14-s2-chp.doc">Certificate 1 &#8211; S2 Week 14 &#8211; Lesson Notes</a></p>
<p>See you all next lesson!</p>
<p>There will not be a follow up video tutorial for this session.</p>
<p><strong>Remember</strong>; I put these links and resources here for your use. So if they are of no use to you, too hard to understand or you feel they are off topic, then please let me know, via any of the communication channels you have with me. I am more then happy to make changes, source better content or even create fresh content from scratch, just for you! You need only ask … nicely!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-14&amp;title=Certificate%201%20-%20S2%20Week%2014&amp;bodytext=Hi%20everyone.%20Another%20good%20session%20with%20plenty%20of%20discussion%21%20This%20week%20finished%20up%20the%20module%20%22Connected%20Hardware%20Peripherals%22.%20We%20will%20start%20a%20new%20module%20next%20week%20called%20%22Install%20Software%20Applications%22.%20If%20you%20missed%20this%20weeks%20session%2C%20you%20can%20get" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-14" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-14&amp;title=Certificate%201%20-%20S2%20Week%2014&amp;notes=Hi%20everyone.%20Another%20good%20session%20with%20plenty%20of%20discussion%21%20This%20week%20finished%20up%20the%20module%20%22Connected%20Hardware%20Peripherals%22.%20We%20will%20start%20a%20new%20module%20next%20week%20called%20%22Install%20Software%20Applications%22.%20If%20you%20missed%20this%20weeks%20session%2C%20you%20can%20get" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-14&amp;t=Certificate%201%20-%20S2%20Week%2014" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-14&amp;title=Certificate%201%20-%20S2%20Week%2014" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-14&amp;title=Certificate%201%20-%20S2%20Week%2014&amp;annotation=Hi%20everyone.%20Another%20good%20session%20with%20plenty%20of%20discussion%21%20This%20week%20finished%20up%20the%20module%20%22Connected%20Hardware%20Peripherals%22.%20We%20will%20start%20a%20new%20module%20next%20week%20called%20%22Install%20Software%20Applications%22.%20If%20you%20missed%20this%20weeks%20session%2C%20you%20can%20get" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Certificate%201%20-%20S2%20Week%2014&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-14" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Certificate%201%20-%20S2%20Week%2014&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-14" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/certificate-1-s2-week-14/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Digital Media &#8211; S2 Week 14</title>
		<link>http://www.mokonamodoki.com/digital-media-s2-week-14</link>
		<comments>http://www.mokonamodoki.com/digital-media-s2-week-14#comments</comments>
		<pubDate>Wed, 05 Nov 2008 22:01:33 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Digital Media]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT Foundation / 19040]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=524</guid>
		<description><![CDATA[Well the class may have gotten smaller, but at least we&#8217;ve had the same few in regular attendance. From what I can see, some of you are doing quite well with your photo editing, and I have seen some Power Point presentations beginning to come together too. Keep up the good work!
Remember: You only have [...]]]></description>
			<content:encoded><![CDATA[<p>Well the class may have gotten smaller, but at least we&#8217;ve had the same few in regular attendance. From what I can see, some of you are doing quite well with your photo editing, and I have seen some Power Point presentations beginning to come together too. Keep up the good work!</p>
<p><strong>Remember:</strong> You only have 4 weeks remaining to get this project finished. If you haven&#8217;t finished editing at least half to all of your photos, and / or you have not begun to plan and start a Power Point presentation, than you need to do some catch up!</p>
<p>See you next lesson!</p>
<p>There were no additional notes or follow up video tutorials for this lesson.</p>
<p><strong>Remember</strong>; I put these links and resources here for your use. So if they are of no use to you, too hard to understand or you feel they are off topic, then please let me know, via any of the communication channels you have with me. I am more then happy to make changes, source better content or even create fresh content from scratch, just for you! You need only ask … nicely!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-14&amp;title=Digital%20Media%20-%20S2%20Week%2014&amp;bodytext=Well%20the%20class%20may%20have%20gotten%20smaller%2C%20but%20at%20least%20we%27ve%20had%20the%20same%20few%20in%20regular%20attendance.%20From%20what%20I%20can%20see%2C%20some%20of%20you%20are%20doing%20quite%20well%20with%20your%20photo%20editing%2C%20and%20I%20have%20seen%20some%20Power%20Point%20presentations%20beginning%20to%20come%20togethe" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-14" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-14&amp;title=Digital%20Media%20-%20S2%20Week%2014&amp;notes=Well%20the%20class%20may%20have%20gotten%20smaller%2C%20but%20at%20least%20we%27ve%20had%20the%20same%20few%20in%20regular%20attendance.%20From%20what%20I%20can%20see%2C%20some%20of%20you%20are%20doing%20quite%20well%20with%20your%20photo%20editing%2C%20and%20I%20have%20seen%20some%20Power%20Point%20presentations%20beginning%20to%20come%20togethe" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-14&amp;t=Digital%20Media%20-%20S2%20Week%2014" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-14&amp;title=Digital%20Media%20-%20S2%20Week%2014" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-14&amp;title=Digital%20Media%20-%20S2%20Week%2014&amp;annotation=Well%20the%20class%20may%20have%20gotten%20smaller%2C%20but%20at%20least%20we%27ve%20had%20the%20same%20few%20in%20regular%20attendance.%20From%20what%20I%20can%20see%2C%20some%20of%20you%20are%20doing%20quite%20well%20with%20your%20photo%20editing%2C%20and%20I%20have%20seen%20some%20Power%20Point%20presentations%20beginning%20to%20come%20togethe" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Digital%20Media%20-%20S2%20Week%2014&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-14" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Digital%20Media%20-%20S2%20Week%2014&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-14" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/digital-media-s2-week-14/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Certificate 2 &#8211; S2 Week 14</title>
		<link>http://www.mokonamodoki.com/certificate-2-s2-week-14</link>
		<comments>http://www.mokonamodoki.com/certificate-2-s2-week-14#comments</comments>
		<pubDate>Wed, 05 Nov 2008 22:00:34 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Certificate 2]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT ICA20105 / 19001]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=522</guid>
		<description><![CDATA[Excellent! Task 3 completed. Next week we will begin ICAI2015A &#8211; Install Software Applications
[ad#adtype1]



Share This:


	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<p>Excellent! Task 3 completed. Next week we will begin ICAI2015A &#8211; Install Software Applications</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-14&amp;title=Certificate%202%20-%20S2%20Week%2014&amp;bodytext=Excellent%21%20Task%203%20completed.%20Next%20week%20we%20will%20begin%20ICAI2015A%20-%20Install%20Software%20Applications%0D%0A%5Bad%23adtype1%5D" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-14" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-14&amp;title=Certificate%202%20-%20S2%20Week%2014&amp;notes=Excellent%21%20Task%203%20completed.%20Next%20week%20we%20will%20begin%20ICAI2015A%20-%20Install%20Software%20Applications%0D%0A%5Bad%23adtype1%5D" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-14&amp;t=Certificate%202%20-%20S2%20Week%2014" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-14&amp;title=Certificate%202%20-%20S2%20Week%2014" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-14&amp;title=Certificate%202%20-%20S2%20Week%2014&amp;annotation=Excellent%21%20Task%203%20completed.%20Next%20week%20we%20will%20begin%20ICAI2015A%20-%20Install%20Software%20Applications%0D%0A%5Bad%23adtype1%5D" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Certificate%202%20-%20S2%20Week%2014&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-14" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Certificate%202%20-%20S2%20Week%2014&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-14" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/certificate-2-s2-week-14/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Weekly Funny &#8211; Door For You Sir?</title>
		<link>http://www.mokonamodoki.com/the-weekly-funny-door-for-you-si</link>
		<comments>http://www.mokonamodoki.com/the-weekly-funny-door-for-you-si#comments</comments>
		<pubDate>Tue, 04 Nov 2008 22:00:30 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[TAFE]]></category>
		<category><![CDATA[The Weekly Funny]]></category>
		<category><![CDATA[Time of the Time]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=520</guid>
		<description><![CDATA[Another Video via Email
(Please open the article to see the flash file or player.)
Remember: If you have something funny that you would like to see featured in The Weekly Funny, submit it to me or tell me about it via one of the many communication channels you have with me.
[ad#adtype1]



Share This:


	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<p>Another Video via Email</p>
<p style="text-align: center;"><small>(Please open the article to see the flash file or player.)</small></p>
<p style="text-align: left;"><strong>Remember:</strong> If you have something funny that you would like to see featured in The Weekly Funny, submit it to me or tell me about it via one of the many communication channels you have with me.</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-door-for-you-si&amp;title=The%20Weekly%20Funny%20-%20Door%20For%20You%20Sir%3F&amp;bodytext=Another%20Video%20via%20Email%0D%0A%5Bflash%20http%3A%2F%2Fwww.mokonamodoki.com%2Fwp-content%2Fuploads%2F2008%2F11%2Fdoor-for-you-sir.flv%5D%0D%0ARemember%3A%C2%A0If%20you%20have%20something%20funny%20that%20you%20would%20like%20to%20see%20featured%20in%20The%20Weekly%20Funny%2C%20submit%20it%20to%20me%20or%20tell%20me%20about%20it%20via%20one%20" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-door-for-you-si" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-door-for-you-si&amp;title=The%20Weekly%20Funny%20-%20Door%20For%20You%20Sir%3F&amp;notes=Another%20Video%20via%20Email%0D%0A%5Bflash%20http%3A%2F%2Fwww.mokonamodoki.com%2Fwp-content%2Fuploads%2F2008%2F11%2Fdoor-for-you-sir.flv%5D%0D%0ARemember%3A%C2%A0If%20you%20have%20something%20funny%20that%20you%20would%20like%20to%20see%20featured%20in%20The%20Weekly%20Funny%2C%20submit%20it%20to%20me%20or%20tell%20me%20about%20it%20via%20one%20" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-door-for-you-si&amp;t=The%20Weekly%20Funny%20-%20Door%20For%20You%20Sir%3F" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-door-for-you-si&amp;title=The%20Weekly%20Funny%20-%20Door%20For%20You%20Sir%3F" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-door-for-you-si&amp;title=The%20Weekly%20Funny%20-%20Door%20For%20You%20Sir%3F&amp;annotation=Another%20Video%20via%20Email%0D%0A%5Bflash%20http%3A%2F%2Fwww.mokonamodoki.com%2Fwp-content%2Fuploads%2F2008%2F11%2Fdoor-for-you-sir.flv%5D%0D%0ARemember%3A%C2%A0If%20you%20have%20something%20funny%20that%20you%20would%20like%20to%20see%20featured%20in%20The%20Weekly%20Funny%2C%20submit%20it%20to%20me%20or%20tell%20me%20about%20it%20via%20one%20" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=The%20Weekly%20Funny%20-%20Door%20For%20You%20Sir%3F&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-door-for-you-si" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=The%20Weekly%20Funny%20-%20Door%20For%20You%20Sir%3F&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-door-for-you-si" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/the-weekly-funny-door-for-you-si/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CAFC &#8211; S2 Week 13</title>
		<link>http://www.mokonamodoki.com/cafc-s2-week-13</link>
		<comments>http://www.mokonamodoki.com/cafc-s2-week-13#comments</comments>
		<pubDate>Thu, 30 Oct 2008 22:01:09 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[CAFCA]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT Computers a First Course / 3771]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=517</guid>
		<description><![CDATA[Hi everyone. We had a few additional students attend our class this week. I didn&#8217;t introduce them, only because they are not actually enrolled in our course, rather they are just filling the spots of people who aren&#8217;t attending. Free education in other words!
We began working in Microsoft Excel this week. Some of you probably [...]]]></description>
			<content:encoded><![CDATA[<p>Hi everyone. We had a few additional students attend our class this week. I didn&#8217;t introduce them, only because they are not actually enrolled in our course, rather they are just filling the spots of people who aren&#8217;t attending. Free education in other words!</p>
<p>We began working in Microsoft Excel this week. Some of you probably felt that Excel is easier to use than Microsoft Word even. We will continue with the tutorial next lesson If you missed this weeks lesson and would like to grab a copy of the tutorial notes now, you can grab a copy below.</p>
<p><a href="http://www.mokonamodoki.com/wp-content/uploads/2008/11/cafc-s2-week-13.doc">CAFC &#8211; S2 Week 13 &#8211; Lesson Notes</a></p>
<p>See you all next lesson!</p>
<p><strong>Remember</strong>; I put these links and resources here for your use. So if they are of no use to you, too hard to understand or you feel they are off topic, then please let me know, via any of the communication channels you have with me. I am more then happy to make changes, source better content or even create fresh content from scratch, just for you! You need only ask … nicely!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-13&amp;title=CAFC%20-%20S2%20Week%2013&amp;bodytext=Hi%20everyone.%20We%20had%20a%20few%20additional%20students%20attend%20our%20class%20this%20week.%20I%20didn%27t%20introduce%20them%2C%20only%20because%20they%20are%20not%20actually%20enrolled%20in%20our%20course%2C%20rather%20they%20are%20just%20filling%20the%20spots%20of%20people%20who%20aren%27t%20attending.%20Free%20education%20in%20oth" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-13" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-13&amp;title=CAFC%20-%20S2%20Week%2013&amp;notes=Hi%20everyone.%20We%20had%20a%20few%20additional%20students%20attend%20our%20class%20this%20week.%20I%20didn%27t%20introduce%20them%2C%20only%20because%20they%20are%20not%20actually%20enrolled%20in%20our%20course%2C%20rather%20they%20are%20just%20filling%20the%20spots%20of%20people%20who%20aren%27t%20attending.%20Free%20education%20in%20oth" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-13&amp;t=CAFC%20-%20S2%20Week%2013" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-13&amp;title=CAFC%20-%20S2%20Week%2013" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-13&amp;title=CAFC%20-%20S2%20Week%2013&amp;annotation=Hi%20everyone.%20We%20had%20a%20few%20additional%20students%20attend%20our%20class%20this%20week.%20I%20didn%27t%20introduce%20them%2C%20only%20because%20they%20are%20not%20actually%20enrolled%20in%20our%20course%2C%20rather%20they%20are%20just%20filling%20the%20spots%20of%20people%20who%20aren%27t%20attending.%20Free%20education%20in%20oth" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=CAFC%20-%20S2%20Week%2013&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-13" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=CAFC%20-%20S2%20Week%2013&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-13" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/cafc-s2-week-13/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Certificate 1 &#8211; S2 Week 13</title>
		<link>http://www.mokonamodoki.com/certificate-1-s2-week-13</link>
		<comments>http://www.mokonamodoki.com/certificate-1-s2-week-13#comments</comments>
		<pubDate>Thu, 30 Oct 2008 22:00:11 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Certificate 1]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT ICA10105 / 19000]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=514</guid>
		<description><![CDATA[Hi everyone. It was great to see those of you that attended class this week! As we did last week, we continued with the class room based discussion guided by hand out notes. For those of you wishing to grab another copy, you can find them below. The level of discussion we have been having [...]]]></description>
			<content:encoded><![CDATA[<p>Hi everyone. It was great to see those of you that attended class this week! As we did last week, we continued with the class room based discussion guided by hand out notes. For those of you wishing to grab another copy, you can find them below. The level of discussion we have been having is great, however we do need to try to keep it on topic a little more. This week we went off on a couple of tangents!</p>
<p>See you all next lesson!</p>
<p><a href="http://www.mokonamodoki.com/wp-content/uploads/2008/11/certificate-1-week-13-s2-chp.doc">Certificate 1 &#8211; S2 Week 13 &#8211; Lesson Notes</a></p>
<p>There will not be a follow up video tutorial for this session.</p>
<p><strong>Remember</strong>; I put these links and resources here for your use. So if they are of no use to you, too hard to understand or you feel they are off topic, then please let me know, via any of the communication channels you have with me. I am more then happy to make changes, source better content or even create fresh content from scratch, just for you! You need only ask … nicely!</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-13&amp;title=Certificate%201%20-%20S2%20Week%2013&amp;bodytext=Hi%20everyone.%20It%20was%20great%20to%20see%20those%20of%20you%20that%20attended%20class%20this%20week%21%20As%20we%20did%20last%20week%2C%20we%20continued%20with%20the%20class%20room%20based%20discussion%20guided%20by%20hand%20out%20notes.%20For%20those%20of%20you%20wishing%20to%20grab%20another%20copy%2C%20you%20can%20find%20them%20below.%20The%20" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-13" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-13&amp;title=Certificate%201%20-%20S2%20Week%2013&amp;notes=Hi%20everyone.%20It%20was%20great%20to%20see%20those%20of%20you%20that%20attended%20class%20this%20week%21%20As%20we%20did%20last%20week%2C%20we%20continued%20with%20the%20class%20room%20based%20discussion%20guided%20by%20hand%20out%20notes.%20For%20those%20of%20you%20wishing%20to%20grab%20another%20copy%2C%20you%20can%20find%20them%20below.%20The%20" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-13&amp;t=Certificate%201%20-%20S2%20Week%2013" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-13&amp;title=Certificate%201%20-%20S2%20Week%2013" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-13&amp;title=Certificate%201%20-%20S2%20Week%2013&amp;annotation=Hi%20everyone.%20It%20was%20great%20to%20see%20those%20of%20you%20that%20attended%20class%20this%20week%21%20As%20we%20did%20last%20week%2C%20we%20continued%20with%20the%20class%20room%20based%20discussion%20guided%20by%20hand%20out%20notes.%20For%20those%20of%20you%20wishing%20to%20grab%20another%20copy%2C%20you%20can%20find%20them%20below.%20The%20" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Certificate%201%20-%20S2%20Week%2013&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-13" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Certificate%201%20-%20S2%20Week%2013&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-13" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/certificate-1-s2-week-13/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Digital Media &#8211; S2 Week 13</title>
		<link>http://www.mokonamodoki.com/digital-media-s2-week-13</link>
		<comments>http://www.mokonamodoki.com/digital-media-s2-week-13#comments</comments>
		<pubDate>Wed, 29 Oct 2008 22:01:35 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Digital Media]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT Foundation / 19040]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=512</guid>
		<description><![CDATA[Wow, only five students attended tonight. I get the feeling that perhaps the project that I handed out has scared the rest of you away! Well let me just say that those of you who are not attending, are missing out on precious one-to-one time with your projects, and polishing your skills with photoshop. Thank [...]]]></description>
			<content:encoded><![CDATA[<p>Wow, only five students attended tonight. I get the feeling that perhaps the project that I handed out has scared the rest of you away! Well let me just say that those of you who are not attending, are missing out on precious one-to-one time with your projects, and polishing your skills with photoshop. Thank you to the remainder of you whom are still attending.</p>
<p><strong>Remember:</strong> You&#8217;ve only got 5 more weeks left to get your project completed. If you don&#8217;t have at least half your photos edited, and a PowerPoint presentation at least planned, then you need to do some catching up!</p>
<p>See you next lesson!</p>
<p>There were no additional notes or follow up video tutorials for this lesson.</p>
<p><strong>Remember</strong>; I put these links and resources here for your use. So if they are of no use to you, too hard to understand or you feel they are off topic, then please let me know, via any of the communication channels you have with me. I am more then happy to make changes, source better content or even create fresh content from scratch, just for you! You need only ask … nicely!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-13&amp;title=Digital%20Media%20-%20S2%20Week%2013&amp;bodytext=Wow%2C%20only%20five%20students%20attended%20tonight.%20I%20get%20the%20feeling%20that%20perhaps%20the%20project%20that%20I%20handed%20out%20has%20scared%20the%20rest%20of%20you%20away%21%20Well%20let%20me%20just%20say%20that%20those%20of%20you%20who%20are%20not%20attending%2C%20are%20missing%20out%20on%20precious%20one-to-one%20time%20with%20you" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-13" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-13&amp;title=Digital%20Media%20-%20S2%20Week%2013&amp;notes=Wow%2C%20only%20five%20students%20attended%20tonight.%20I%20get%20the%20feeling%20that%20perhaps%20the%20project%20that%20I%20handed%20out%20has%20scared%20the%20rest%20of%20you%20away%21%20Well%20let%20me%20just%20say%20that%20those%20of%20you%20who%20are%20not%20attending%2C%20are%20missing%20out%20on%20precious%20one-to-one%20time%20with%20you" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-13&amp;t=Digital%20Media%20-%20S2%20Week%2013" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-13&amp;title=Digital%20Media%20-%20S2%20Week%2013" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-13&amp;title=Digital%20Media%20-%20S2%20Week%2013&amp;annotation=Wow%2C%20only%20five%20students%20attended%20tonight.%20I%20get%20the%20feeling%20that%20perhaps%20the%20project%20that%20I%20handed%20out%20has%20scared%20the%20rest%20of%20you%20away%21%20Well%20let%20me%20just%20say%20that%20those%20of%20you%20who%20are%20not%20attending%2C%20are%20missing%20out%20on%20precious%20one-to-one%20time%20with%20you" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Digital%20Media%20-%20S2%20Week%2013&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-13" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Digital%20Media%20-%20S2%20Week%2013&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-13" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/digital-media-s2-week-13/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Certificate 2 &#8211; S2 Week 13</title>
		<link>http://www.mokonamodoki.com/certificate-2-s2-week-13</link>
		<comments>http://www.mokonamodoki.com/certificate-2-s2-week-13#comments</comments>
		<pubDate>Wed, 29 Oct 2008 22:00:30 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Certificate 2]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT ICA20105 / 19001]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=508</guid>
		<description><![CDATA[Excellent Progress as usual! Task 2 and Task 3 half completed! Well Done! Next week we will need to have task 3 completed so that we can move onto the final module: ICAI2015A &#8211; Install Software Applications.
[ad#adtype1]



Share This:


	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<p>Excellent Progress as usual! Task 2 and Task 3 half completed! Well Done! Next week we will need to have task 3 completed so that we can move onto the final module: <strong>ICAI2015A &#8211; Install Software Applications.</strong></p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-13&amp;title=Certificate%202%20-%20S2%20Week%2013&amp;bodytext=Excellent%20Progress%20as%20usual%21%20Task%202%20and%20Task%203%20half%20completed%21%20Well%20Done%21%20Next%20week%20we%20will%20need%20to%20have%20task%203%20completed%20so%20that%20we%20can%20move%20onto%20the%20final%20module%3A%20ICAI2015A%20-%20Install%20Software%20Applications.%0D%0A%5Bad%23adtype1%5D" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-13" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-13&amp;title=Certificate%202%20-%20S2%20Week%2013&amp;notes=Excellent%20Progress%20as%20usual%21%20Task%202%20and%20Task%203%20half%20completed%21%20Well%20Done%21%20Next%20week%20we%20will%20need%20to%20have%20task%203%20completed%20so%20that%20we%20can%20move%20onto%20the%20final%20module%3A%20ICAI2015A%20-%20Install%20Software%20Applications.%0D%0A%5Bad%23adtype1%5D" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-13&amp;t=Certificate%202%20-%20S2%20Week%2013" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-13&amp;title=Certificate%202%20-%20S2%20Week%2013" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-13&amp;title=Certificate%202%20-%20S2%20Week%2013&amp;annotation=Excellent%20Progress%20as%20usual%21%20Task%202%20and%20Task%203%20half%20completed%21%20Well%20Done%21%20Next%20week%20we%20will%20need%20to%20have%20task%203%20completed%20so%20that%20we%20can%20move%20onto%20the%20final%20module%3A%20ICAI2015A%20-%20Install%20Software%20Applications.%0D%0A%5Bad%23adtype1%5D" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Certificate%202%20-%20S2%20Week%2013&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-13" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Certificate%202%20-%20S2%20Week%2013&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-13" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/certificate-2-s2-week-13/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Weekly Funny &#8211; Human Tug of War</title>
		<link>http://www.mokonamodoki.com/the-weekly-funny-human-tug-of-war</link>
		<comments>http://www.mokonamodoki.com/the-weekly-funny-human-tug-of-war#comments</comments>
		<pubDate>Tue, 28 Oct 2008 22:00:58 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[TAFE]]></category>
		<category><![CDATA[The Weekly Funny]]></category>
		<category><![CDATA[Time of the Time]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=510</guid>
		<description><![CDATA[Another via Email &#8211; Don&#8217;t Try This at Home!
(Please open the article to see the flash file or player.)
Remember: If you have something funny that you would like to see featured in The Weekly Funny, submit it to me or tell me about it via one of the many communication channels you have with me.
[ad#adtype1]



Share This:


	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<p>Another via Email &#8211; Don&#8217;t Try This at Home!</p>
<p style="text-align: center;"><small>(Please open the article to see the flash file or player.)</small></p>
<p style="text-align: left;"><strong>Remember:</strong> If you have something funny that you would like to see featured in The Weekly Funny, submit it to me or tell me about it via one of the many communication channels you have with me.</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-human-tug-of-war&amp;title=The%20Weekly%20Funny%20-%20Human%20Tug%20of%20War&amp;bodytext=Another%20via%20Email%20-%20Don%27t%20Try%20This%20at%20Home%21%0D%0A%5Bflash%20http%3A%2F%2Fwww.mokonamodoki.com%2Fwp-content%2Fuploads%2F2008%2F11%2Fhuman-tug-of-war.flv%5D%0D%0ARemember%3A%C2%A0If%20you%20have%20something%20funny%20that%20you%20would%20like%20to%20see%20featured%20in%20The%20Weekly%20Funny%2C%20submit%20it%20to%20me%20or%20tell%20" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-human-tug-of-war" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-human-tug-of-war&amp;title=The%20Weekly%20Funny%20-%20Human%20Tug%20of%20War&amp;notes=Another%20via%20Email%20-%20Don%27t%20Try%20This%20at%20Home%21%0D%0A%5Bflash%20http%3A%2F%2Fwww.mokonamodoki.com%2Fwp-content%2Fuploads%2F2008%2F11%2Fhuman-tug-of-war.flv%5D%0D%0ARemember%3A%C2%A0If%20you%20have%20something%20funny%20that%20you%20would%20like%20to%20see%20featured%20in%20The%20Weekly%20Funny%2C%20submit%20it%20to%20me%20or%20tell%20" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-human-tug-of-war&amp;t=The%20Weekly%20Funny%20-%20Human%20Tug%20of%20War" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-human-tug-of-war&amp;title=The%20Weekly%20Funny%20-%20Human%20Tug%20of%20War" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-human-tug-of-war&amp;title=The%20Weekly%20Funny%20-%20Human%20Tug%20of%20War&amp;annotation=Another%20via%20Email%20-%20Don%27t%20Try%20This%20at%20Home%21%0D%0A%5Bflash%20http%3A%2F%2Fwww.mokonamodoki.com%2Fwp-content%2Fuploads%2F2008%2F11%2Fhuman-tug-of-war.flv%5D%0D%0ARemember%3A%C2%A0If%20you%20have%20something%20funny%20that%20you%20would%20like%20to%20see%20featured%20in%20The%20Weekly%20Funny%2C%20submit%20it%20to%20me%20or%20tell%20" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=The%20Weekly%20Funny%20-%20Human%20Tug%20of%20War&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-human-tug-of-war" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=The%20Weekly%20Funny%20-%20Human%20Tug%20of%20War&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-human-tug-of-war" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/the-weekly-funny-human-tug-of-war/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CAFC &#8211; S2 Week 12</title>
		<link>http://www.mokonamodoki.com/cafc-s2-week-12</link>
		<comments>http://www.mokonamodoki.com/cafc-s2-week-12#comments</comments>
		<pubDate>Thu, 23 Oct 2008 22:01:17 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[CAFCA]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT Computers a First Course / 3771]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=505</guid>
		<description><![CDATA[Hi everyone. It would seem our class is becoming smaller and smaller! Thank you to those of you who have continued to attend the classes. It&#8217;s a shame that everyone else isn&#8217;t attending, but that&#8217;s the way things are. This week we continued with Microsoft Word 2007 tutorial and finished it up. Next week we [...]]]></description>
			<content:encoded><![CDATA[<p>Hi everyone. It would seem our class is becoming smaller and smaller! Thank you to those of you who have continued to attend the classes. It&#8217;s a shame that everyone else isn&#8217;t attending, but that&#8217;s the way things are. This week we continued with Microsoft Word 2007 tutorial and finished it up. Next week we will be starting on Microsoft Excel 2007. </p>
<p>If you missed this weeks lesson, or still don&#8217;t have a copy of the notes, feel free to grab them from the link below.</p>
<p><a href="http://www.mokonamodoki.com/wp-content/uploads/2008/10/cafc-s2-week-12.doc">CAFC &#8211; S2 Week 12 &#8211; Lesson Notes</a></p>
<p>See you all next lesson!</p>
<p><strong>Remember</strong>; I put these links and resources here for your use. So if they are of no use to you, too hard to understand or you feel they are off topic, then please let me know, via any of the communication channels you have with me. I am more then happy to make changes, source better content or even create fresh content from scratch, just for you! You need only ask … nicely!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-12&amp;title=CAFC%20-%20S2%20Week%2012&amp;bodytext=Hi%20everyone.%20It%20would%20seem%20our%20class%20is%20becoming%20smaller%20and%20smaller%21%20Thank%20you%20to%20those%20of%20you%20who%20have%20continued%20to%20attend%20the%20classes.%20It%27s%20a%20shame%20that%20everyone%20else%20isn%27t%20attending%2C%20but%20that%27s%20the%20way%20things%20are.%20This%20week%20we%20continued%20with%20Micr" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-12" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-12&amp;title=CAFC%20-%20S2%20Week%2012&amp;notes=Hi%20everyone.%20It%20would%20seem%20our%20class%20is%20becoming%20smaller%20and%20smaller%21%20Thank%20you%20to%20those%20of%20you%20who%20have%20continued%20to%20attend%20the%20classes.%20It%27s%20a%20shame%20that%20everyone%20else%20isn%27t%20attending%2C%20but%20that%27s%20the%20way%20things%20are.%20This%20week%20we%20continued%20with%20Micr" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-12&amp;t=CAFC%20-%20S2%20Week%2012" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-12&amp;title=CAFC%20-%20S2%20Week%2012" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-12&amp;title=CAFC%20-%20S2%20Week%2012&amp;annotation=Hi%20everyone.%20It%20would%20seem%20our%20class%20is%20becoming%20smaller%20and%20smaller%21%20Thank%20you%20to%20those%20of%20you%20who%20have%20continued%20to%20attend%20the%20classes.%20It%27s%20a%20shame%20that%20everyone%20else%20isn%27t%20attending%2C%20but%20that%27s%20the%20way%20things%20are.%20This%20week%20we%20continued%20with%20Micr" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=CAFC%20-%20S2%20Week%2012&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-12" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=CAFC%20-%20S2%20Week%2012&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-12" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/cafc-s2-week-12/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Certificate 1 &#8211; S2 Week 12</title>
		<link>http://www.mokonamodoki.com/certificate-1-s2-week-12</link>
		<comments>http://www.mokonamodoki.com/certificate-1-s2-week-12#comments</comments>
		<pubDate>Thu, 23 Oct 2008 22:00:38 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Certificate 1]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT ICA10105 / 19000]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=502</guid>
		<description><![CDATA[Hi everyone. It was great to see you all attending the class this week! As we did last week, we continued with the class room based discussion guided by hand out notes. For those of you wishing to grab another copy, you can find them below. Remember, participation in the class room discussion is equal [...]]]></description>
			<content:encoded><![CDATA[<p>Hi everyone. It was great to see you all attending the class this week! As we did last week, we continued with the class room based discussion guided by hand out notes. For those of you wishing to grab another copy, you can find them below. Remember, participation in the class room discussion is equal to no quiz at the end of the term!</p>
<p>See you all next lesson!</p>
<p><a href="http://www.mokonamodoki.com/wp-content/uploads/2008/10/certificate-1-week-12-s2-chp.doc">Certificate 1 &#8211; S2 Week 12 &#8211; Lesson Notes</a></p>
<p>There will not be a follow up video tutorial for this session.</p>
<p><strong>Remember</strong>; I put these links and resources here for your use. So if they are of no use to you, too hard to understand or you feel they are off topic, then please let me know, via any of the communication channels you have with me. I am more then happy to make changes, source better content or even create fresh content from scratch, just for you! You need only ask … nicely!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-12&amp;title=Certificate%201%20-%20S2%20Week%2012&amp;bodytext=Hi%20everyone.%20It%20was%20great%20to%20see%20you%20all%20attending%20the%20class%20this%20week%21%20As%20we%20did%20last%20week%2C%20we%20continued%20with%20the%20class%20room%20based%20discussion%20guided%20by%20hand%20out%20notes.%20For%20those%20of%20you%20wishing%20to%20grab%20another%20copy%2C%20you%20can%20find%20them%20below.%20Remember%2C" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-12" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-12&amp;title=Certificate%201%20-%20S2%20Week%2012&amp;notes=Hi%20everyone.%20It%20was%20great%20to%20see%20you%20all%20attending%20the%20class%20this%20week%21%20As%20we%20did%20last%20week%2C%20we%20continued%20with%20the%20class%20room%20based%20discussion%20guided%20by%20hand%20out%20notes.%20For%20those%20of%20you%20wishing%20to%20grab%20another%20copy%2C%20you%20can%20find%20them%20below.%20Remember%2C" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-12&amp;t=Certificate%201%20-%20S2%20Week%2012" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-12&amp;title=Certificate%201%20-%20S2%20Week%2012" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-12&amp;title=Certificate%201%20-%20S2%20Week%2012&amp;annotation=Hi%20everyone.%20It%20was%20great%20to%20see%20you%20all%20attending%20the%20class%20this%20week%21%20As%20we%20did%20last%20week%2C%20we%20continued%20with%20the%20class%20room%20based%20discussion%20guided%20by%20hand%20out%20notes.%20For%20those%20of%20you%20wishing%20to%20grab%20another%20copy%2C%20you%20can%20find%20them%20below.%20Remember%2C" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Certificate%201%20-%20S2%20Week%2012&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-12" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Certificate%201%20-%20S2%20Week%2012&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-12" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/certificate-1-s2-week-12/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Digital Media &#8211; S2 Week 12</title>
		<link>http://www.mokonamodoki.com/digital-media-s2-week-12</link>
		<comments>http://www.mokonamodoki.com/digital-media-s2-week-12#comments</comments>
		<pubDate>Wed, 22 Oct 2008 22:01:51 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Digital Media]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT Foundation / 19040]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=496</guid>
		<description><![CDATA[Hi everyone. An even lesser number of students this week! If you are missing the class because you feel it is a little too tough, then you should most certainly be attending. For the remainder of the term, I am not going to be teaching &#8220;formal lessons&#8221; as such. So if you want some help [...]]]></description>
			<content:encoded><![CDATA[<p>Hi everyone. An even lesser number of students this week! If you are missing the class because you feel it is a little too tough, then you should most certainly be attending. For the remainder of the term, I am not going to be teaching &#8220;formal lessons&#8221; as such. So if you want some help with something, or want a refresher on how to do something on the computer, now is the perfect time to be asking me for such assistance. Please don&#8217;t miss lessons or leave the class if you feel &#8220;you just can&#8217;t do it&#8221;. You&#8217;ve all made it this far, it would be a shame to stop now. See you all next lesson!</p>
<p>There were no additional notes or follow up video tutorials for this lesson.</p>
<p><strong>Remember</strong>; I put these links and resources here for your use. So if they are of no use to you, too hard to understand or you feel they are off topic, then please let me know, via any of the communication channels you have with me. I am more then happy to make changes, source better content or even create fresh content from scratch, just for you! You need only ask … nicely!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-12&amp;title=Digital%20Media%20-%20S2%20Week%2012&amp;bodytext=Hi%20everyone.%20An%20even%20lesser%20number%20of%20students%20this%20week%21%20If%20you%20are%20missing%20the%20class%20because%20you%20feel%20it%20is%20a%20little%20too%20tough%2C%20then%20you%20should%20most%20certainly%20be%20attending.%20For%20the%20remainder%20of%20the%20term%2C%20I%20am%20not%20going%20to%20be%20teaching%20%22formal%20lesson" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-12" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-12&amp;title=Digital%20Media%20-%20S2%20Week%2012&amp;notes=Hi%20everyone.%20An%20even%20lesser%20number%20of%20students%20this%20week%21%20If%20you%20are%20missing%20the%20class%20because%20you%20feel%20it%20is%20a%20little%20too%20tough%2C%20then%20you%20should%20most%20certainly%20be%20attending.%20For%20the%20remainder%20of%20the%20term%2C%20I%20am%20not%20going%20to%20be%20teaching%20%22formal%20lesson" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-12&amp;t=Digital%20Media%20-%20S2%20Week%2012" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-12&amp;title=Digital%20Media%20-%20S2%20Week%2012" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-12&amp;title=Digital%20Media%20-%20S2%20Week%2012&amp;annotation=Hi%20everyone.%20An%20even%20lesser%20number%20of%20students%20this%20week%21%20If%20you%20are%20missing%20the%20class%20because%20you%20feel%20it%20is%20a%20little%20too%20tough%2C%20then%20you%20should%20most%20certainly%20be%20attending.%20For%20the%20remainder%20of%20the%20term%2C%20I%20am%20not%20going%20to%20be%20teaching%20%22formal%20lesson" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Digital%20Media%20-%20S2%20Week%2012&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-12" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Digital%20Media%20-%20S2%20Week%2012&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-12" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/digital-media-s2-week-12/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Certificate 2 &#8211; S2 Week 12</title>
		<link>http://www.mokonamodoki.com/certificate-2-s2-week-12</link>
		<comments>http://www.mokonamodoki.com/certificate-2-s2-week-12#comments</comments>
		<pubDate>Wed, 22 Oct 2008 22:00:33 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Certificate 2]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT ICA20105 / 19001]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=494</guid>
		<description><![CDATA[Excellent! Task 1 completed and Task 2 started. Well done! If you keep this current rate up, we&#8217;ll get through this module quickly! Excellent Work! We will need to have Task 2 completed by the end of the next lesson. So far it seems you&#8217;ll have that done easily!
[ad#adtype1]



Share This:


	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<p>Excellent! Task 1 completed and Task 2 started. Well done! If you keep this current rate up, we&#8217;ll get through this module quickly! Excellent Work! We will need to have Task 2 completed by the end of the next lesson. So far it seems you&#8217;ll have that done easily!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-12&amp;title=Certificate%202%20-%20S2%20Week%2012&amp;bodytext=Excellent%21%20Task%201%20completed%20and%20Task%202%20started.%20Well%20done%21%20If%20you%20keep%20this%20current%20rate%20up%2C%20we%27ll%20get%20through%20this%20module%20quickly%21%20Excellent%20Work%21%20We%20will%20need%20to%20have%20Task%202%20completed%20by%20the%20end%20of%20the%20next%20lesson.%20So%20far%20it%20seems%20you%27ll%20have%20that%20" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-12" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-12&amp;title=Certificate%202%20-%20S2%20Week%2012&amp;notes=Excellent%21%20Task%201%20completed%20and%20Task%202%20started.%20Well%20done%21%20If%20you%20keep%20this%20current%20rate%20up%2C%20we%27ll%20get%20through%20this%20module%20quickly%21%20Excellent%20Work%21%20We%20will%20need%20to%20have%20Task%202%20completed%20by%20the%20end%20of%20the%20next%20lesson.%20So%20far%20it%20seems%20you%27ll%20have%20that%20" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-12&amp;t=Certificate%202%20-%20S2%20Week%2012" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-12&amp;title=Certificate%202%20-%20S2%20Week%2012" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-12&amp;title=Certificate%202%20-%20S2%20Week%2012&amp;annotation=Excellent%21%20Task%201%20completed%20and%20Task%202%20started.%20Well%20done%21%20If%20you%20keep%20this%20current%20rate%20up%2C%20we%27ll%20get%20through%20this%20module%20quickly%21%20Excellent%20Work%21%20We%20will%20need%20to%20have%20Task%202%20completed%20by%20the%20end%20of%20the%20next%20lesson.%20So%20far%20it%20seems%20you%27ll%20have%20that%20" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Certificate%202%20-%20S2%20Week%2012&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-12" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Certificate%202%20-%20S2%20Week%2012&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-12" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/certificate-2-s2-week-12/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Weekly Funny &#8211; Nandos, Where&#8217;s My Chips?</title>
		<link>http://www.mokonamodoki.com/the-weekly-funny-nandos-wheres-my-chips</link>
		<comments>http://www.mokonamodoki.com/the-weekly-funny-nandos-wheres-my-chips#comments</comments>
		<pubDate>Tue, 21 Oct 2008 22:00:38 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[TAFE]]></category>
		<category><![CDATA[The Weekly Funny]]></category>
		<category><![CDATA[Time of the Time]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=478</guid>
		<description><![CDATA[Nandos Commercial. Another via email.
(Please open the article to see the flash file or player.)
Remember: If you have something funny that you would like to see featured in The Weekly Funny, submit it to me or tell me about it via one of the many communication channels you have with me.
[ad#adtype1]



Share This:


	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<p>Nandos Commercial. Another via email.</p>
<p style="text-align: center;"><small>(Please open the article to see the flash file or player.)</small></p>
<p><strong>Remember:</strong> If you have something funny that you would like to see featured in The Weekly Funny, submit it to me or tell me about it via one of the many communication channels you have with me.</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-nandos-wheres-my-chips&amp;title=The%20Weekly%20Funny%20-%20Nandos%2C%20Where%27s%20My%20Chips%3F&amp;bodytext=Nandos%20Commercial.%20Another%20via%20email.%0D%0A%5Bflash%20http%3A%2F%2Fwww.mokonamodoki.com%2Fwp-content%2Fuploads%2F2008%2F10%2Fnandos-chips-nand_30_236_e_t_email.flv%5D%0D%0A%0D%0ARemember%3A%C2%A0If%20you%20have%20something%20funny%20that%20you%20would%20like%20to%20see%20featured%20in%20The%20Weekly%20Funny%2C%20submit%20it%20" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-nandos-wheres-my-chips" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-nandos-wheres-my-chips&amp;title=The%20Weekly%20Funny%20-%20Nandos%2C%20Where%27s%20My%20Chips%3F&amp;notes=Nandos%20Commercial.%20Another%20via%20email.%0D%0A%5Bflash%20http%3A%2F%2Fwww.mokonamodoki.com%2Fwp-content%2Fuploads%2F2008%2F10%2Fnandos-chips-nand_30_236_e_t_email.flv%5D%0D%0A%0D%0ARemember%3A%C2%A0If%20you%20have%20something%20funny%20that%20you%20would%20like%20to%20see%20featured%20in%20The%20Weekly%20Funny%2C%20submit%20it%20" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-nandos-wheres-my-chips&amp;t=The%20Weekly%20Funny%20-%20Nandos%2C%20Where%27s%20My%20Chips%3F" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-nandos-wheres-my-chips&amp;title=The%20Weekly%20Funny%20-%20Nandos%2C%20Where%27s%20My%20Chips%3F" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-nandos-wheres-my-chips&amp;title=The%20Weekly%20Funny%20-%20Nandos%2C%20Where%27s%20My%20Chips%3F&amp;annotation=Nandos%20Commercial.%20Another%20via%20email.%0D%0A%5Bflash%20http%3A%2F%2Fwww.mokonamodoki.com%2Fwp-content%2Fuploads%2F2008%2F10%2Fnandos-chips-nand_30_236_e_t_email.flv%5D%0D%0A%0D%0ARemember%3A%C2%A0If%20you%20have%20something%20funny%20that%20you%20would%20like%20to%20see%20featured%20in%20The%20Weekly%20Funny%2C%20submit%20it%20" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=The%20Weekly%20Funny%20-%20Nandos%2C%20Where%27s%20My%20Chips%3F&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-nandos-wheres-my-chips" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=The%20Weekly%20Funny%20-%20Nandos%2C%20Where%27s%20My%20Chips%3F&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-nandos-wheres-my-chips" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/the-weekly-funny-nandos-wheres-my-chips/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CAFC &#8211; S2 Week 11</title>
		<link>http://www.mokonamodoki.com/cafc-s2-week-11</link>
		<comments>http://www.mokonamodoki.com/cafc-s2-week-11#comments</comments>
		<pubDate>Thu, 16 Oct 2008 22:01:00 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[CAFCA]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT Computers a First Course / 3771]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=489</guid>
		<description><![CDATA[Hi everyone. This session we continued with Lesson 3, from the notes I handed out last term. These notes will take us through to the next lesson, so be sure to bring them with you next week. I only have limited spares, so please try to remember. If you would like an electronic copy, to print [...]]]></description>
			<content:encoded><![CDATA[<p>Hi everyone. This session we continued with Lesson 3, from the notes I handed out last term. These notes will take us through to the next lesson, so be sure to bring them with you next week. I only have limited spares, so please try to remember. If you would like an electronic copy, to print out at home or read on  your computer, you can click the link below to download it.</p>
<p><a href="http://www.mokonamodoki.com/wp-content/uploads/2008/10/cafc-s2-week-11.doc">CAFC &#8211; S2 Week 11 &#8211; Lesson Notes</a></p>
<p><a href="http://www.mokonamodoki.com/wp-content/uploads/2008/10/cafc-s2-week-11.doc"></a> See you next lesson!</p>
<p><strong>Remember</strong>; I put these links and resources here for your use. So if they are of no use to you, too hard to understand or you feel they are off topic, then please let me know, via any of the communication channels you have with me. I am more then happy to make changes, source better content or even create fresh content from scratch, just for you! You need only ask … nicely!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-11&amp;title=CAFC%20-%20S2%20Week%2011&amp;bodytext=Hi%20everyone.%C2%A0This%20session%20we%20continued%20with%20Lesson%203%2C%20from%20the%20notes%20I%20handed%20out%20last%20term.%20These%20notes%20will%20take%20us%20through%20to%20the%20next%20lesson%2C%20so%20be%20sure%20to%20bring%20them%20with%20you%20next%20week.%20I%20only%20have%20limited%20spares%2C%20so%20please%20try%20to%20remember.%20If%20" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-11" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-11&amp;title=CAFC%20-%20S2%20Week%2011&amp;notes=Hi%20everyone.%C2%A0This%20session%20we%20continued%20with%20Lesson%203%2C%20from%20the%20notes%20I%20handed%20out%20last%20term.%20These%20notes%20will%20take%20us%20through%20to%20the%20next%20lesson%2C%20so%20be%20sure%20to%20bring%20them%20with%20you%20next%20week.%20I%20only%20have%20limited%20spares%2C%20so%20please%20try%20to%20remember.%20If%20" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-11&amp;t=CAFC%20-%20S2%20Week%2011" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-11&amp;title=CAFC%20-%20S2%20Week%2011" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-11&amp;title=CAFC%20-%20S2%20Week%2011&amp;annotation=Hi%20everyone.%C2%A0This%20session%20we%20continued%20with%20Lesson%203%2C%20from%20the%20notes%20I%20handed%20out%20last%20term.%20These%20notes%20will%20take%20us%20through%20to%20the%20next%20lesson%2C%20so%20be%20sure%20to%20bring%20them%20with%20you%20next%20week.%20I%20only%20have%20limited%20spares%2C%20so%20please%20try%20to%20remember.%20If%20" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=CAFC%20-%20S2%20Week%2011&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-11" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=CAFC%20-%20S2%20Week%2011&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-11" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/cafc-s2-week-11/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Certificate 1 &#8211; S2 Week 11</title>
		<link>http://www.mokonamodoki.com/certificate-1-s2-week-11</link>
		<comments>http://www.mokonamodoki.com/certificate-1-s2-week-11#comments</comments>
		<pubDate>Thu, 16 Oct 2008 22:00:22 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Certificate 1]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT ICA10105 / 19000]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=485</guid>
		<description><![CDATA[Hi everyone. Was good to see those of you who attended again. This week we started a new topic; ICAS2014A &#8211; Connect Hardware Peripherals. This is roughly a four session module, hence it should only take us four weeks to complete. It seems that most people panic a little too much when I mention the word [...]]]></description>
			<content:encoded><![CDATA[<p>Hi everyone. Was good to see those of you who attended again. This week we started a new topic; ICAS2014A &#8211; Connect Hardware Peripherals. This is roughly a four session module, hence it should only take us four weeks to complete. It seems that most people panic a little too much when I mention the word quiz, so for these last two topics, I am going to be relying on your classroom participation. This week just about everyone in attendance participated in the discussion, which I think went really well. If we can keep this up for the remainder of the term, then you may just get out of doing a quiz!</p>
<p>So, in mathematical terms: classroom pariticpation and discussion == no quiz at the end of the term!</p>
<p><a href="http://www.mokonamodoki.com/wp-content/uploads/2008/10/certificate-1-week-11-s2-chp.doc">Certificate 1 &#8211; S2 Week 11 Lesson Notes 1</a></p>
<p><a href="http://www.mokonamodoki.com/wp-content/uploads/2008/10/certificate-1-week-111-s2-chp.doc">Certificate 1 &#8211; S2 Week 11 Lesson Notes 2</a></p>
<p>There will not be a follow up video tutorial for this session.</p>
<p><strong>Remember</strong>; I put these links and resources here for your use. So if they are of no use to you, too hard to understand or you feel they are off topic, then please let me know, via any of the communication channels you have with me. I am more then happy to make changes, source better content or even create fresh content from scratch, just for you! You need only ask … nicely!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-11&amp;title=Certificate%201%20-%20S2%20Week%2011&amp;bodytext=Hi%20everyone.%20Was%20good%20to%20see%20those%20of%20you%20who%20attended%20again.%20This%20week%20we%20started%20a%20new%20topic%3B%C2%A0ICAS2014A%20-%20Connect%20Hardware%20Peripherals.%20This%20is%20roughly%20a%20four%20session%20module%2C%20hence%20it%20should%20only%20take%20us%20four%20weeks%20to%20complete.%20It%20seems%20that%20most%20" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-11" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-11&amp;title=Certificate%201%20-%20S2%20Week%2011&amp;notes=Hi%20everyone.%20Was%20good%20to%20see%20those%20of%20you%20who%20attended%20again.%20This%20week%20we%20started%20a%20new%20topic%3B%C2%A0ICAS2014A%20-%20Connect%20Hardware%20Peripherals.%20This%20is%20roughly%20a%20four%20session%20module%2C%20hence%20it%20should%20only%20take%20us%20four%20weeks%20to%20complete.%20It%20seems%20that%20most%20" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-11&amp;t=Certificate%201%20-%20S2%20Week%2011" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-11&amp;title=Certificate%201%20-%20S2%20Week%2011" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-11&amp;title=Certificate%201%20-%20S2%20Week%2011&amp;annotation=Hi%20everyone.%20Was%20good%20to%20see%20those%20of%20you%20who%20attended%20again.%20This%20week%20we%20started%20a%20new%20topic%3B%C2%A0ICAS2014A%20-%20Connect%20Hardware%20Peripherals.%20This%20is%20roughly%20a%20four%20session%20module%2C%20hence%20it%20should%20only%20take%20us%20four%20weeks%20to%20complete.%20It%20seems%20that%20most%20" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Certificate%201%20-%20S2%20Week%2011&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-11" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Certificate%201%20-%20S2%20Week%2011&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-11" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/certificate-1-s2-week-11/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Digital Media &#8211; S2 Week 11</title>
		<link>http://www.mokonamodoki.com/digital-media-s2-week-11</link>
		<comments>http://www.mokonamodoki.com/digital-media-s2-week-11#comments</comments>
		<pubDate>Wed, 15 Oct 2008 22:01:02 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Digital Media]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT Foundation / 19040]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=482</guid>
		<description><![CDATA[Hi everyone. Was good to see those of you who did attend class this week! Remember, this is only an 8 week term, so unless you are working on your project outside of class, you should make the most of the time allowed inside class. If you are having trouble with your projects, taking photos [...]]]></description>
			<content:encoded><![CDATA[<p>Hi everyone. Was good to see those of you who did attend class this week! Remember, this is only an 8 week term, so unless you are working on your project outside of class, you should make the most of the time allowed inside class. If you are having trouble with your projects, taking photos or using your camera, these next few lessons is the time to ask me. Don&#8217;t leave it until the last day to ask me for help!</p>
<p>There were no additional notes or follow up video tutorials for this lesson.</p>
<p><strong>Remember</strong>; I put these links and resources here for your use. So if they are of no use to you, too hard to understand or you feel they are off topic, then please let me know, via any of the communication channels you have with me. I am more then happy to make changes, source better content or even create fresh content from scratch, just for you! You need only ask … nicely!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-11&amp;title=Digital%20Media%20-%20S2%20Week%2011&amp;bodytext=Hi%20everyone.%20Was%20good%20to%20see%20those%20of%20you%20who%20did%20attend%20class%20this%20week%21%20Remember%2C%20this%20is%20only%20an%208%20week%20term%2C%20so%20unless%20you%20are%20working%20on%20your%20project%20outside%20of%20class%2C%20you%20should%20make%20the%20most%20of%20the%20time%20allowed%20inside%20class.%20If%20you%20are%20having%20" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-11" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-11&amp;title=Digital%20Media%20-%20S2%20Week%2011&amp;notes=Hi%20everyone.%20Was%20good%20to%20see%20those%20of%20you%20who%20did%20attend%20class%20this%20week%21%20Remember%2C%20this%20is%20only%20an%208%20week%20term%2C%20so%20unless%20you%20are%20working%20on%20your%20project%20outside%20of%20class%2C%20you%20should%20make%20the%20most%20of%20the%20time%20allowed%20inside%20class.%20If%20you%20are%20having%20" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-11&amp;t=Digital%20Media%20-%20S2%20Week%2011" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-11&amp;title=Digital%20Media%20-%20S2%20Week%2011" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-11&amp;title=Digital%20Media%20-%20S2%20Week%2011&amp;annotation=Hi%20everyone.%20Was%20good%20to%20see%20those%20of%20you%20who%20did%20attend%20class%20this%20week%21%20Remember%2C%20this%20is%20only%20an%208%20week%20term%2C%20so%20unless%20you%20are%20working%20on%20your%20project%20outside%20of%20class%2C%20you%20should%20make%20the%20most%20of%20the%20time%20allowed%20inside%20class.%20If%20you%20are%20having%20" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Digital%20Media%20-%20S2%20Week%2011&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-11" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Digital%20Media%20-%20S2%20Week%2011&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-11" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/digital-media-s2-week-11/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Certificate 2 &#8211; S2 Week 11</title>
		<link>http://www.mokonamodoki.com/certificate-2-s2-week-11</link>
		<comments>http://www.mokonamodoki.com/certificate-2-s2-week-11#comments</comments>
		<pubDate>Wed, 15 Oct 2008 22:00:04 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Certificate 2]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT ICA20105 / 19001]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=480</guid>
		<description><![CDATA[This week we started a new module; ICAW2001A &#8211; Work Effectively in an IT Environment. We have worked through the reading notes, so you will need to complete the first task by our next session. Complete four profiles, 2 for the selected job types, and 2 for jobs that you would like to do.
[ad#adtype1]



Share This:


	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<p>This week we started a new module; ICAW2001A &#8211; Work Effectively in an IT Environment. We have worked through the reading notes, so you will need to complete the first task by our next session. Complete four profiles, 2 for the selected job types, and 2 for jobs that you would like to do.</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-11&amp;title=Certificate%202%20-%20S2%20Week%2011&amp;bodytext=This%20week%20we%20started%20a%20new%20module%3B%C2%A0ICAW2001A%20-%20Work%20Effectively%20in%20an%20IT%20Environment.%20We%20have%20worked%20through%20the%20reading%20notes%2C%20so%20you%20will%20need%20to%20complete%20the%20first%20task%20by%20our%20next%20session.%20Complete%20four%20profiles%2C%202%20for%20the%20selected%20job%20types%2C%20an" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-11" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-11&amp;title=Certificate%202%20-%20S2%20Week%2011&amp;notes=This%20week%20we%20started%20a%20new%20module%3B%C2%A0ICAW2001A%20-%20Work%20Effectively%20in%20an%20IT%20Environment.%20We%20have%20worked%20through%20the%20reading%20notes%2C%20so%20you%20will%20need%20to%20complete%20the%20first%20task%20by%20our%20next%20session.%20Complete%20four%20profiles%2C%202%20for%20the%20selected%20job%20types%2C%20an" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-11&amp;t=Certificate%202%20-%20S2%20Week%2011" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-11&amp;title=Certificate%202%20-%20S2%20Week%2011" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-11&amp;title=Certificate%202%20-%20S2%20Week%2011&amp;annotation=This%20week%20we%20started%20a%20new%20module%3B%C2%A0ICAW2001A%20-%20Work%20Effectively%20in%20an%20IT%20Environment.%20We%20have%20worked%20through%20the%20reading%20notes%2C%20so%20you%20will%20need%20to%20complete%20the%20first%20task%20by%20our%20next%20session.%20Complete%20four%20profiles%2C%202%20for%20the%20selected%20job%20types%2C%20an" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Certificate%202%20-%20S2%20Week%2011&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-11" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Certificate%202%20-%20S2%20Week%2011&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-11" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/certificate-2-s2-week-11/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Weekly Funny &#8211; Between The Seconds</title>
		<link>http://www.mokonamodoki.com/the-weekly-funny-between-the-seconds</link>
		<comments>http://www.mokonamodoki.com/the-weekly-funny-between-the-seconds#comments</comments>
		<pubDate>Tue, 14 Oct 2008 23:00:17 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[TAFE]]></category>
		<category><![CDATA[The Weekly Funny]]></category>
		<category><![CDATA[Time of the Time]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=475</guid>
		<description><![CDATA[Sometimes you just have to be in the right place at the right time&#8230; with a camera!
Remember: If you have something funny that you would like to see featured in The Weekly Funny, submit it to me or tell me about it via one of the many communication channels you have with me.
[ad#adtype1]



Share This:


	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<p>Sometimes you just have to be in the right place at the right time&#8230; with a camera!</p>
<div class="ngg-galleryoverview" id="ngg-gallery-2-475">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-8" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/seconds1.jpg" title=" " class="thickbox" rel="set_2" >
								<img title="seconds1.jpg" alt="seconds1.jpg" src="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/thumbs/thumbs_seconds1.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-9" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/seconds10.jpg" title=" " class="thickbox" rel="set_2" >
								<img title="seconds10.jpg" alt="seconds10.jpg" src="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/thumbs/thumbs_seconds10.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-10" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/seconds11.jpg" title=" " class="thickbox" rel="set_2" >
								<img title="seconds11.jpg" alt="seconds11.jpg" src="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/thumbs/thumbs_seconds11.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-11" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/seconds12.jpg" title=" " class="thickbox" rel="set_2" >
								<img title="seconds12.jpg" alt="seconds12.jpg" src="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/thumbs/thumbs_seconds12.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-12" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/seconds13.jpg" title=" " class="thickbox" rel="set_2" >
								<img title="seconds13.jpg" alt="seconds13.jpg" src="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/thumbs/thumbs_seconds13.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-13" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/seconds14.jpg" title=" " class="thickbox" rel="set_2" >
								<img title="seconds14.jpg" alt="seconds14.jpg" src="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/thumbs/thumbs_seconds14.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-14" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/seconds15.jpg" title=" " class="thickbox" rel="set_2" >
								<img title="seconds15.jpg" alt="seconds15.jpg" src="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/thumbs/thumbs_seconds15.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-15" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/seconds16.jpg" title=" " class="thickbox" rel="set_2" >
								<img title="seconds16.jpg" alt="seconds16.jpg" src="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/thumbs/thumbs_seconds16.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-16" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/seconds17.jpg" title=" " class="thickbox" rel="set_2" >
								<img title="seconds17.jpg" alt="seconds17.jpg" src="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/thumbs/thumbs_seconds17.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-17" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/seconds18.jpg" title=" " class="thickbox" rel="set_2" >
								<img title="seconds18.jpg" alt="seconds18.jpg" src="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/thumbs/thumbs_seconds18.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-18" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/seconds19.jpg" title=" " class="thickbox" rel="set_2" >
								<img title="seconds19.jpg" alt="seconds19.jpg" src="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/thumbs/thumbs_seconds19.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-19" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/seconds2.jpg" title=" " class="thickbox" rel="set_2" >
								<img title="seconds2.jpg" alt="seconds2.jpg" src="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/thumbs/thumbs_seconds2.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-20" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/seconds20.jpg" title=" " class="thickbox" rel="set_2" >
								<img title="seconds20.jpg" alt="seconds20.jpg" src="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/thumbs/thumbs_seconds20.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-21" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/seconds21.jpg" title=" " class="thickbox" rel="set_2" >
								<img title="seconds21.jpg" alt="seconds21.jpg" src="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/thumbs/thumbs_seconds21.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-22" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/seconds22.jpg" title=" " class="thickbox" rel="set_2" >
								<img title="seconds22.jpg" alt="seconds22.jpg" src="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/thumbs/thumbs_seconds22.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-23" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/seconds3.jpg" title=" " class="thickbox" rel="set_2" >
								<img title="seconds3.jpg" alt="seconds3.jpg" src="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/thumbs/thumbs_seconds3.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-24" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/seconds4.jpg" title=" " class="thickbox" rel="set_2" >
								<img title="seconds4.jpg" alt="seconds4.jpg" src="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/thumbs/thumbs_seconds4.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-25" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/seconds5.jpg" title=" " class="thickbox" rel="set_2" >
								<img title="seconds5.jpg" alt="seconds5.jpg" src="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/thumbs/thumbs_seconds5.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-26" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/seconds6.jpg" title=" " class="thickbox" rel="set_2" >
								<img title="seconds6.jpg" alt="seconds6.jpg" src="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/thumbs/thumbs_seconds6.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-27" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/seconds7.jpg" title=" " class="thickbox" rel="set_2" >
								<img title="seconds7.jpg" alt="seconds7.jpg" src="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/thumbs/thumbs_seconds7.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-28" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/seconds8.jpg" title=" " class="thickbox" rel="set_2" >
								<img title="seconds8.jpg" alt="seconds8.jpg" src="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/thumbs/thumbs_seconds8.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-29" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/seconds9.jpg" title=" " class="thickbox" rel="set_2" >
								<img title="seconds9.jpg" alt="seconds9.jpg" src="http://www.mokonamodoki.com/wp-content/gallery/the-weekly-funny-between-the-seconds/thumbs/thumbs_seconds9.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear"></div> 	
</div>

<p><strong>Remember:</strong> If you have something funny that you would like to see featured in The Weekly Funny, submit it to me or tell me about it via one of the many communication channels you have with me.</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-between-the-seconds&amp;title=The%20Weekly%20Funny%20-%20Between%20The%20Seconds&amp;bodytext=Sometimes%20you%20just%20have%20to%20be%20in%20the%20right%20place%20at%20the%20right%20time...%20with%20a%20camera%21%0D%0A%0D%0A%0D%0A%0D%0ARemember%3A%C2%A0If%20you%20have%20something%20funny%20that%20you%20would%20like%20to%20see%20featured%20in%20The%20Weekly%20Funny%2C%20submit%20it%20to%20me%20or%20tell%20me%20about%20it%20via%20one%20of%20the%20many%20commun" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-between-the-seconds" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-between-the-seconds&amp;title=The%20Weekly%20Funny%20-%20Between%20The%20Seconds&amp;notes=Sometimes%20you%20just%20have%20to%20be%20in%20the%20right%20place%20at%20the%20right%20time...%20with%20a%20camera%21%0D%0A%0D%0A%0D%0A%0D%0ARemember%3A%C2%A0If%20you%20have%20something%20funny%20that%20you%20would%20like%20to%20see%20featured%20in%20The%20Weekly%20Funny%2C%20submit%20it%20to%20me%20or%20tell%20me%20about%20it%20via%20one%20of%20the%20many%20commun" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-between-the-seconds&amp;t=The%20Weekly%20Funny%20-%20Between%20The%20Seconds" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-between-the-seconds&amp;title=The%20Weekly%20Funny%20-%20Between%20The%20Seconds" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-between-the-seconds&amp;title=The%20Weekly%20Funny%20-%20Between%20The%20Seconds&amp;annotation=Sometimes%20you%20just%20have%20to%20be%20in%20the%20right%20place%20at%20the%20right%20time...%20with%20a%20camera%21%0D%0A%0D%0A%0D%0A%0D%0ARemember%3A%C2%A0If%20you%20have%20something%20funny%20that%20you%20would%20like%20to%20see%20featured%20in%20The%20Weekly%20Funny%2C%20submit%20it%20to%20me%20or%20tell%20me%20about%20it%20via%20one%20of%20the%20many%20commun" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=The%20Weekly%20Funny%20-%20Between%20The%20Seconds&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-between-the-seconds" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=The%20Weekly%20Funny%20-%20Between%20The%20Seconds&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-between-the-seconds" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/the-weekly-funny-between-the-seconds/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CAFC &#8211; S2 Week 10</title>
		<link>http://www.mokonamodoki.com/cafc-s2-week-10</link>
		<comments>http://www.mokonamodoki.com/cafc-s2-week-10#comments</comments>
		<pubDate>Wed, 24 Sep 2008 23:01:48 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[CAFCA]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT Computers a First Course / 3771]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=469</guid>
		<description><![CDATA[Hi everyone. This session we continued with Lesson 2, from the notes I handed out last week. These notes will take us through the next couple of lessons, so be sure to bring them with you each week. I only have limited spares, so please try to remember. If you would like an electronic copy, [...]]]></description>
			<content:encoded><![CDATA[<p>Hi everyone. This session we continued with Lesson 2, from the notes I handed out last week. These notes will take us through the next couple of lessons, so be sure to bring them with you each week. I only have limited spares, so please try to remember. If you would like an electronic copy, to print out at home or read on  your computer, you can click the link below to download it.</p>
<p><a href="http://www.mokonamodoki.com/wp-content/uploads/2008/09/cafc-s2-week-10.doc">CAFC &#8211; S2 Week 10 &#8211; Lesson Notes</a></p>
<p><strong>Remember: </strong>Our next lesson is on the 16th October 2008. This will be a short 8 week term, so try not to miss any lessons.</p>
<p>See you next lesson!</p>
<p><strong>Remember</strong>; I put these links and resources here for your use. So if they are of no use to you, too hard to understand or you feel they are off topic, then please let me know, via any of the communication channels you have with me. I am more then happy to make changes, source better content or even create fresh content from scratch, just for you! You need only ask … nicely!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-10&amp;title=CAFC%20-%20S2%20Week%2010&amp;bodytext=Hi%20everyone.%20This%20session%20we%20continued%20with%20Lesson%202%2C%20from%20the%20notes%20I%20handed%20out%20last%20week.%20These%20notes%20will%20take%20us%20through%20the%20next%20couple%20of%20lessons%2C%20so%20be%20sure%20to%20bring%20them%20with%20you%20each%20week.%20I%20only%20have%20limited%20spares%2C%20so%20please%20try%20to%20rememb" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-10" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-10&amp;title=CAFC%20-%20S2%20Week%2010&amp;notes=Hi%20everyone.%20This%20session%20we%20continued%20with%20Lesson%202%2C%20from%20the%20notes%20I%20handed%20out%20last%20week.%20These%20notes%20will%20take%20us%20through%20the%20next%20couple%20of%20lessons%2C%20so%20be%20sure%20to%20bring%20them%20with%20you%20each%20week.%20I%20only%20have%20limited%20spares%2C%20so%20please%20try%20to%20rememb" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-10&amp;t=CAFC%20-%20S2%20Week%2010" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-10&amp;title=CAFC%20-%20S2%20Week%2010" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-10&amp;title=CAFC%20-%20S2%20Week%2010&amp;annotation=Hi%20everyone.%20This%20session%20we%20continued%20with%20Lesson%202%2C%20from%20the%20notes%20I%20handed%20out%20last%20week.%20These%20notes%20will%20take%20us%20through%20the%20next%20couple%20of%20lessons%2C%20so%20be%20sure%20to%20bring%20them%20with%20you%20each%20week.%20I%20only%20have%20limited%20spares%2C%20so%20please%20try%20to%20rememb" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=CAFC%20-%20S2%20Week%2010&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-10" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=CAFC%20-%20S2%20Week%2010&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-10" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/cafc-s2-week-10/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Certificate 1 &#8211; S2 Week 10</title>
		<link>http://www.mokonamodoki.com/certificate-1-s2-week-10</link>
		<comments>http://www.mokonamodoki.com/certificate-1-s2-week-10#comments</comments>
		<pubDate>Wed, 24 Sep 2008 23:01:45 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Certificate 1]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT ICA10105 / 19000]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=464</guid>
		<description><![CDATA[Hi everyone. This lesson we took a look at Microsoft Outlook 2007. We went through the process of setting up an email account, sending, receiving, forwarding and organising email, using the calendar, tasks and notes. Below are two sets of notes that should cover all of these for you. This is especially useful for those [...]]]></description>
			<content:encoded><![CDATA[<p>Hi everyone. This lesson we took a look at Microsoft Outlook 2007. We went through the process of setting up an email account, sending, receiving, forwarding and organising email, using the calendar, tasks and notes. Below are two sets of notes that should cover all of these for you. This is especially useful for those of you that missed this lesson.</p>
<p><a href="http://www.mokonamodoki.com/wp-content/uploads/2008/09/certificate-1-week-10-s2-outlook-2007.doc">Certificate 1 &#8211; S2 Week 10 &#8211; Outlook 2007 Notes 1</a></p>
<p><a href="http://www.mokonamodoki.com/wp-content/uploads/2008/09/certificate-1-week-101-s2-outlook-2007.doc">Certificate 1 &#8211; S2 Week 10 &#8211; Outlook 2007 Notes 2</a></p>
<p><strong>Remember:</strong> Our next lesson is on the 16th of October 2008. This will be a short 8 week term, so try not to miss any lessons.</p>
<p><strong>Remember</strong>; I put these links and resources here for your use. So if they are of no use to you, too hard to understand or you feel they are off topic, then please let me know, via any of the communication channels you have with me. I am more then happy to make changes, source better content or even create fresh content from scratch, just for you! You need only ask … nicely!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-10&amp;title=Certificate%201%20-%20S2%20Week%2010&amp;bodytext=Hi%20everyone.%20This%20lesson%20we%20took%20a%20look%20at%20Microsoft%20Outlook%202007.%20We%20went%20through%20the%20process%20of%20setting%20up%20an%20email%20account%2C%20sending%2C%20receiving%2C%20forwarding%20and%20organising%20email%2C%20using%20the%20calendar%2C%20tasks%20and%20notes.%20Below%20are%20two%20sets%20of%20notes%20that%20" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-10" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-10&amp;title=Certificate%201%20-%20S2%20Week%2010&amp;notes=Hi%20everyone.%20This%20lesson%20we%20took%20a%20look%20at%20Microsoft%20Outlook%202007.%20We%20went%20through%20the%20process%20of%20setting%20up%20an%20email%20account%2C%20sending%2C%20receiving%2C%20forwarding%20and%20organising%20email%2C%20using%20the%20calendar%2C%20tasks%20and%20notes.%20Below%20are%20two%20sets%20of%20notes%20that%20" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-10&amp;t=Certificate%201%20-%20S2%20Week%2010" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-10&amp;title=Certificate%201%20-%20S2%20Week%2010" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-10&amp;title=Certificate%201%20-%20S2%20Week%2010&amp;annotation=Hi%20everyone.%20This%20lesson%20we%20took%20a%20look%20at%20Microsoft%20Outlook%202007.%20We%20went%20through%20the%20process%20of%20setting%20up%20an%20email%20account%2C%20sending%2C%20receiving%2C%20forwarding%20and%20organising%20email%2C%20using%20the%20calendar%2C%20tasks%20and%20notes.%20Below%20are%20two%20sets%20of%20notes%20that%20" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Certificate%201%20-%20S2%20Week%2010&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-10" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Certificate%201%20-%20S2%20Week%2010&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-10" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/certificate-1-s2-week-10/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Digital Media &#8211; S2 Week 10</title>
		<link>http://www.mokonamodoki.com/digital-media-s2-week-10</link>
		<comments>http://www.mokonamodoki.com/digital-media-s2-week-10#comments</comments>
		<pubDate>Wed, 24 Sep 2008 23:01:42 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Digital Media]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT Foundation / 19040]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=457</guid>
		<description><![CDATA[Hi everyone. It was good to see most of you in class this week! This was our last session working on the photoshop tutorials. If you missed this lesson, you can download the tutorials below. I also handed out your project to work on for the remainder of the semester. You can download it below [...]]]></description>
			<content:encoded><![CDATA[<p>Hi everyone. It was good to see most of you in class this week! This was our last session working on the photoshop tutorials. If you missed this lesson, you can download the tutorials below. I also handed out your project to work on for the remainder of the semester. You can download it below if you missed out or lost your copy. </p>
<p>I will be more then happy to assist each of you with your project. I will also do small tutorial lessons to achieve certain affects with your photos.</p>
<p><strong>Remember: </strong>our next lesson is on the 15th of October 2008. This will only be a short 8 week term, so try not to miss any lessons.</p>
<p><a href="http://www.mokonamodoki.com/wp-content/uploads/2008/09/digital-media-s2-week-10-photoshop-tutorial.zip">Digital Media &#8211; S2 Week 10 &#8211; Photoshop Tutorial</a></p>
<p><a href="http://www.mokonamodoki.com/wp-content/uploads/2008/09/digital-media-project.doc">Digital Media &#8211; Project</a></p>
<p><strong>Remember</strong>; I put these links and resources here for your use. So if they are of no use to you, too hard to understand or you feel they are off topic, then please let me know, via any of the communication channels you have with me. I am more then happy to make changes, source better content or even create fresh content from scratch, just for you! You need only ask … nicely!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-10&amp;title=Digital%20Media%20-%20S2%20Week%2010&amp;bodytext=Hi%20everyone.%20It%20was%20good%20to%20see%20most%20of%20you%20in%20class%20this%20week%21%20This%20was%20our%20last%20session%20working%20on%20the%20photoshop%20tutorials.%20If%20you%20missed%20this%20lesson%2C%20you%20can%20download%20the%20tutorials%20below.%20I%20also%20handed%20out%20your%20project%20to%20work%20on%20for%20the%20remainder" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-10" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-10&amp;title=Digital%20Media%20-%20S2%20Week%2010&amp;notes=Hi%20everyone.%20It%20was%20good%20to%20see%20most%20of%20you%20in%20class%20this%20week%21%20This%20was%20our%20last%20session%20working%20on%20the%20photoshop%20tutorials.%20If%20you%20missed%20this%20lesson%2C%20you%20can%20download%20the%20tutorials%20below.%20I%20also%20handed%20out%20your%20project%20to%20work%20on%20for%20the%20remainder" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-10&amp;t=Digital%20Media%20-%20S2%20Week%2010" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-10&amp;title=Digital%20Media%20-%20S2%20Week%2010" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-10&amp;title=Digital%20Media%20-%20S2%20Week%2010&amp;annotation=Hi%20everyone.%20It%20was%20good%20to%20see%20most%20of%20you%20in%20class%20this%20week%21%20This%20was%20our%20last%20session%20working%20on%20the%20photoshop%20tutorials.%20If%20you%20missed%20this%20lesson%2C%20you%20can%20download%20the%20tutorials%20below.%20I%20also%20handed%20out%20your%20project%20to%20work%20on%20for%20the%20remainder" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Digital%20Media%20-%20S2%20Week%2010&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-10" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Digital%20Media%20-%20S2%20Week%2010&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-10" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/digital-media-s2-week-10/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Certificate 2 &#8211; S2 Week 10</title>
		<link>http://www.mokonamodoki.com/certificate-2-s2-week-10</link>
		<comments>http://www.mokonamodoki.com/certificate-2-s2-week-10#comments</comments>
		<pubDate>Wed, 24 Sep 2008 23:00:42 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Certificate 2]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT ICA20105 / 19001]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=455</guid>
		<description><![CDATA[Good Work! This week we finally finished up ICAI3021A &#8211; Connect Internal Hardware Components. This was a 7 task module. We will begin a new module next term. Keep up the good work!
Remember: Our next lesson is on the 15th October 2008.
[ad#adtype1]



Share This:


	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<p>Good Work! This week we finally finished up ICAI3021A &#8211; Connect Internal Hardware Components. This was a 7 task module. We will begin a new module next term. Keep up the good work!</p>
<p><strong>Remember:</strong> Our next lesson is on the 15th October 2008.</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-10&amp;title=Certificate%202%20-%20S2%20Week%2010&amp;bodytext=Good%20Work%21%20This%20week%20we%20finally%20finished%20up%C2%A0ICAI3021A%20-%20Connect%20Internal%20Hardware%20Components.%20This%20was%20a%207%20task%20module.%20We%20will%20begin%20a%20new%20module%20next%20term.%20Keep%20up%20the%20good%20work%21%0D%0A%0D%0ARemember%3A%C2%A0Our%20next%20lesson%20is%20on%20the%2015th%20October%202008.%0D%0A%5Bad%23adty" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-10" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-10&amp;title=Certificate%202%20-%20S2%20Week%2010&amp;notes=Good%20Work%21%20This%20week%20we%20finally%20finished%20up%C2%A0ICAI3021A%20-%20Connect%20Internal%20Hardware%20Components.%20This%20was%20a%207%20task%20module.%20We%20will%20begin%20a%20new%20module%20next%20term.%20Keep%20up%20the%20good%20work%21%0D%0A%0D%0ARemember%3A%C2%A0Our%20next%20lesson%20is%20on%20the%2015th%20October%202008.%0D%0A%5Bad%23adty" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-10&amp;t=Certificate%202%20-%20S2%20Week%2010" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-10&amp;title=Certificate%202%20-%20S2%20Week%2010" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-10&amp;title=Certificate%202%20-%20S2%20Week%2010&amp;annotation=Good%20Work%21%20This%20week%20we%20finally%20finished%20up%C2%A0ICAI3021A%20-%20Connect%20Internal%20Hardware%20Components.%20This%20was%20a%207%20task%20module.%20We%20will%20begin%20a%20new%20module%20next%20term.%20Keep%20up%20the%20good%20work%21%0D%0A%0D%0ARemember%3A%C2%A0Our%20next%20lesson%20is%20on%20the%2015th%20October%202008.%0D%0A%5Bad%23adty" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Certificate%202%20-%20S2%20Week%2010&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-10" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Certificate%202%20-%20S2%20Week%2010&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-10" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/certificate-2-s2-week-10/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Weekly Funny &#8211; The Day I Lost Control&#8230;</title>
		<link>http://www.mokonamodoki.com/the-weekly-funny</link>
		<comments>http://www.mokonamodoki.com/the-weekly-funny#comments</comments>
		<pubDate>Tue, 23 Sep 2008 23:00:53 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[TAFE]]></category>
		<category><![CDATA[The Weekly Funny]]></category>
		<category><![CDATA[Time of the Time]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=452</guid>
		<description><![CDATA[I remember it like it was yesterday&#8230;
 
 
 
 

Yes, I thought it was clever too!
Remember: If you have something funny that you would like to see featured in The Weekly Funny, submit it to me or tell me about it via one of the many communication channels you have with me.
[ad#adtype1]



Share This:


	
	
	
	
	
	
	
	


]]></description>
			<content:encoded><![CDATA[<p>I remember it like it was yesterday&#8230;</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p style="text-align: center;"><span id="more-452"></span><a href="http://www.mokonamodoki.com/wp-content/uploads/2008/09/no-ctrl-button.jpg"><img class="size-full wp-image-453 aligncenter" title="no-ctrl-button" src="http://www.mokonamodoki.com/wp-content/uploads/2008/09/no-ctrl-button.jpg" alt="" width="500" height="375" /></a></p>
<p style="text-align: left;">Yes, I thought it was clever too!</p>
<p style="text-align: left;"><strong>Remember:</strong> If you have something funny that you would like to see featured in The Weekly Funny, submit it to me or tell me about it via one of the many communication channels you have with me.</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny&amp;title=The%20Weekly%20Funny%20-%20The%20Day%20I%20Lost%20Control...&amp;bodytext=I%20remember%20it%20like%20it%20was%20yesterday...%0D%0A%0D%0A%C2%A0%0D%0A%0D%0A%C2%A0%0D%0A%0D%0A%C2%A0%0D%0A%0D%0A%C2%A0%0D%0A%0D%0AYes%2C%20I%20thought%20it%20was%20clever%20too%21%0D%0ARemember%3A%C2%A0If%20you%20have%20something%20funny%20that%20you%20would%20like%20to%20see%20featured%20in%20The%20Weekly%20Funny%2C%20submit%20it%20to%20me%20or%20tell%20me%20about%20it%20via%20one%20of%20the%20ma" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny&amp;title=The%20Weekly%20Funny%20-%20The%20Day%20I%20Lost%20Control...&amp;notes=I%20remember%20it%20like%20it%20was%20yesterday...%0D%0A%0D%0A%C2%A0%0D%0A%0D%0A%C2%A0%0D%0A%0D%0A%C2%A0%0D%0A%0D%0A%C2%A0%0D%0A%0D%0AYes%2C%20I%20thought%20it%20was%20clever%20too%21%0D%0ARemember%3A%C2%A0If%20you%20have%20something%20funny%20that%20you%20would%20like%20to%20see%20featured%20in%20The%20Weekly%20Funny%2C%20submit%20it%20to%20me%20or%20tell%20me%20about%20it%20via%20one%20of%20the%20ma" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny&amp;t=The%20Weekly%20Funny%20-%20The%20Day%20I%20Lost%20Control..." title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny&amp;title=The%20Weekly%20Funny%20-%20The%20Day%20I%20Lost%20Control..." title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny&amp;title=The%20Weekly%20Funny%20-%20The%20Day%20I%20Lost%20Control...&amp;annotation=I%20remember%20it%20like%20it%20was%20yesterday...%0D%0A%0D%0A%C2%A0%0D%0A%0D%0A%C2%A0%0D%0A%0D%0A%C2%A0%0D%0A%0D%0A%C2%A0%0D%0A%0D%0AYes%2C%20I%20thought%20it%20was%20clever%20too%21%0D%0ARemember%3A%C2%A0If%20you%20have%20something%20funny%20that%20you%20would%20like%20to%20see%20featured%20in%20The%20Weekly%20Funny%2C%20submit%20it%20to%20me%20or%20tell%20me%20about%20it%20via%20one%20of%20the%20ma" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=The%20Weekly%20Funny%20-%20The%20Day%20I%20Lost%20Control...&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=The%20Weekly%20Funny%20-%20The%20Day%20I%20Lost%20Control...&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/the-weekly-funny/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CAFC &#8211; S2 Week 9</title>
		<link>http://www.mokonamodoki.com/cafc-s2-week-9</link>
		<comments>http://www.mokonamodoki.com/cafc-s2-week-9#comments</comments>
		<pubDate>Thu, 18 Sep 2008 23:01:10 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[CAFCA]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT Computers a First Course / 3771]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=447</guid>
		<description><![CDATA[Actually Posted on September 20th 2008
Hi everyone. This week we took a step back from the internet and new technologies to start learning how to use a new program called Microsoft Office Word 2007 (commonly known as Word 2007). I handed out a fairly heavy tutorial, that we will be working through in next few [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: right;"><em>Actually Posted on September 20th 2008</em></p>
<p style="text-align: left;">Hi everyone. This week we took a step back from the internet and new technologies to start learning how to use a new program called Microsoft Office Word 2007 (commonly known as Word 2007). I handed out a fairly heavy tutorial, that we will be working through in next few sessions. If you missed this weeks lesson, you can download the lesson notes below. </p>
<p style="text-align: left;"><a href="http://www.mokonamodoki.com/wp-content/uploads/2008/09/cafc-s2-week-9.doc">CAFC &#8211; S2 Week 9 &#8211; Lesson Notes</a></p>
<p style="text-align: left;">If you don&#8217;t have Office 2007 or Word 2007, you can purchase the entire Microsoft Office 2007 suite, as a TAFE student, through Microsofts Educational system called &#8220;It&#8217;s Not Cheating&#8221;. At $75 for a life time licence (compared to $1200+ from a retail outlet), it&#8217;s a pretty good deal some might say!</p>
<p style="text-align: left;"><a title="http://www.itsnotcheating.com.au" href="http://www.itsnotcheating.com.au" target="_blank">It&#8217;s Not Cheating</a></p>
<p style="text-align: left;">For those of you not interested in purchasing Microsoft Office 2007, or Word 2007, you may be interested in the following website link. It is a tutorial guide, similiar to the lesson notes, but for Word XP/2002/2003.</p>
<p style="text-align: left;"><a title="http://www.baycongroup.com/word.htm" href="http://www.baycongroup.com/word.htm" target="_blank">Word XP / 2002 / 2003 Tutorial</a></p>
<p style="text-align: left;">See you next lesson!</p>
<p style="text-align: left;"><strong>Remember</strong>; I put these links and resources here for your use. So if they are of no use to you, too hard to understand or you feel they are off topic, then please let me know, via any of the communication channels you have with me. I am more then happy to make changes, source better content or even create fresh content from scratch, just for you! You need only ask … nicely!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-9&amp;title=CAFC%20-%20S2%20Week%209&amp;bodytext=Actually%20Posted%20on%20September%2020th%202008%0D%0AHi%20everyone.%20This%20week%20we%20took%20a%20step%20back%20from%20the%20internet%20and%20new%20technologies%20to%20start%20learning%20how%20to%20use%20a%20new%20program%20called%20Microsoft%20Office%20Word%202007%20%28commonly%20known%20as%20Word%202007%29.%20I%20handed%20out%20a%20fairl" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-9" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-9&amp;title=CAFC%20-%20S2%20Week%209&amp;notes=Actually%20Posted%20on%20September%2020th%202008%0D%0AHi%20everyone.%20This%20week%20we%20took%20a%20step%20back%20from%20the%20internet%20and%20new%20technologies%20to%20start%20learning%20how%20to%20use%20a%20new%20program%20called%20Microsoft%20Office%20Word%202007%20%28commonly%20known%20as%20Word%202007%29.%20I%20handed%20out%20a%20fairl" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-9&amp;t=CAFC%20-%20S2%20Week%209" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-9&amp;title=CAFC%20-%20S2%20Week%209" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-9&amp;title=CAFC%20-%20S2%20Week%209&amp;annotation=Actually%20Posted%20on%20September%2020th%202008%0D%0AHi%20everyone.%20This%20week%20we%20took%20a%20step%20back%20from%20the%20internet%20and%20new%20technologies%20to%20start%20learning%20how%20to%20use%20a%20new%20program%20called%20Microsoft%20Office%20Word%202007%20%28commonly%20known%20as%20Word%202007%29.%20I%20handed%20out%20a%20fairl" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=CAFC%20-%20S2%20Week%209&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-9" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=CAFC%20-%20S2%20Week%209&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-9" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/cafc-s2-week-9/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Certificate 1 &#8211; S2 Week 9</title>
		<link>http://www.mokonamodoki.com/certificate-1-s2-week-9</link>
		<comments>http://www.mokonamodoki.com/certificate-1-s2-week-9#comments</comments>
		<pubDate>Thu, 18 Sep 2008 23:00:57 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Certificate 1]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT ICA10105 / 19000]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=444</guid>
		<description><![CDATA[Hi everyone. This week we did another of those all important quizes. You&#8217;ve completed three now and have only one more to go! Next week is our last week before the holidays. Please attend as I will be covering the use of a Personal Information Manager (PIM). We will be using Microsoft Office Outlook 2007. [...]]]></description>
			<content:encoded><![CDATA[<p>Hi everyone. This week we did another of those all important quizes. You&#8217;ve completed three now and have only one more to go! Next week is our last week before the holidays. Please attend as I will be covering the use of a Personal Information Manager (PIM). We will be using Microsoft Office Outlook 2007. I&#8217;ll have lesson notes as per usual. This session will cover the module: ICAU1215A Use a Personal Productivity Tool.</p>
<p>Missed the quiz? Download a copy of it <a href="http://www.mokonamodoki.com/wp-content/uploads/2008/09/certificate-1-week-9-s2-term-3-quiz.doc">here</a>, and email it to me as soon as possible. Resubmissions from students who completed the quiz in class will not be accepted.</p>
<p>There will not be a follow video tutorial for this session.</p>
<p><strong>Remember</strong>; I put these links and resources here for your use. So if they are of no use to you, too hard to understand or you feel they are off topic, then please let me know, via any of the communication channels you have with me. I am more then happy to make changes, source better content or even create fresh content from scratch, just for you! You need only ask … nicely!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-9&amp;title=Certificate%201%20-%20S2%20Week%209&amp;bodytext=Hi%20everyone.%20This%20week%20we%20did%20another%20of%20those%20all%20important%20quizes.%20You%27ve%20completed%20three%20now%20and%20have%20only%20one%20more%20to%20go%21%20Next%20week%20is%20our%20last%20week%20before%20the%20holidays.%20Please%20attend%20as%20I%20will%20be%20covering%20the%20use%20of%20a%20Personal%20Information%20Manage" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-9" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-9&amp;title=Certificate%201%20-%20S2%20Week%209&amp;notes=Hi%20everyone.%20This%20week%20we%20did%20another%20of%20those%20all%20important%20quizes.%20You%27ve%20completed%20three%20now%20and%20have%20only%20one%20more%20to%20go%21%20Next%20week%20is%20our%20last%20week%20before%20the%20holidays.%20Please%20attend%20as%20I%20will%20be%20covering%20the%20use%20of%20a%20Personal%20Information%20Manage" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-9&amp;t=Certificate%201%20-%20S2%20Week%209" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-9&amp;title=Certificate%201%20-%20S2%20Week%209" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-9&amp;title=Certificate%201%20-%20S2%20Week%209&amp;annotation=Hi%20everyone.%20This%20week%20we%20did%20another%20of%20those%20all%20important%20quizes.%20You%27ve%20completed%20three%20now%20and%20have%20only%20one%20more%20to%20go%21%20Next%20week%20is%20our%20last%20week%20before%20the%20holidays.%20Please%20attend%20as%20I%20will%20be%20covering%20the%20use%20of%20a%20Personal%20Information%20Manage" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Certificate%201%20-%20S2%20Week%209&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-9" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Certificate%201%20-%20S2%20Week%209&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-9" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/certificate-1-s2-week-9/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Digital Media &#8211; S2 Week 9</title>
		<link>http://www.mokonamodoki.com/digital-media-s2-week-9</link>
		<comments>http://www.mokonamodoki.com/digital-media-s2-week-9#comments</comments>
		<pubDate>Wed, 17 Sep 2008 23:01:31 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Digital Media]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT Foundation / 19040]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=435</guid>
		<description><![CDATA[Hi everyone. This week, all of one poor person came to class! Where were the rest of you! I had one phone call from one student, and nothing from anyone else! Well, as such there is nothing to report I guess! I can&#8217;t hold the class with only student, so that person had to go [...]]]></description>
			<content:encoded><![CDATA[<p>Hi everyone. This week, all of one poor person came to class! Where were the rest of you! I had one phone call from one student, and nothing from anyone else! Well, as such there is nothing to report I guess! I can&#8217;t hold the class with only student, so that person had to go home. If you all had been here, you would be working through the tutorial lessons I have given out previously. For those of you that do read these articles, please remember to bring along your camera and all it&#8217;s attachments next week, and if possible, remind your fellow class mates as well!</p>
<p><a href="http://www.mokonamodoki.com/wp-content/uploads/2008/09/digital-media-s2-week-9-photoshop-tutorial.zip">Digital Media &#8211; S2  Week 9 &#8211; Tutorial Notes</a></p>
<p>There will not be a follow video tutorial for this session.</p>
<p><strong>Remember</strong>; I put these links and resources here for your use. So if they are of no use to you, too hard to understand or you feel they are off topic, then please let me know, via any of the communication channels you have with me. I am more then happy to make changes, source better content or even create fresh content from scratch, just for you! You need only ask … nicely!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-9&amp;title=Digital%20Media%20-%20S2%20Week%209&amp;bodytext=Hi%20everyone.%20This%20week%2C%20all%20of%20one%20poor%20person%20came%20to%20class%21%20Where%20were%20the%20rest%20of%20you%21%20I%20had%20one%20phone%20call%20from%20one%20student%2C%20and%20nothing%20from%20anyone%20else%21%20Well%2C%20as%20such%20there%20is%20nothing%20to%20report%20I%20guess%21%20I%20can%27t%20hold%20the%20class%20with%20only%20student%2C" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-9" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-9&amp;title=Digital%20Media%20-%20S2%20Week%209&amp;notes=Hi%20everyone.%20This%20week%2C%20all%20of%20one%20poor%20person%20came%20to%20class%21%20Where%20were%20the%20rest%20of%20you%21%20I%20had%20one%20phone%20call%20from%20one%20student%2C%20and%20nothing%20from%20anyone%20else%21%20Well%2C%20as%20such%20there%20is%20nothing%20to%20report%20I%20guess%21%20I%20can%27t%20hold%20the%20class%20with%20only%20student%2C" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-9&amp;t=Digital%20Media%20-%20S2%20Week%209" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-9&amp;title=Digital%20Media%20-%20S2%20Week%209" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-9&amp;title=Digital%20Media%20-%20S2%20Week%209&amp;annotation=Hi%20everyone.%20This%20week%2C%20all%20of%20one%20poor%20person%20came%20to%20class%21%20Where%20were%20the%20rest%20of%20you%21%20I%20had%20one%20phone%20call%20from%20one%20student%2C%20and%20nothing%20from%20anyone%20else%21%20Well%2C%20as%20such%20there%20is%20nothing%20to%20report%20I%20guess%21%20I%20can%27t%20hold%20the%20class%20with%20only%20student%2C" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Digital%20Media%20-%20S2%20Week%209&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-9" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Digital%20Media%20-%20S2%20Week%209&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fdigital-media-s2-week-9" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/digital-media-s2-week-9/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Certificate 2 &#8211; S2 Week 9</title>
		<link>http://www.mokonamodoki.com/certificate-2-s2-week-9</link>
		<comments>http://www.mokonamodoki.com/certificate-2-s2-week-9#comments</comments>
		<pubDate>Wed, 17 Sep 2008 23:00:13 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Certificate 2]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT ICA20105 / 19001]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=433</guid>
		<description><![CDATA[This week we completed ICAI3021A &#8211; Connect Internal Hardware Components &#8211; Task 5, and ICAI3021A &#8211; Connect Internal Hardware Components &#8211; Task6! This is good progress, and gives us Task 7 to work on and complete next lesson. This will also bring us back up to where we should be progress wise.  Excellent work!
[ad#adtype1]



Share [...]]]></description>
			<content:encoded><![CDATA[<p>This week we completed ICAI3021A &#8211; Connect Internal Hardware Components &#8211; Task 5, and ICAI3021A &#8211; Connect Internal Hardware Components &#8211; Task6! This is good progress, and gives us Task 7 to work on and complete next lesson. This will also bring us back up to where we should be progress wise.  Excellent work!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-9&amp;title=Certificate%202%20-%20S2%20Week%209&amp;bodytext=This%20week%20we%20completed%20ICAI3021A%20-%20Connect%20Internal%20Hardware%20Components%20-%20Task%205%2C%20and%20ICAI3021A%20-%20Connect%20Internal%20Hardware%20Components%20-%20Task6%21%20This%20is%20good%20progress%2C%20and%20gives%20us%20Task%207%20to%20work%20on%20and%20complete%20next%20lesson.%20This%20will%20also%20bring%20us%20ba" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-9" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-9&amp;title=Certificate%202%20-%20S2%20Week%209&amp;notes=This%20week%20we%20completed%20ICAI3021A%20-%20Connect%20Internal%20Hardware%20Components%20-%20Task%205%2C%20and%20ICAI3021A%20-%20Connect%20Internal%20Hardware%20Components%20-%20Task6%21%20This%20is%20good%20progress%2C%20and%20gives%20us%20Task%207%20to%20work%20on%20and%20complete%20next%20lesson.%20This%20will%20also%20bring%20us%20ba" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-9&amp;t=Certificate%202%20-%20S2%20Week%209" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-9&amp;title=Certificate%202%20-%20S2%20Week%209" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-9&amp;title=Certificate%202%20-%20S2%20Week%209&amp;annotation=This%20week%20we%20completed%20ICAI3021A%20-%20Connect%20Internal%20Hardware%20Components%20-%20Task%205%2C%20and%20ICAI3021A%20-%20Connect%20Internal%20Hardware%20Components%20-%20Task6%21%20This%20is%20good%20progress%2C%20and%20gives%20us%20Task%207%20to%20work%20on%20and%20complete%20next%20lesson.%20This%20will%20also%20bring%20us%20ba" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Certificate%202%20-%20S2%20Week%209&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-9" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Certificate%202%20-%20S2%20Week%209&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-2-s2-week-9" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/certificate-2-s2-week-9/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Weekly Funny &#8211; Best Irish Joke 06</title>
		<link>http://www.mokonamodoki.com/the-weekly-funny-best-irish-06</link>
		<comments>http://www.mokonamodoki.com/the-weekly-funny-best-irish-06#comments</comments>
		<pubDate>Tue, 16 Sep 2008 23:00:05 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[TAFE]]></category>
		<category><![CDATA[The Weekly Funny]]></category>
		<category><![CDATA[Time of the Time]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=429</guid>
		<description><![CDATA[Another via email. Apparently this joke was voted Best Joke in Ireland 2006. You be the judge:
John O&#8217;Reilly hoisted his beer and said, &#8216;Here&#8217;s to spending the rest of me life!, between the legs of me wife!&#8217;
That won him the top prize at the pub for the best toast of the night!
He went home and [...]]]></description>
			<content:encoded><![CDATA[<p>Another via email. Apparently this joke was voted Best Joke in Ireland 2006. You be the judge:</p>
<p><em>John O&#8217;Reilly hoisted his beer and said, &#8216;Here&#8217;s to spending the rest of me life!, between the legs of me wife!&#8217;</p>
<p>That won him the top prize at the pub for the best toast of the night!</p>
<p>He went home and told his wife, Mary, &#8216;I won the prize for the Best toast of the night&#8217; She said, &#8216;Aye, did ye now. And what was your toast?&#8217; John said, &#8216;Here&#8217;s to spending the rest of me life, sitting in church beside me wife.&#8217; &#8216;Oh, that is very nice indeed, John!&#8217; Mary said.</p>
<p>The next day, Mary ran into one of John&#8217;s drinking buddies on the street corner.</p>
<p>The man chuckled leeringly and said, &#8216;John won the prize the other night at the pub with a toast about you, Mary.&#8217; She said,  &#8216;Aye, he told me, and I was a bit surprised myself.  You know, he&#8217;s only been there twice in the last four years. Once he fell asleep, and the other time I had to pull him by the ears to make him come.&#8217;</em></p>
<p>Ok, so it&#8217;s a little cruder than my usual round up, but I thought it was quite funny all the same!</p>
<p><strong>Remember:</strong> If you have something funny that you would like to see featured in The Weekly Funny, submit it to me or tell me about it via one of the many communication channels you have with me.</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-best-irish-06&amp;title=The%20Weekly%20Funny%20-%20Best%20Irish%20Joke%2006&amp;bodytext=Another%20via%20email.%20Apparently%20this%20joke%20was%20voted%20Best%20Joke%20in%20Ireland%202006.%20You%20be%20the%20judge%3A%0D%0A%0D%0AJohn%20O%27Reilly%20hoisted%20his%20beer%20and%20said%2C%20%27Here%27s%20to%20spending%20the%20rest%20of%20me%20life%21%2C%20between%20the%20legs%20of%20me%20wife%21%27%0D%0A%0D%0AThat%20won%20him%20the%20top%20prize%20at%20the%20pu" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-best-irish-06" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-best-irish-06&amp;title=The%20Weekly%20Funny%20-%20Best%20Irish%20Joke%2006&amp;notes=Another%20via%20email.%20Apparently%20this%20joke%20was%20voted%20Best%20Joke%20in%20Ireland%202006.%20You%20be%20the%20judge%3A%0D%0A%0D%0AJohn%20O%27Reilly%20hoisted%20his%20beer%20and%20said%2C%20%27Here%27s%20to%20spending%20the%20rest%20of%20me%20life%21%2C%20between%20the%20legs%20of%20me%20wife%21%27%0D%0A%0D%0AThat%20won%20him%20the%20top%20prize%20at%20the%20pu" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-best-irish-06&amp;t=The%20Weekly%20Funny%20-%20Best%20Irish%20Joke%2006" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-best-irish-06&amp;title=The%20Weekly%20Funny%20-%20Best%20Irish%20Joke%2006" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-best-irish-06&amp;title=The%20Weekly%20Funny%20-%20Best%20Irish%20Joke%2006&amp;annotation=Another%20via%20email.%20Apparently%20this%20joke%20was%20voted%20Best%20Joke%20in%20Ireland%202006.%20You%20be%20the%20judge%3A%0D%0A%0D%0AJohn%20O%27Reilly%20hoisted%20his%20beer%20and%20said%2C%20%27Here%27s%20to%20spending%20the%20rest%20of%20me%20life%21%2C%20between%20the%20legs%20of%20me%20wife%21%27%0D%0A%0D%0AThat%20won%20him%20the%20top%20prize%20at%20the%20pu" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=The%20Weekly%20Funny%20-%20Best%20Irish%20Joke%2006&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-best-irish-06" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=The%20Weekly%20Funny%20-%20Best%20Irish%20Joke%2006&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fthe-weekly-funny-best-irish-06" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/the-weekly-funny-best-irish-06/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CAFC &#8211; S2 Week 8</title>
		<link>http://www.mokonamodoki.com/cafc-s2-week-8</link>
		<comments>http://www.mokonamodoki.com/cafc-s2-week-8#comments</comments>
		<pubDate>Thu, 11 Sep 2008 23:01:52 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[CAFCA]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT Computers a First Course / 3771]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=427</guid>
		<description><![CDATA[Actually Posted on 17th September 2008
Hi everyone. This week, I think I scared and possibly even horrified some of you, when I informed you all about the many dangers and troubles of the internet. We had quite a discussion about hackers, spyware and viruses. After some searching, rather then provide you with links below, I&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: right;"><em>Actually Posted on 17th September 2008</em></p>
<p>Hi everyone. This week, I think I scared and possibly even horrified some of you, when I informed you all about the many dangers and troubles of the internet. We had quite a discussion about hackers, spyware and viruses. After some searching, rather then provide you with links below, I&#8217;ll provide you with a Google Search Result List, of which you can do you own reading from, in regards to the dangers of the internet.</p>
<p><a title="http://www.google.com.au/search?hl=en&amp;q=Dangers+of+the+Internet&amp;btnG=Google+Search&amp;meta=&amp;safe=active" href="http://www.google.com.au/search?hl=en&amp;q=Dangers+of+the+Internet&amp;btnG=Google+Search&amp;meta=&amp;safe=active" target="_blank">Dangers of the Internet Search</a></p>
<p><a title="http://www.google.com.au/search?hl=en&amp;safe=active&amp;q=What+are+Hackers&amp;btnG=Search&amp;meta=" href="http://www.google.com.au/search?hl=en&amp;safe=active&amp;q=What+are+Hackers&amp;btnG=Search&amp;meta=" target="_blank">What Are Hackers Search</a></p>
<p><a title="http://www.google.com.au/search?hl=en&amp;safe=active&amp;q=What+Are+Viruses&amp;btnG=Search&amp;meta=" href="http://www.google.com.au/search?hl=en&amp;safe=active&amp;q=What+Are+Viruses&amp;btnG=Search&amp;meta=" target="_blank">What Are Viruses Search</a></p>
<p>I also provided you with some links for some useful software that you can download and install onto your own PC&#8217;s, to protect you from the dangers that lurk out there on the internet. Some of you may already have these programs.</p>
<p><a title="http://antivirus.comodo.com" href="http://antivirus.comodo.com" target="_blank">Comodo Antivirus</a></p>
<p><a title="http://personalfirewall.comodo.com" href="http://personalfirewall.comodo.com" target="_blank">Comodo Pro Firewall</a></p>
<p><a title="http://www.microsoft.com/defender" href="http://www.microsoft.com/defender" target="_blank">Windows Defender</a></p>
<p><a title="http://www.safer-networking.org/en/index.html" href="http://www.safer-networking.org/en/index.html" target="_blank">Spybot Search and Destroy</a></p>
<p><a title="http://www.lavasoft.com" href="http://www.lavasoft.com" target="_blank">Lavasoft Ad-Aware</a></p>
<p>Just click any of the links above to be taken to their respective websites.</p>
<p>There were no handouts for this lesson.</p>
<p>See you next lesson!</p>
<p><strong>Remember</strong>; I put these links and resources here for your use. So if they are of no use to you, too hard to understand or you feel they are off topic, then please let me know, via any of the communication channels you have with me. I am more then happy to make changes, source better content or even create fresh content from scratch, just for you! You need only ask … nicely!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-8&amp;title=CAFC%20-%20S2%20Week%208&amp;bodytext=Actually%20Posted%20on%2017th%20September%202008%0D%0A%0D%0AHi%20everyone.%20This%20week%2C%20I%20think%20I%20scared%20and%20possibly%20even%20horrified%20some%20of%20you%2C%20when%20I%20informed%20you%20all%20about%20the%20many%20dangers%20and%20troubles%20of%20the%20internet.%20We%20had%20quite%20a%20discussion%20about%20hackers%2C%20spyware%20" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-8" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-8&amp;title=CAFC%20-%20S2%20Week%208&amp;notes=Actually%20Posted%20on%2017th%20September%202008%0D%0A%0D%0AHi%20everyone.%20This%20week%2C%20I%20think%20I%20scared%20and%20possibly%20even%20horrified%20some%20of%20you%2C%20when%20I%20informed%20you%20all%20about%20the%20many%20dangers%20and%20troubles%20of%20the%20internet.%20We%20had%20quite%20a%20discussion%20about%20hackers%2C%20spyware%20" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-8&amp;t=CAFC%20-%20S2%20Week%208" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-8&amp;title=CAFC%20-%20S2%20Week%208" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-8&amp;title=CAFC%20-%20S2%20Week%208&amp;annotation=Actually%20Posted%20on%2017th%20September%202008%0D%0A%0D%0AHi%20everyone.%20This%20week%2C%20I%20think%20I%20scared%20and%20possibly%20even%20horrified%20some%20of%20you%2C%20when%20I%20informed%20you%20all%20about%20the%20many%20dangers%20and%20troubles%20of%20the%20internet.%20We%20had%20quite%20a%20discussion%20about%20hackers%2C%20spyware%20" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=CAFC%20-%20S2%20Week%208&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-8" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=CAFC%20-%20S2%20Week%208&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcafc-s2-week-8" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/cafc-s2-week-8/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Certificate 1 &#8211; S2 Week 8</title>
		<link>http://www.mokonamodoki.com/certificate-1-s2-week-8</link>
		<comments>http://www.mokonamodoki.com/certificate-1-s2-week-8#comments</comments>
		<pubDate>Thu, 11 Sep 2008 23:00:22 +0000</pubDate>
		<dc:creator>Quin Rose</dc:creator>
				<category><![CDATA[Certificate 1]]></category>
		<category><![CDATA[TAFE]]></category>
		<category><![CDATA[TAFE IT ICA10105 / 19000]]></category>

		<guid isPermaLink="false">http://www.mokonamodoki.com/?p=425</guid>
		<description><![CDATA[Actually Posted on 17th September 2008
Hi everyone. This week had a revision session, covering the areas and subjects we have covered this term (Microsoft Excel and Application Integration), in preparation for the quiz next week. Everything we covered today will be in the quiz, plus a little extra! There were no additional notes or resources [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: right;"><em>Actually Posted on 17th September 2008</em></p>
<p>Hi everyone. This week had a revision session, covering the areas and subjects we have covered this term (Microsoft Excel and Application Integration), in preparation for the quiz next week. Everything we covered today will be in the quiz, plus a little extra! There were no additional notes or resources handed out this session. Remember, you can bring all your notes and print outs to the quiz next week if you wish.</p>
<p>If you have missed any of the previous notes and resources, or would like another copy for whatever reason, you can find the links to them in previous articles. <a title="http://www.mokonamodoki.com/mokidoki/tafe/tafe-it-ica10105-19000/certificate-1" href="http://www.mokonamodoki.com/mokidoki/tafe/tafe-it-ica10105-19000/certificate-1" target="_self">Here</a> is a good place to start.</p>
<p>There will not be a follow video tutorial for this session.</p>
<p><strong>Remember</strong>; I put these links and resources here for your use. So if they are of no use to you, too hard to understand or you feel they are off topic, then please let me know, via any of the communication channels you have with me. I am more then happy to make changes, source better content or even create fresh content from scratch, just for you! You need only ask … nicely!</p>
<p style="text-align: center;">[ad#adtype1]</p>



Share This:


	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-8&amp;title=Certificate%201%20-%20S2%20Week%208&amp;bodytext=Actually%20Posted%20on%2017th%20September%202008%0D%0A%0D%0AHi%20everyone.%20This%20week%20had%20a%20revision%20session%2C%20covering%20the%20areas%20and%20subjects%20we%20have%20covered%20this%20term%20%28Microsoft%20Excel%20and%20Application%20Integration%29%2C%20in%20preparation%20for%20the%20quiz%20next%20week.%20Everything%20we%20cov" title="Digg"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-8" title="Sphinn"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-8&amp;title=Certificate%201%20-%20S2%20Week%208&amp;notes=Actually%20Posted%20on%2017th%20September%202008%0D%0A%0D%0AHi%20everyone.%20This%20week%20had%20a%20revision%20session%2C%20covering%20the%20areas%20and%20subjects%20we%20have%20covered%20this%20term%20%28Microsoft%20Excel%20and%20Application%20Integration%29%2C%20in%20preparation%20for%20the%20quiz%20next%20week.%20Everything%20we%20cov" title="del.icio.us"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-8&amp;t=Certificate%201%20-%20S2%20Week%208" title="Facebook"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-8&amp;title=Certificate%201%20-%20S2%20Week%208" title="Mixx"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-8&amp;title=Certificate%201%20-%20S2%20Week%208&amp;annotation=Actually%20Posted%20on%2017th%20September%202008%0D%0A%0D%0AHi%20everyone.%20This%20week%20had%20a%20revision%20session%2C%20covering%20the%20areas%20and%20subjects%20we%20have%20covered%20this%20term%20%28Microsoft%20Excel%20and%20Application%20Integration%29%2C%20in%20preparation%20for%20the%20quiz%20next%20week.%20Everything%20we%20cov" title="Google Bookmarks"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="mailto:?subject=Certificate%201%20-%20S2%20Week%208&amp;body=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-8" title="email"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://slashdot.org/bookmark.pl?title=Certificate%201%20-%20S2%20Week%208&amp;url=http%3A%2F%2Fwww.mokonamodoki.com%2Fcertificate-1-s2-week-8" title="Slashdot"><img src="http://www.mokonamodoki.com/wp-content/plugins/sociable/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.mokonamodoki.com/certificate-1-s2-week-8/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
