<?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>Talk Binary &#187; Windows</title>
	<atom:link href="http://talkbinary.com/tag/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://talkbinary.com</link>
	<description>Programming Resources, Technology, Computers</description>
	<lastBuildDate>Wed, 15 Feb 2012 16:01:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>XAMPP &#8211; Apache distribution containing MySQL, PHP, and Perl</title>
		<link>http://talkbinary.com/web-development/xampp-apache-distribution-containing-mysql-php-and-perl/</link>
		<comments>http://talkbinary.com/web-development/xampp-apache-distribution-containing-mysql-php-and-perl/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 20:37:28 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[hello world]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[offline web server]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[xampp]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=2780</guid>
		<description><![CDATA[XAMPP acts as a web server that allows you to serve dynamic pages on your computer. Its intended to be used as a development tool as it allows programmers to develop their work using Apache, MySQL, PHP and Perl without having access to the internet. It&#8217;s available for Windows, Linux, Solaris, and Mac OS X<a class="moretag" href="http://talkbinary.com/web-development/xampp-apache-distribution-containing-mysql-php-and-perl/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://talkbinary.com/wp-content/uploads/2010/07/xampplogo1.gif" alt="" title="xampplogo" width="200" height="59" class="alignnone size-full wp-image-2782" /><a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a> acts as a web server that allows you to serve dynamic pages on your computer. Its intended to be used as a development tool as it allows programmers to develop their work using Apache, MySQL, PHP and Perl without having access to the internet. It&#8217;s available for Windows, Linux, Solaris, and Mac OS X and is released under the terms of the GNU General Public License.</p>
<p>I&#8217;ve been using <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a> for quite some time now since I&#8217;ve done a couple of web development projects already. If you don&#8217;t have some sort of web server on your computer, you won&#8217;t be able to test and run your web development projects offline if you are using MySQL or PHP for instance.<br />
<span id="more-2780"></span></p>
<h3 id="section-1">Installing XAMPP</h3>
<p>Installing <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a> is pretty straightforward. The website details you how to install XAMPP in a variety of ways for the different platforms. Then, once its installed, you simply place your web content in the <strong>\xampp\htdocs\</strong> location on your computer and access it via a browser using <strong>http://localhost/<file></strong> </p>
<h3 id="section-2">Hello World using XAMPP</h3>
<p>For example, lets create &#8220;Hello World&#8221; using XAMPP and some PHP.</p>
<p>1. Once you installed and are running <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a>, create a file called <strong>test.php</strong> and place it inside <strong>\xampp\htdocs</strong>. </p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2010/07/xampptestphp.png"><img src="http://talkbinary.com/wp-content/uploads/2010/07/xampptestphp.png" alt="" title="xampptestphp" width="554" height="380" class="alignnone size-full wp-image-2792" /></a></center></p>
<p>2. Then, simply copy and paste the following php code.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;Hello World&quot;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p><center><a href="http://talkbinary.com/wp-content/uploads/2010/07/xampphelloworldphp.png"><img src="http://talkbinary.com/wp-content/uploads/2010/07/xampphelloworldphp.png" alt="" title="xampphelloworldphp" width="366" height="165" class="alignnone size-full wp-image-2791" /></a></center><br />
<br />
3. Open up a browser and go to the location <strong>http://localhost/test.php</strong>. You should see Hello World on the screen. Now, try right-clicking on the file and Open With -> <Any Browser>. Do you notice the difference? Depending on the platform and browser, it might not behave correctly.</p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2010/07/xampphelloworld.png"><img src="http://talkbinary.com/wp-content/uploads/2010/07/xampphelloworld-300x118.png" alt="" title="xampphelloworld" width="300" height="118" class="alignnone size-medium wp-image-2790" /></a></center><br />
<br/></p>
<h3 id="section-3">Overview of XAMPP</h3>
<p>If you have wanted to get into web development, you should try <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a>. It&#8217;s fairly easy to install and use. I&#8217;ve been using it for quite some time and haven&#8217;t found a better replacement. </p>
<p>Want more tutorials on using XAMPP? Let me know. I plan on demonstrating how to create and manage a MySQL database and even setting up a <a href="http://wordpress.org">WordPress</a> blog using <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a>.</p>
<p><a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a></p>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/web-development/xampp-apache-distribution-containing-mysql-php-and-perl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wubi &#8211; Ubuntu Installer for Windows</title>
		<link>http://talkbinary.com/linux/wubi-ubuntu-installer-for-windows/</link>
		<comments>http://talkbinary.com/linux/wubi-ubuntu-installer-for-windows/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 06:05:58 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[installer]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Wubi]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=2622</guid>
		<description><![CDATA[Ever wanted to try Linux but afraid of the complex installation process? Worry no more. Wubi is an officially supported Ubuntu installer for Windows users than brings Linux to anyone with a simple installer as any other Windows application. I&#8217;d say, Wubi is the best and easiest way to get started with Linux. So how<a class="moretag" href="http://talkbinary.com/linux/wubi-ubuntu-installer-for-windows/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://talkbinary.com/wp-content/uploads/2010/07/wubi_logo1.gif"><img src="http://talkbinary.com/wp-content/uploads/2010/07/wubi_logo1.gif" alt="" title="wubi_logo" width="256" height="84" class="alignleft size-full wp-image-2624" /></a> Ever wanted to try Linux but afraid of the complex installation process? Worry no more. <a href="http://wubi-installer.org/">Wubi</a> is an officially supported Ubuntu installer for Windows users than brings Linux to anyone with a simple installer as any other Windows application. I&#8217;d say, <em>Wubi is the best and easiest way to get started with Linux</em>.</p>
<p>So how does it work? Simply run the <a href="http://wubi-installer.org/">Wubi</a> installer, enter a password for the account, choose some basic options, and click &#8220;Install&#8221;. Yes, it&#8217;s that simple. It&#8217;s not going to take any modifying of your partitions or boot loader. It just works like any other application. Yes, it&#8217;s that simple. If you don&#8217;t like it, simple uninstall it like any other application. Best of all, it&#8217;s free.<br />
<span id="more-2622"></span><br />
<center><a href="http://talkbinary.com/wp-content/uploads/2010/07/wubi-123_small.png"><img src="http://talkbinary.com/wp-content/uploads/2010/07/wubi-123_small.png" alt="" title="wubi-123_small" width="510" height="320" class="aligncenter size-full wp-image-2630" /></a></center></p>
<p>I&#8217;ve used it and to be honest, it&#8217;s great. <a href="http://wubi-installer.org/">Wubi</a>  is hassle free and extremely easy to use. Like mentioned, it&#8217;s extremely easy to uninstall and no need to worry about something going wrong. </p>
<h3 id="section-1">What to know about Wubi</h3>
<p>Below are somethings that you should know about <a href="http://wubi-installer.org/">Wubi</a> before you try it out.</p>
<ul>
<li>Read the <a href="http://wubi-installer.org/faq.php">Wubi FAQ</a> if you want to know how it works and answers to many of your questions</li>
<li>To make it easier, pre-download the ISO and save it to the same directory where  <a href="http://wubi-installer.org/">Wubi</a> is extracted. That way, the installer doesn&#8217;t need to download it every time you run it. </li>
<li>You can force  <a href="http://wubi-installer.org/">Wubi</a> to use a 32-bit verison of Ubuntu if you follow the previous step</li>
<li>All you need is 256MB of RAM and an 1GHz or faster Intel/AMD processor is recommended for optimal performance. Installation requires 5GB. Bought your computer within the past 3 years? You should be fine.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/linux/wubi-ubuntu-installer-for-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dropbox &#8211; Sync files online and across multiple computers</title>
		<link>http://talkbinary.com/software/dropbox-sync-files-online-and-across-multiple-computers/</link>
		<comments>http://talkbinary.com/software/dropbox-sync-files-online-and-across-multiple-computers/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 05:08:31 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Resources Online]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[free online storage]]></category>
		<category><![CDATA[hard drive]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[online storage]]></category>
		<category><![CDATA[sync]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=2413</guid>
		<description><![CDATA[Dropbox allows you to sync your files online and across multiple computers with ease. By simply downloading their software, you&#8217;ll be prompted to select a folder which will serve as your Dropbox. Once this is done on all your computers, whatever you throw into your Dropbox, will sync across all computers. Features of Dropbox Below<a class="moretag" href="http://talkbinary.com/software/dropbox-sync-files-online-and-across-multiple-computers/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://talkbinary.com/wp-content/uploads/2010/03/dropboxlogo.png"><img src="http://talkbinary.com/wp-content/uploads/2010/03/dropboxlogo.png" alt="" title="dropboxlogo" width="231" height="60" class="alignleft size-full wp-image-2414" /></a><a href="http://dropbox.com">Dropbox</a> allows you to sync your files online and across multiple computers with ease. By simply downloading their software, you&#8217;ll be prompted to select a folder which will serve as your <strong>Dropbox</strong>. Once this is done on all your computers, whatever you throw into your <strong>Dropbox</strong>, will sync across all computers. </p>
<h2 id="section-1">Features of Dropbox</h2>
<p>Below are some of the features I enjoy using it for. If you want to see the full list please visit <a href="https://www.dropbox.com/features">Dropbox Features</a>.</p>
<ul>
<li>2GB of online storage, which can be increased through referrals</li>
<li>Up to 100GB for paying customers
<li>
<li>Works on Windows, Mac, and Linux computers</li>
<li>Allows you to share folders or files with people to start collaborating on projects</li>
<li>A &#8220;Public&#8221; folder that lets you create direct links to your files to share with your friends</li>
<li>Access your files online as well as upload, delete, rename, etc</li>
<li>It&#8217;s secure</li>
<li>And it&#8217;s also mobile too</li>
</ul>
<p><span id="more-2413"></span></p>
<p><center><img src="http://talkbinary.com/wp-content/uploads/2010/03/dropbox01.jpg" alt="" title="dropbox01" width="450" height="317" class="aligncenter size-full wp-image-2417" /></center></p>
<h2 id="section-2">Impressions of Dropbox</h2>
<p>When I lost my USB Hard Drive, I hated the idea of having to go buy another one. Instead, I found <a href="http://dropbox.com">Dropbox</a>. Ever since then whenever I need to access something across multiple computers, I drop it in my <strong>Dropbox</strong> and better yet, I could access it online. Best of all it&#8217;s very easy to set up across multiple computers. With the added bonus of sharing folders and files, and even creating links for files for your friends to access, I couldn&#8217;t ask for anything better. Best of all it&#8217;s free so you have nothing to lose.</p>
<p><strong>Updated: Added video on Dropbox</strong><br />
<center><object width="480" height="295"><param name="movie" value="http://www.youtube.com/v/C_zzuA-MoIs&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/C_zzuA-MoIs&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"></embed></object></center></p>
<p><a href="https://www.dropbox.com/referrals/NTc4NjEwNjk">Dropbox</a></p>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/software/dropbox-sync-files-online-and-across-multiple-computers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VirtualBox &#8211; Virtualize on Windows, Mac, and Linux</title>
		<link>http://talkbinary.com/software/virtualbox-virtualize-on-windows-mac-and-linux/</link>
		<comments>http://talkbinary.com/software/virtualbox-virtualize-on-windows-mac-and-linux/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 03:38:23 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[guest]]></category>
		<category><![CDATA[host]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[operating system]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[virtual box]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[virtualization]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=1991</guid>
		<description><![CDATA[Create a virtual machine using VirtualBox Virtual Box is a powerful open source x86 virtualization that runs on Windows, Linux, Mac and OpenSolaris. It supports a large number of guest operating systems such as Windows XP, Windows 7 RC, Ubuntu, Debian, SUSE, Fedora, and Red Hat. VirtualBox is free as well as many linux distributions.<a class="moretag" href="http://talkbinary.com/software/virtualbox-virtualize-on-windows-mac-and-linux/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://talkbinary.com/wp-content/uploads/2010/02/vbox_logo2_gradient.png"><img src="http://talkbinary.com/wp-content/uploads/2010/02/vbox_logo2_gradient.png" alt="" title="vbox_logo2_gradient" width="140" height="180" class="alignleft size-full wp-image-2113" /></a><br />
<h3 id="section-1">Create a virtual machine using VirtualBox</h3>
<p>     <a href="http://www.virtualbox.org/">Virtual Box</a> is a powerful open source x86 virtualization that runs on Windows, Linux, Mac and OpenSolaris. It supports a large number of <a href="http://www.virtualbox.org/wiki/Guest_OSes">guest operating</a> systems such as Windows XP, Windows 7 RC, Ubuntu, Debian, SUSE, Fedora, and Red Hat. VirtualBox is free as well as many linux distributions. So if you haven&#8217;t tried any, I&#8217;d recommend you doing so.</p>
<p>     In simpler terms, <a href="http://www.virtualbox.org/">Virtual Box</a> allows you to run another OS on top of your currently existing one. If you wanted to try installing an OS without the hassle of dual-booting, or even wanted to install another OS to do some programming since maybe Windows isn&#8217;t the best for you, then virtualiziation is one way to go. There is also no way you can harm your computer so its risk-free. If you corrupt a guest OS, simply delete it and try again. </p>
<h3 id="section-2">VirtualBox Features</h3>
<ul>
<li>Guest Additions for Windows, Linux, and Solaris &#8211; Allows you to install software inside the OS that improves performance. Just recently the guest additions allowed users running Ubuntu to run the Visual Effects, which is nice. </li>
<li>Shared folders &#8211; Access folders from the host in the guest machines</lI
<li>Virtual USB Controllers &#8211; Connect a USB device and your virtual machine will recognize it, including USB Flash Drives.</li>
</ul>
<p>For more features visit <a href="http://www.virtualbox.org/wiki/VirtualBox">Virtual Box Features</a>.</p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2010/02/vbox2.jpg"><img src="http://talkbinary.com/wp-content/uploads/2010/02/vbox2-300x228.jpg" alt="VirtualBox running Ubuntu under Windows" title="vbox2" width="300" height="228" class="aligncenter size-medium wp-image-2115" /></a></center></p>
<h3 id="section-3">How to start</h3>
<p>     If you want to start, simply download <a href="http://www.virtualbox.org/">Virtual Box</a> and an OS. I&#8217;d recommend <a href="http://www.ubuntu.com/">Ubuntu</a> since thats probably the most user friendly (or so I think). If you want something else, hit up <a href="http://distrowatch.com/dwres.php?resource=major">DistroWatch</a>. Once you have that, setting up <a href="http://www.virtualbox.org/">Virtual Box</a> with the OS is pretty straightforward. I&#8217;ll add a tutorial later on for those who still need help.<br />
<span id="more-1991"></span></p>
<h3 id="section-4">My Usage of VirtualBox</h3>
<p>     I use <a href="http://www.virtualbox.org/">Virtual Box</a>  to create my own programming environment. I personally use <a href="http://www.ubuntu.com/">Ubuntu</a> but I have also used other linux operating systems that can be found at <a href="http://distrowatch.com/dwres.php?resource=major">DistroWatch</a>. Since I run a dual monitor setup, I usually have Windows 7 running on my left monitor while <a href="http://www.ubuntu.com/">Ubuntu</a> runs on my right monitor in the case I need to program and attend to my other needs such as IM or music player which are still running on Windows. </p>
<p>     When I run <a href="http://www.ubuntu.com/">Ubuntu</a> on my Macbook on the other hand, I simply run it full screen and within the virtualized machine I run my music player, IM client, and have my programming environment set up so I don&#8217;t have to be switching back and forth since running another OS requires quite a bit of resources.</p>
<h3 id="section-5">Final Impressions of VirtualBox</h3>
<p>For quite some time now, I&#8217;ve been using <a href="http://www.virtualbox.org/">Virtual Box</a> nearly every day and haven&#8217;t had a complaint. It&#8217;s stable, free, and relatively easy to use. If your interested in virtualizing, I&#8217;d recommend you in trying this out. </p>
<p> <a href="http://www.virtualbox.org/">Virtual Box</a></p>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/software/virtualbox-virtualize-on-windows-mac-and-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Start programming in ML</title>
		<link>http://talkbinary.com/programming/start-programming-in-ml/</link>
		<comments>http://talkbinary.com/programming/start-programming-in-ml/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 03:50:21 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[ml compiler]]></category>
		<category><![CDATA[smlnj]]></category>
		<category><![CDATA[start programming in ml]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=1487</guid>
		<description><![CDATA[ML is a functional programming language. Features include type inference, first class functions, garbage collection, pattern matching, parametric polymorphism, static typing, exception handling, call-by-value evaluation strategy, and algebraic data types. &#8211; Source Examples of functions in ML Below are examples to get you familiar in ML. Syntax and how the language works will be explained<a class="moretag" href="http://talkbinary.com/programming/start-programming-in-ml/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p>ML is a <strong>functional</strong> programming language. Features include type inference, first class functions, garbage collection, pattern matching, parametric polymorphism, static typing, exception handling, call-by-value evaluation strategy, and algebraic data types. &#8211; <a href="http://en.wikipedia.org/wiki/ML_(programming_language)">Source</a></p>
<h3 id="section-1">Examples of functions in ML</h3>
<p>Below are examples to get you familiar in ML. Syntax and how the language works will be explained in later tutorials.</p>

<div class="wp_syntax"><div class="code"><pre class="ml" style="font-family:monospace;">(* Factorial Function *)
fun fact n = 
     if n = 0 then 
          1
     else
          n * fact(n-1);
&nbsp;
(* Reverse function *)
fun reverse n = 
     if null n then
          n
     else
          reverse(tl n)@[(hd n)];</pre></div></div>

<h3 id="section-2">How to start Programming in ML</h3>
<p><a href="http://www.smlnj.org/NEWS/110-README.html">The Standard ML of New Jersey</a> provides an interactive compiler for Windows, Linux, amongst others. <a href="http://www.smlnj.org/dist//release/110.0.7/">SML/NJ distribution files</a> are available freely to download.</p>
<h3 id="section-3">Install SML/NJ in Windows</h3>
<p>Simply download the appropriate windows installer at <a href="http://www.smlnj.org/dist//release/110.0.7/">SML/NJ distribution files</a>. After downloading, simply install the files with the installer, restart your computer, and the program is available to run from then on.</p>
<p><center><img src="http://talkbinary.com/wp-content/uploads/2009/01/smlnj.jpg" alt="smlnj in windows" title="smlnj" width="450"  /></center><br />
<span id="more-1487"></span></p>
<h3 id="section-4">Install SML/NJ in Linux</h3>
<p>To install SML/NJ in Linux simply complete the following steps.</p>
<pre>1. Open your terminal
2. Type in sudo apt get-install smlnj
3. Complete installation
4. To run smlnj, type in smlnj in your compiler</pre>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/programming/start-programming-in-ml/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>DExposE2 Reloaded &#8211; Expose your Windows Similar to a Mac</title>
		<link>http://talkbinary.com/software/dexpose2-reloaded-expose-your-windows-similar-to-a-mac/</link>
		<comments>http://talkbinary.com/software/dexpose2-reloaded-expose-your-windows-similar-to-a-mac/#comments</comments>
		<pubDate>Sat, 13 Dec 2008 07:54:30 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[ALT+TAB]]></category>
		<category><![CDATA[Customization]]></category>
		<category><![CDATA[DExposE2]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Switch Windows]]></category>
		<category><![CDATA[task switcher]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=1307</guid>
		<description><![CDATA[DExposE2 Reloaded allows you to expose your windows currently running similar to how it&#8217;s done on a Mac. Best of all, this software is free and RAM friendly. So if you are looking for a Mac OS-X style task switcher for Windows, this is as close as it gets! Features of DExposE2 Reloaded Portable Version<a class="moretag" href="http://talkbinary.com/software/dexpose2-reloaded-expose-your-windows-similar-to-a-mac/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.winmatrix.com/forums/index.php?showtopic=17657">DExposE2 Reloaded</a> allows you to expose your windows currently running similar to how it&#8217;s done on a Mac. Best of all, this software is free and RAM friendly. So if you are looking for a Mac OS-X style task switcher for Windows, this is as close as it gets!</p>
<p><center><img src="http://talkbinary.com/wp-content/uploads/2008/12/dexpose21.jpg" alt="dexpose21" title="dexpose21" width="500" height="312" class="alignnone size-full wp-image-1312" /></center></p>
<h3 id="section-1">Features of DExposE2 Reloaded</h3>
<ul>
<li>Portable Version</li>
<li>Interaction with previews</li>
<li>Hotcorners and Hotkey support</li>
<li>Window previews are clear</li>
<li>Desktop shown in background</li>
<li>Multimonitor Support</li>
</ul>
<p>For a complete set of features go to<a href="http://www.winmatrix.com/forums/index.php?showtopic=17657">DExposE2 Reloaded Features</a>.</p>
<h3 id="section-2">Remarks on DExposE2</h3>
<p>So far its great for users who want more eye candy and want to use your PC with style. I currently use it on my laptop and haven&#8217;t found a reason to remove it. You should try it out. It&#8217;s very fast and doesn&#8217;t use a lot of resources.</p>
<p><a href="http://devrexster.googlepages.com/home">Download DExposE2</a>.</p>
<h3 id="section-3">DExposE2 in action</h3>
<p><center><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/lBjLU7AryDQ&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/lBjLU7AryDQ&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></center></p>
<p>Do you know of any software as this one? Tell us about it!</p>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/software/dexpose2-reloaded-expose-your-windows-similar-to-a-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Launchy &#8211; The Open Source Keystroke Launcher</title>
		<link>http://talkbinary.com/software/launchy-the-open-source-keystroke-launcher/</link>
		<comments>http://talkbinary.com/software/launchy-the-open-source-keystroke-launcher/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 18:54:47 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[Customization]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[Launchy]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=1268</guid>
		<description><![CDATA[Ever since I acquired Launchy, I&#8217;ve been using my mouse even less, and I haven&#8217;t visited the Start Menu in the longest time! Launchy makes opening applications fast! Launchy is a free Window and Linux utility designed to make you forget about your start menu or desktop and does a good job about it! By<a class="moretag" href="http://talkbinary.com/software/launchy-the-open-source-keystroke-launcher/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p>Ever since I acquired <a href="http://www.launchy.net/" rel="nofollow">Launchy</a>, I&#8217;ve been using my mouse even less, and I haven&#8217;t visited the Start Menu in the longest time!</p>
<p><center><img src="http://talkbinary.com/wp-content/uploads/2008/11/launchy.jpg"></center></p>
<h3 id="section-1">Launchy makes opening applications fast!</h3>
<p><a href="http://www.launchy.net/" rel="nofollow">Launchy</a> is a free Window and Linux utility designed to make you forget about your start menu or desktop and does a good job about it! By default, <a href="http://www.launchy.net/" rel="nofollow">Launchy</a> displays over all your applications with a press of ALT-SpaceBar, then allows you to start typing in the application you want to open, and Launchy will start firing up suggestions, once you nail the right app, press enter and it opens! See why you never have to visit your Start Menu ever again?  </p>
<p><center><img src="http://talkbinary.com/wp-content/uploads/2008/11/launchy01.jpg"></center><br />
<span id="more-1268"></span><br />
Yes, you can even customize your <a href="http://www.launchy.net/" rel="nofollow">Launchy</a> experience with skins that can be found <a href="http://browse.deviantart.com/customization/skins/applaunchers/launchy/?order=5" rel="nofollow">here</a>. </p>
<p>Overall, <a href="http://www.launchy.net/" rel="nofollow">Launchy</a> is a great application to speed up your productivity. I&#8217;ve recently downloaded it onto my desktop and my laptop. Also, just make sure your mouse doesn&#8217;t get jealous because you won&#8217;t be using it as much anymore!</p>
<h3 id="section-2">More Launchy Screenshots</h3>
<p><center><img src="http://talkbinary.com/wp-content/uploads/2008/11/launchy02.jpg"></center></p>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/software/launchy-the-open-source-keystroke-launcher/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Installing Dual-Boot Ubuntu</title>
		<link>http://talkbinary.com/linux/installing-dual-boot-ubuntu/</link>
		<comments>http://talkbinary.com/linux/installing-dual-boot-ubuntu/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 06:51:53 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Dual Boot]]></category>
		<category><![CDATA[Installing Ubuntu]]></category>
		<category><![CDATA[Partition]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=100</guid>
		<description><![CDATA[In this tutorial, I&#8217;ll show you how to install Ubuntu so you may have an option to dual-boot. In other words, when you boot up your computer, you&#8217;ll be given an option whether to use Ubuntu or Windows. 1. First download Ubuntu. Wait? What is Ubuntu? Check it out here at Linux Distribution Ubuntu. 2.<a class="moretag" href="http://talkbinary.com/linux/installing-dual-boot-ubuntu/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p>In this tutorial, I&#8217;ll show you how to install Ubuntu so you may have an option to dual-boot. In other words, when you boot up your computer, you&#8217;ll be given an option whether to use Ubuntu or Windows.<br />
<br/><br />
1. First download <a rel="nofollow" href="http://ubuntu.com">Ubuntu</a>. Wait? What is Ubuntu? Check it out here at <a href="http://talkbinary.com/2008/04/linux-distribution-ubuntu/">Linux Distribution Ubuntu</a>.<br />
2. Burn the ISO onto the cd.<br />
3. Back up your hard drive! This is a must! I&#8217;ve seen people reformat their computers when missing a step in the process!<br />
4. Place your Ubuntu cd in your cd-drive and restart your computer.<br />
<br/></p>
<h3 id="section-1">Installing Ubuntu</h3>
<p>5. On the following screen choose Install Ubuntu. If you really want, you can Try Ubuntu without any change to your computer so you can test it out and see if you like it. For this tutorial, I&#8217;ll go with the Install Ubuntu option.<br />
<br/><br />
<small>If the following boot screen doesn&#8217;t show up, your BIOS probably doesn&#8217;t check your cd-drive. When your computer starts, go into your BIOS and change the appropriate settings.</small><br />
<center><a href="http://talkbinary.com/wp-content/uploads/2008/05/welcomescreen.jpg"><img class="alignnone size-thumbnail wp-image-89" title="welcomescreen" src="http://talkbinary.com/wp-content/uploads/2008/05/welcomescreen-150x150.jpg" alt="" width="150" height="150" /></a></center><span id="more-100"></span><br />
<br/><br />
<br/>6. The next steps are pretty straightforward. They ask you settings for the OS as keyboard settings, time, etc.<br />
<center><a href="http://talkbinary.com/wp-content/uploads/2008/05/beforeinstall.jpg"><img class="alignnone size-thumbnail wp-image-88" title="beforeinstall" src="http://talkbinary.com/wp-content/uploads/2008/05/beforeinstall-150x150.jpg" alt="Ubuntu" width="150" height="150" /></a> <a href="http://talkbinary.com/wp-content/uploads/2008/05/welcomeinstall.jpg"><img class="alignnone size-thumbnail wp-image-99" title="welcomeinstall" src="http://talkbinary.com/wp-content/uploads/2008/05/welcomeinstall-150x150.jpg" alt="Ubuntu" width="150" height="150" /></a> </p>
<p><a href="http://talkbinary.com/wp-content/uploads/2008/05/timezone.jpg"><img class="alignnone size-thumbnail wp-image-97" title="timezone" src="http://talkbinary.com/wp-content/uploads/2008/05/timezone-150x150.jpg" alt="Ubuntu" width="150" height="150" /></a> <a href="http://talkbinary.com/wp-content/uploads/2008/05/keyboardlayout.jpg"><img class="alignnone size-thumbnail wp-image-95" title="keyboardlayout" src="http://talkbinary.com/wp-content/uploads/2008/05/keyboardlayout-150x150.jpg" alt="" width="150" height="150" /></a></center><br />
<br/><br />
7. The next step is actually pretty important. Please take care with this step! We&#8217;ll go with the first option(a). I recommend giving Ubuntu ~4gb? Maybe 8gb? For starts. Move the appropriate slider to give Ubuntu the space you wish to provide it with.<br />
a. Guided &#8211; Resize your hard drive so you may dual boot Windows and Ubuntu.<br />
b. Guided use entire disk &#8211; Take your original OS, and install ONLY Ubuntu<br />
c. Guided use the largest continuous space &#8211; Basically takes all space available and gives it to Ubuntu, leaving your other OS with practically nothing.<br />
d. Manual &#8211; For Advanced Users<br />
<center><a href="http://talkbinary.com/wp-content/uploads/2008/05/installingubuntu.png"><img class="alignnone size-thumbnail wp-image-93" title="installingubuntu" src="http://talkbinary.com/wp-content/uploads/2008/05/installingubuntu-150x150.png" alt="" width="150" height="150" /></a></center><br />
<br/><br />
8. You are pretty much set. The rest will ask you log on questions, and you should restart and be done! The next time you boot , you will given a choice whether to boot Ubuntu or Windows!<br />
<center><a href="http://talkbinary.com/wp-content/uploads/2008/05/installusers.jpg"><img class="alignnone size-thumbnail wp-image-94" title="installusers" src="http://talkbinary.com/wp-content/uploads/2008/05/installusers-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://talkbinary.com/wp-content/uploads/2008/05/beforeinstall.jpg"><img class="alignnone size-thumbnail wp-image-88" title="beforeinstall" src="http://talkbinary.com/wp-content/uploads/2008/05/beforeinstall-150x150.jpg" alt="Ubuntu" width="150" height="150" /></a> <a href="http://talkbinary.com/wp-content/uploads/2008/05/installingsystemprogress.jpg"><img class="alignnone size-thumbnail wp-image-92" title="installingsystemprogress" src="http://talkbinary.com/wp-content/uploads/2008/05/installingsystemprogress-150x150.jpg" alt="" width="150" height="150" /></a></center></p>
<p><center><a href="http://talkbinary.com/wp-content/uploads/2008/05/done.jpg"><img class="alignnone size-thumbnail wp-image-91" title="done" src="http://talkbinary.com/wp-content/uploads/2008/05/done-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://talkbinary.com/wp-content/uploads/2008/05/bootdone.jpg"><img class="alignnone size-thumbnail wp-image-90" title="bootdone" src="http://talkbinary.com/wp-content/uploads/2008/05/bootdone-150x150.jpg" alt="" width="150" height="150" /></a> <a href="http://talkbinary.com/wp-content/uploads/2008/05/ubuntudone.jpg"><img class="alignnone size-thumbnail wp-image-98" title="ubuntudone" src="http://talkbinary.com/wp-content/uploads/2008/05/ubuntudone-150x150.jpg" alt="" width="150" height="150" /></a></center><br />
<br/><br />
Congratulations you are done!<br />
<br/></p>
<h3 id="section-2">What now?</h3>
<p>If for some reason, you want to remove Ubuntu, don&#8217;t do it without reading any appropriate guides! It will provide terrible headache as you might not be able to boot into XP anymore! I&#8217;ll post the best solution in awhile.<br />
<br/><br />
<br/>Why not try learning <a href="http://talkbinary.com/2008/05/how-to-write-and-compile-c-program-in-linux/">How to write and compile a C++ program in Linux</a>?</p>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/linux/installing-dual-boot-ubuntu/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to write and compile a C++ program in Windows using an IDE</title>
		<link>http://talkbinary.com/programming/c/how-to-write-and-compile-a-c-program-in-windows-using-an-ide/</link>
		<comments>http://talkbinary.com/programming/c/how-to-write-and-compile-a-c-program-in-windows-using-an-ide/#comments</comments>
		<pubDate>Sat, 31 May 2008 20:18:07 +0000</pubDate>
		<dc:creator>Diego</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[codeblocks]]></category>
		<category><![CDATA[hello world]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://talkbinary.com/?p=78</guid>
		<description><![CDATA[In this tutorial I&#8217;ll show you how to write and compile a C++ Program using CodeBlocks in Windows. That&#8217;s right, Windows. If you haven&#8217;t done so, download and install CodeBlocks Using CodeBlocks to program Hello World 1. Open up CodeBlocks and simply click on &#8220;Create a new project&#8221;. 2. In the following window choose Console<a class="moretag" href="http://talkbinary.com/programming/c/how-to-write-and-compile-a-c-program-in-windows-using-an-ide/">&#160;&#160;Full Article&#8230;</a>
]]></description>
			<content:encoded><![CDATA[<p>In this tutorial I&#8217;ll show you how to write and compile a C++ Program using CodeBlocks in Windows. That&#8217;s right, Windows.<br />
<br/>If you haven&#8217;t done so, download and install <a href="http://codeblocks.org" rel="nofollow">CodeBlocks</a><br />
<br/></p>
<h3 id="section-1">Using CodeBlocks to program Hello World</h3>
<p>1. Open up CodeBlocks and simply click on &#8220;Create a new project&#8221;.<br />
<br/><br />
<center><a href='http://talkbinary.com/wp-content/uploads/2008/05/codeblocks.jpg'><img src="http://talkbinary.com/wp-content/uploads/2008/05/codeblocks-300x243.jpg" alt="Codeblocks" title="codeblocks" width="300" height="243" class="alignnone size-medium wp-image-80" /></a></center><span id="more-78"></span><br />
<br/><br />
<br/>2. In the following window choose Console Application.<br />
<br/><br />
<center><a href='http://talkbinary.com/wp-content/uploads/2008/05/codeblocksconsole.jpg'><img src="http://talkbinary.com/wp-content/uploads/2008/05/codeblocksconsole-300x241.jpg" alt="Codeblocks Console" title="codeblocksconsole" width="300" height="241" class="alignnone size-medium wp-image-83" /></a></center><br />
<br/><br />
<br/>3. The next window welcomes you to the application wizard. I&#8217;d simply check Skip this Page Next Time and click on Next.<br />
<br/><br />
<center><a href='http://talkbinary.com/wp-content/uploads/2008/05/codeblocksintro.jpg'><img src="http://talkbinary.com/wp-content/uploads/2008/05/codeblocksintro-300x244.jpg" alt="Application Wizard" title="codeblocksintro" width="300" height="244" class="alignnone size-medium wp-image-86" /></a></center><br />
<br/><br />
<br/>4. Choose C++ project.<br />
<br/><br />
<br/><center><a href='http://talkbinary.com/wp-content/uploads/2008/05/codeblocksc.jpg'><img src="http://talkbinary.com/wp-content/uploads/2008/05/codeblocksc-300x242.jpg" alt="C++" title="codeblocksc" width="300" height="242" class="alignnone size-medium wp-image-82" /></a></center><br />
<br/><br />
<br/>5. Type in the appropriate values I have in the following image. If you want, you can change the name of the directory where your project will be saved.<br />
<br/><center><a href='http://talkbinary.com/wp-content/uploads/2008/05/codeblocksproject.jpg'><img src="http://talkbinary.com/wp-content/uploads/2008/05/codeblocksproject-300x242.jpg" alt="Project" title="codeblocksproject" width="300" height="242" class="alignnone size-medium wp-image-87" /></a></center><br />
<br/><br />
<br/>6. For now, simply type in Finish in the next window. No need to change anything.<br />
<br/><center><a href='http://talkbinary.com/wp-content/uploads/2008/05/codeblocksdebugger.jpg'><img src="http://talkbinary.com/wp-content/uploads/2008/05/codeblocksdebugger-300x242.jpg" alt="" title="codeblocksdebugger" width="300" height="242" class="alignnone size-medium wp-image-84" /></a></center><br />
<br/><br />
<br/>7. In the Management Tab, Expand Sources, and double click on main.cpp . Unfortunately Hello World is already written for us!<br />
<br/><center><a href='http://talkbinary.com/wp-content/uploads/2008/05/codeblockmain.jpg'><img src="http://talkbinary.com/wp-content/uploads/2008/05/codeblockmain-299x244.jpg" alt="" title="codeblockmain" width="299" height="244" class="alignnone size-medium wp-image-79" /></a></center><br />
<br/><br />
<br/>8. Now go to Build -> Build and Run. OR You can simply hit F9 which is the shortcut to build and run your program.<br />
<br/><center><a href='http://talkbinary.com/wp-content/uploads/2008/05/codeblocksbuildandrun.jpg'><img src="http://talkbinary.com/wp-content/uploads/2008/05/codeblocksbuildandrun-300x244.jpg" alt="" title="codeblocksbuildandrun" width="300" height="244" class="alignnone size-medium wp-image-81" /></a> <a href='http://talkbinary.com/wp-content/uploads/2008/05/codeblockshelloworldconsole.jpg'><img src="http://talkbinary.com/wp-content/uploads/2008/05/codeblockshelloworldconsole-300x246.jpg" alt="" title="codeblockshelloworldconsole" width="300" height="246" class="alignnone size-medium wp-image-85" /></a></center><br />
<br/><br />
9. Congratulations! You are done!<br />
<br/></p>
<h3 id="section-2">Useful Resources</h3>
<p><a href="http://talkbinary.com/category/c/">C++ Tutorial</a> &#8211; Page where our C++ tutorials can be found at.<br />
<a href="http://talkbinary.com/2008/05/hello-world-in-c/">Hello World</a> &#8211; Step by Step telling you what each line of Hello World actually does!<br />
<br/><br />
<br/></p>
]]></content:encoded>
			<wfw:commentRss>http://talkbinary.com/programming/c/how-to-write-and-compile-a-c-program-in-windows-using-an-ide/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced

Served from: talkbinary.com @ 2012-05-24 16:46:28 -->
