<?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>Jigsaw Boys &#187; tutorial</title>
	<atom:link href="http://www.jigsawboys.com/tag/tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jigsawboys.com</link>
	<description>Security, Network and Computer Tech Tip Database!</description>
	<lastBuildDate>Wed, 17 Aug 2011 22:59:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>How to fetch Last Record in Subsonic</title>
		<link>http://www.jigsawboys.com/2009/12/22/how-to-fetch-last-record-in-subsonic/</link>
		<comments>http://www.jigsawboys.com/2009/12/22/how-to-fetch-last-record-in-subsonic/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 06:18:22 +0000</pubDate>
		<dc:creator>Jamsi</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[activerecord]]></category>
		<category><![CDATA[linq]]></category>
		<category><![CDATA[subsonic]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.jigsawboys.com/?p=291</guid>
		<description><![CDATA[Is it just me or is Subsonic the topic of discussion right now? I had a need to retrieve the last ID that had been generated in a table; that being, the last &#8220;auto increment&#8221; ID of a table. The following example worked a charm using Subsonic and activerecord. As you can see, it creates [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Is it just me or is Subsonic the topic of discussion right now? <img src='http://www.jigsawboys.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
I had a need to retrieve the last ID that had been generated in a table; that being, the last &#8220;auto increment&#8221; ID of a table.</p>
<p>The following example worked a charm using Subsonic and activerecord.</p>
<pre class="brush: csharp; title: ; notranslate">
var fetch_ref_id = contract.All().OrderByDescending(c =&gt; c.id).Take(1).ToList();
if (iRef_new_id != null)
{
     iRef_new_id = fetch_ref_id[0].id;
}
</pre>
<p>As you can see, it creates a new list (noted by the ToList()) by connecting to the table &#8220;category&#8221;, it then selects all results (All()) and then orders the list by Descending and finally, the take(1) simply takes the top record.</p>
<p>I then whack the result (if you have a column called id) into a integer.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jigsawboys.com/2009/12/22/how-to-fetch-last-record-in-subsonic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 of the Best CSS Tutorials</title>
		<link>http://www.jigsawboys.com/2009/11/26/3-of-the-best-css-tutorials/</link>
		<comments>http://www.jigsawboys.com/2009/11/26/3-of-the-best-css-tutorials/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 12:53:43 +0000</pubDate>
		<dc:creator>Jamsi</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.jigsawboys.com/?p=284</guid>
		<description><![CDATA[So I used to be one of those old &#8220;tables are still cool for layouts&#8221; kinda guys and proceeded to use tables for just about anything web related that I touched. But there came a moment where I decided .. you know what, everyone else is raving on about this CSS layout business, so I [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>So I used to be one of those old &#8220;tables are still cool for layouts&#8221; kinda guys and proceeded to use tables for just about anything web related that I touched. But there came a moment where I decided .. you know what, everyone else is raving on about this CSS layout business, so I set out to see what could be done. Now I came across quite a few tutorials on Google; and I wanted to outline the best ones that I came across!</p>
<p><strong>1) <a href="http://www.subcide.com/tutorials/csslayout/index.aspx">Creating a CSS layout from scratch</a></strong><br />
This is pretty much my favourite CSS tutorial .. which pretty much takes the scenario of cutting and slicing a web design into an actual functional website using CSS.</p>
<p>2) <a href="http://www.killersites.com/Tutorials/CSS_tutorial/index.php">CSS Template Layout</a><br />
This tutorial goes into a bit of detail and lacks images along the way (to break up the text), however everything just made sense whilst reading this tutorial.</p>
<p>3) <a href="http://www.csstutorial.net/css_tutorial_part2.php">CSS Tutorial: Layout a page using CSS</a><br />
A little more detailed than the others, this tutorial aims to keep it simple; but yet goes into detail about each element and tag reference. The thing to remember, is that learning CSS is like learning to ride a bike &#8211; once you know it, it&#8217;ll stick &#8211; trust me.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jigsawboys.com/2009/11/26/3-of-the-best-css-tutorials/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Ultimate Acer Aspire One Linux Tweak Guide</title>
		<link>http://www.jigsawboys.com/2008/12/15/the-ultimate-acer-aspire-one-linux-tweak-guide/</link>
		<comments>http://www.jigsawboys.com/2008/12/15/the-ultimate-acer-aspire-one-linux-tweak-guide/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 10:36:33 +0000</pubDate>
		<dc:creator>Jamsi</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Acer aspire one]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[tweaks]]></category>

		<guid isPermaLink="false">http://www.jigsawboys.com/?p=233</guid>
		<description><![CDATA[So I managed to get my hands on one of these sexy little device and I must say, I&#8217;m damn impressed. What&#8217;s rather amusing is holding up the laptop in its leather case to a few friends and saying; what do you think this is? By far the most amusing comment so far was &#8220;Is [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>So I managed to get my hands on one of these sexy little device and I must say, I&#8217;m damn impressed. What&#8217;s rather amusing is holding up the laptop in its leather case to a few friends and saying; what do you think this is? By far the most amusing comment so far was &#8220;Is it a mans handbag?&#8221;.</p>
<p>Being the Linux fanboy that I am, I set to work tweaking my Acer Aspire One, which by default comes with the Linux distro Linplus. My first reaction was to <em>be gone</em> with the default OS and whack Ubuntu on, however I came to love Linplus and its fast bootup time. And by fast .. I mean fast. If I wanted to find out the weather, I could probably boot this laptop and hit weather.smh.com.au faster than my Blackberry could load the site <img src='http://www.jigsawboys.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>One of the first things you&#8217;ll need to do is get your Linplus working like an actual Linux operating system, and we can do this by turning on the advanced menu, which allows you to right click the desktop for a traditional menu.</p>
<p>1) Hit Alt + F12 and type <strong>xfce-setting-show</strong><br />
2) Find Desktop preferences, then the behavior tab and click &#8220;Show desktop menu on right-click&#8221;.</p>
<h3>Some interesting and useful Tweaks</h3>
<p><strong>Installing Skype on the Acer Aspire One</strong><br />
One of the reasons why I wanted one of these tiny notebooks was for traveling purposes. And what better way to communicate with home than over Skype.</p>
<p>1) From the advanced menu (right click desktop) click terminal<br />
2) Type: sudo yum install skype</p>
<p>This will install Skype and the necessary dependencies.<br />
To add Skype to the infamous Acer Aspire Linplus background menu .. do the following</p>
<p>1) (Hopefully you&#8217;ve enabled the advanced menu as per above) Right click the deskop, select command prompt<br />
2) Type: mousepad /home/user/.config/xfce4/desktop/group-app.xml</p>
<p>As you can see, there are the 4 sections, Fun, work etc..<br />
Under Fun, add a line similar to the others and use this as the path;</p>
<p>/usr/share/applications/skype.desktop</p>
<p>Reboot your laptop and the lovely Skype icon should appear!</p>
<h3>More tweaks than you can poke a stick at</h3>
<p>(Please let me know of any articles that you know of that you think should be listed here!)</p>
<ul>
<li><a href="http://www.k0nr.com/wordpress/archives/445">Change the default mail client to Thunderbird</a></li>
<li><a href="http://macles.blogspot.com/2008/11/installing-vlc-09-on-aspire-one-linux.html">Installing VLC on the Acer Aspire One</a></li>
<li><a href="http://macles.blogspot.com/2008/10/installing-openoffice-30-on-acer-aspire.html">Install the new Open Office 3.0</a></li>
<li><a href="http://the.taoofmac.com/media/Acer/Aspire%20One/AA1notes.html">Learn how to control the Acer Aspire One fan (and even turn it off!)</a></li>
<li><a href="http://32packets.com/2008/08/14/os-x-working-on-the-acer-aspire-one/">Install MAC OS x on the Acer Aspire One .. (what the hell?)</a></li>
</ul>
<p>More tweaks coming soon, stay tuned!</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.jigsawboys.com/2008/12/15/the-ultimate-acer-aspire-one-linux-tweak-guide/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

