<?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>Windows - Linux - Mac OSX Guides</title>
	<atom:link href="http://techmix.net/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://techmix.net/blog</link>
	<description>Tips &#38; Tricks ...</description>
	<lastBuildDate>Mon, 01 Apr 2013 02:33:30 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.1</generator>
		<item>
		<title>Search comma-separated list attribute using jQuery</title>
		<link>http://techmix.net/blog/2013/04/01/search-comma-separated-list-attribute-using-jquery/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=search-comma-separated-list-attribute-using-jquery</link>
		<comments>http://techmix.net/blog/2013/04/01/search-comma-separated-list-attribute-using-jquery/#comments</comments>
		<pubDate>Mon, 01 Apr 2013 02:33:30 +0000</pubDate>
		<dc:creator>number.0</dc:creator>
				<category><![CDATA[PROGRAMMING]]></category>
		<category><![CDATA[TIPS & TRICKS]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://techmix.net/blog/?p=1040</guid>
		<description><![CDATA[WHAT I WANT I have an attribute that is comma-separated list, and I want to search for a particular value in that list example: &#60;img id=”img1” src=”somepic.jpg” tags=”nature,flower,color”&#62; SOLUTION Using...]]></description>
			<content:encoded><![CDATA[<p><strong>WHAT I WANT</strong></p>
<p>I have an attribute that is comma-separated list, and I want to search for a particular value in that list</p>
<p>example: </p>
<blockquote><p>&lt;img id=”img1” src=”somepic.jpg” tags=”nature,flower,color”&gt;</p>
</blockquote>
<p><strong>SOLUTION</strong></p>
<p>Using jQuery, it’s simple to do, for example, I will search for the tag “nature” in the image</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #000066; font-weight: bold;">var</span> exists <span style="color: #339933;">=</span> $.<span style="color: #660066;">inArray</span><span style="color: #009900;">&#40;</span>“nature”<span style="color: #339933;">,</span> $<span style="color: #009900;">&#40;</span>“#img1”<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">attr</span><span style="color: #009900;">&#40;</span>“tags”<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">split</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">','</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">!=</span> <span style="color: #339933;">-</span><span style="color: #CC0000;">1</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Ftechmix.net%2Fblog%2F2013%2F04%2F01%2Fsearch-comma-separated-list-attribute-using-jquery%2F&amp;title=Search%20comma-separated%20list%20attribute%20using%20jQuery" id="wpa2a_2"><img src="http://techmix.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><div id="wp_fb_like_button" style="margin: 0; float: none"><iframe src="http://www.facebook.com/plugins/like.php?href=http://techmix.net/blog/2013/04/01/search-comma-separated-list-attribute-using-jquery/&amp;layout=standard&amp;show_faces=true&amp;action=like&amp;colorscheme=light&amp;width=450&amp;height=100" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width: 450px; height: 100px;"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://techmix.net/blog/2013/04/01/search-comma-separated-list-attribute-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get radio group value with Jquery</title>
		<link>http://techmix.net/blog/2012/10/30/get-radio-group-value-with-jquery/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=get-radio-group-value-with-jquery</link>
		<comments>http://techmix.net/blog/2012/10/30/get-radio-group-value-with-jquery/#comments</comments>
		<pubDate>Tue, 30 Oct 2012 06:23:54 +0000</pubDate>
		<dc:creator>number.0</dc:creator>
				<category><![CDATA[PROGRAMMING]]></category>
		<category><![CDATA[TIPS & TRICKS]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://techmix.net/blog/?p=1038</guid>
		<description><![CDATA[Assume you have one radio group name default_lang and you want to know which one is selected &#60;input name=&#34;default_lang&#34; value=&#34;en&#34; type=&#34;radio&#34; /&#62; &#60;input name=&#34;default_lang&#34; value=&#34;fr&#34; type=&#34;radio&#34; /&#62; &#60;input name=&#34;default_lang&#34; value=&#34;de&#34;...]]></description>
			<content:encoded><![CDATA[<p>Assume you have one radio group name default_lang and you want to know which one is selected</p>
<blockquote><p>&lt;input name=&quot;default_lang&quot; value=&quot;en&quot; type=&quot;radio&quot; /&gt;</p>
<p>&lt;input name=&quot;default_lang&quot; value=&quot;fr&quot; type=&quot;radio&quot; /&gt;</p>
<p>&lt;input name=&quot;default_lang&quot; value=&quot;de&quot; type=&quot;radio&quot; /&gt;</p>
</blockquote>
<p>Well, it’s easy with jQuery</p>
<blockquote>

<div class="wp_syntax"><table><tr><td class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #000066; font-weight: bold;">var</span> default_lang <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'input:radio[name=default_lang]:checked'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">val</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

</blockquote>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Ftechmix.net%2Fblog%2F2012%2F10%2F30%2Fget-radio-group-value-with-jquery%2F&amp;title=Get%20radio%20group%20value%20with%20Jquery" id="wpa2a_4"><img src="http://techmix.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><div id="wp_fb_like_button" style="margin: 0; float: none"><iframe src="http://www.facebook.com/plugins/like.php?href=http://techmix.net/blog/2012/10/30/get-radio-group-value-with-jquery/&amp;layout=standard&amp;show_faces=true&amp;action=like&amp;colorscheme=light&amp;width=450&amp;height=100" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width: 450px; height: 100px;"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://techmix.net/blog/2012/10/30/get-radio-group-value-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install uTorrent in Linux Ubuntu 12.04</title>
		<link>http://techmix.net/blog/2012/08/18/how-to-install-utorrent-in-linux-ubuntu-12-04/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-install-utorrent-in-linux-ubuntu-12-04</link>
		<comments>http://techmix.net/blog/2012/08/18/how-to-install-utorrent-in-linux-ubuntu-12-04/#comments</comments>
		<pubDate>Sat, 18 Aug 2012 06:35:24 +0000</pubDate>
		<dc:creator>number.0</dc:creator>
				<category><![CDATA[LINUX]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[torrent]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://techmix.net/blog/?p=1034</guid>
		<description><![CDATA[uTorrent is one of the most popular BitTorrent client. While it’s easy to install and use in Windows and Mac, it’s a little bit difficult to have it installed &#38;...]]></description>
			<content:encoded><![CDATA[<p>uTorrent is one of the most popular BitTorrent client. While it’s easy to install and use in Windows and Mac, it’s a little bit difficult to have it installed &amp; run on Linux, in this post I’m going to show you step by step to install and run uTorrent in Ubuntu 12.04</p>
<p><a href="http://techmix.net/blog/wp-content/uploads/2012/08/utorrent-server-linux.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="utorrent-server-linux" border="0" alt="utorrent-server-linux" src="http://techmix.net/blog/wp-content/uploads/2012/08/utorrent-server-linux_thumb.png" width="644" height="333" /></a></p>
<h2>REQUIREMENTS</h2>
<ul>
<li>Ubuntu 12.04 </li>
<li>uTorrent Server (You can <a href="http://www.utorrent.com/downloads/linux" target="_blank">download from here</a>) </li>
<li>libssl0.9.8 </li>
</ul>
<h2>INSTALLATION</h2>
<p><strong>1. Download and save to your folder (e.g: Downloads), you will get a .tar.gz when download finished</strong></p>
<p><strong>2. Open Terminal (by menu or by using Ctrl + Alt + T ), then do the following commands</strong></p>
<p><strong><em>- Go to the Download folder</em></strong></p>
<blockquote><p>$ cd Downloads</p>
</blockquote>
<p><strong><em>- Copy the downloaded file to /opt</em></strong></p>
<blockquote><p>$ sudo cp utorrent-server-3.0-ubuntu-10.10-27079.tar.gz /opt</p>
</blockquote>
<p>(Remember to check name of the file you download, for me it’s utorrent-server-3.0-ubuntu-10.10-27079.tar.gz)</p>
<p><strong><em>- Go to the /opt folder</em></strong></p>
<blockquote><p>$ cd /opt</p>
</blockquote>
<p><strong><em>- Now uncompress the file</em></strong></p>
<blockquote><p>$ sudo tar -zxf utorrent-server-3.0-ubuntu-10.10-27079.tar.gz</p>
</blockquote>
<p>You will get a folder name called utorrent-server-v3_0</p>
<p><strong><em>- Create a symbolic link (kind of a shortcut) so that you can run the torrent server from Terminal</em></strong></p>
<blockquote><p>$ sudo ln -s /opt/utorrent-server-v3_0/utserver /usr/bin/utserver</p>
</blockquote>
<p><strong>3. You are almost ready by now, Install the libssl0.9.8 library</strong></p>
<blockquote><p>$ sudo apt-get install libssl0.9.8</p>
</blockquote>
<p><strong>4. Now start you utorrent server</strong></p>
<blockquote><p>$ utserver –settingspath /opt/utorrent-server-v3_0</p>
</blockquote>
<h2>RUN</h2>
<p>uTorrent will be launched from any Web browser, open Firefox / Chrome / Opera and navigate to</p>
<p><a href="http://localhost:8080/gui">http://localhost:8080/gui</a></p>
<p>with username is “admin” (withou double quote) and password is empty</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Ftechmix.net%2Fblog%2F2012%2F08%2F18%2Fhow-to-install-utorrent-in-linux-ubuntu-12-04%2F&amp;title=How%20to%20install%20uTorrent%20in%20Linux%20Ubuntu%2012.04" id="wpa2a_6"><img src="http://techmix.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><div id="wp_fb_like_button" style="margin: 0; float: none"><iframe src="http://www.facebook.com/plugins/like.php?href=http://techmix.net/blog/2012/08/18/how-to-install-utorrent-in-linux-ubuntu-12-04/&amp;layout=standard&amp;show_faces=true&amp;action=like&amp;colorscheme=light&amp;width=450&amp;height=100" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width: 450px; height: 100px;"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://techmix.net/blog/2012/08/18/how-to-install-utorrent-in-linux-ubuntu-12-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Apple Remote Desktop in OS X Lion or Mountain Lion</title>
		<link>http://techmix.net/blog/2012/08/17/installing-apple-remote-desktop-in-os-x-lion-or-mountain-lion/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=installing-apple-remote-desktop-in-os-x-lion-or-mountain-lion</link>
		<comments>http://techmix.net/blog/2012/08/17/installing-apple-remote-desktop-in-os-x-lion-or-mountain-lion/#comments</comments>
		<pubDate>Fri, 17 Aug 2012 01:47:01 +0000</pubDate>
		<dc:creator>number.0</dc:creator>
				<category><![CDATA[MACOSX]]></category>
		<category><![CDATA[NEWS]]></category>
		<category><![CDATA[TIPS & TRICKS]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[lion]]></category>
		<category><![CDATA[mountain lion]]></category>
		<category><![CDATA[problem]]></category>

		<guid isPermaLink="false">http://techmix.net/blog/?p=1030</guid>
		<description><![CDATA[THE PROBLEM The Apple Remote Desktop 3.3 installer may report that it requires Mac OS X v10.6 when used with OS X Lion. In Mountain Lion, the Apple Remote Desktop...]]></description>
			<content:encoded><![CDATA[<h2>THE PROBLEM</h2>
<p>The Apple Remote Desktop 3.3 installer may report that it requires Mac OS X v10.6 when used with OS X Lion. In Mountain Lion, the Apple Remote Desktop 3.3 installer may report that &quot;&quot;RemoteDesktop.mpkg&quot; can&#8217;t be opened because it is from a an unidentified developer.&quot;</p>
<p>Show how to solve this?</p>
<p><a href="http://techmix.net/blog/wp-content/uploads/2012/08/apple-remote-control.jpg"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="apple-remote-control" border="0" alt="apple-remote-control" src="http://techmix.net/blog/wp-content/uploads/2012/08/apple-remote-control_thumb.jpg" width="644" height="431" /></a></p>
<h2>RESOLUTION</h2>
<ol>
<li>Copy the Apple Remote Desktop Installer from the Installation disc to the desktop. </li>
<li>Press and hold the Control key and click the Installer icon. </li>
<li>In the contextual menu that appears, choose <strong>Show Package Contents</strong>. </li>
<li>In the package contents, navigate to Contents/Installers. </li>
<li>Control-click RemoteDesktopAdmin.pkg and choose Show Package Contents. </li>
<li>In the package contents, double-click the Archive.pax.gz file to expand it. </li>
<li>In the expanded archive, navigate to Archive/Applications/ and drag Remote Desktop to your Applications folder. </li>
<li>Run <a href="http://support.apple.com/kb/TS4055">Software Update</a> immediately to update Remote Desktop to the latest version. </li>
</ol>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Ftechmix.net%2Fblog%2F2012%2F08%2F17%2Finstalling-apple-remote-desktop-in-os-x-lion-or-mountain-lion%2F&amp;title=Installing%20Apple%20Remote%20Desktop%20in%20OS%20X%20Lion%20or%20Mountain%20Lion" id="wpa2a_8"><img src="http://techmix.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><div id="wp_fb_like_button" style="margin: 0; float: none"><iframe src="http://www.facebook.com/plugins/like.php?href=http://techmix.net/blog/2012/08/17/installing-apple-remote-desktop-in-os-x-lion-or-mountain-lion/&amp;layout=standard&amp;show_faces=true&amp;action=like&amp;colorscheme=light&amp;width=450&amp;height=100" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width: 450px; height: 100px;"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://techmix.net/blog/2012/08/17/installing-apple-remote-desktop-in-os-x-lion-or-mountain-lion/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Free up space on your Mac with 10 tips</title>
		<link>http://techmix.net/blog/2012/08/15/free-up-space-on-your-mac-with-10-tips/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=free-up-space-on-your-mac-with-10-tips</link>
		<comments>http://techmix.net/blog/2012/08/15/free-up-space-on-your-mac-with-10-tips/#comments</comments>
		<pubDate>Wed, 15 Aug 2012 15:39:37 +0000</pubDate>
		<dc:creator>number.0</dc:creator>
				<category><![CDATA[MACOSX]]></category>
		<category><![CDATA[TIPS & TRICKS]]></category>
		<category><![CDATA[clear cache]]></category>
		<category><![CDATA[uninstall]]></category>

		<guid isPermaLink="false">http://techmix.net/blog/?p=1026</guid>
		<description><![CDATA[Your hard disk is filled with video, music, podcasts, games, applications and documents. Well, following these ten tips might give you the chance to rescue the valued space Download AppZapper,...]]></description>
			<content:encoded><![CDATA[<p>Your hard disk is filled with video, music, podcasts, games, applications and documents. Well, following these ten tips might give you the chance to rescue the valued space</p>
<p><a href="http://techmix.net/blog/wp-content/uploads/2012/08/mac-clean.jpg"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="mac-clean" border="0" alt="mac-clean" src="http://techmix.net/blog/wp-content/uploads/2012/08/mac-clean_thumb.jpg" width="482" height="482" /></a></p>
<ol>
<li>Download <a href="http://appzapper.com/" target="_blank">AppZapper</a>, go through your Application folder, drag and drop any unused applications to the AppZapper windows to regain the space. </li>
<li>Download <a href="http://monolingual.sourceforge.net/" target="_blank">Monolingual</a>, these help you to remove unused locale, this can free up to 2GB of space for you easily </li>
<li>Open up iPhone and delete photos that you no longer need. Remember to empty iPhoto own’s trash. </li>
<li>Spend some time and go though your documents, movies, and picture folder, delete any junk that you no longer have any use. </li>
<li>Open up iTunes and delete all the music and podcasts you no longer like or need </li>
<li>Clear old email messages in Apple’s Mail </li>
<li>Go go <strong>Library-&gt;Caches</strong> and delete anything related to the applications have been uninstalled, repeat the same process for the<strong> Library-&gt; Preferences</strong> </li>
<li>Remove XCode installer from the Installers folder in your Application folder if you have it </li>
<li>Go to <strong>Music –&gt; GarageBand</strong> and delete any demo songs </li>
<li>Delete the “icons” folder from <strong>Libaray –&gt; Safari</strong>, this folder store all the icons on the websites, appear next to the web-url. This will also speed up your Safari web browsing </li>
</ol>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Ftechmix.net%2Fblog%2F2012%2F08%2F15%2Ffree-up-space-on-your-mac-with-10-tips%2F&amp;title=Free%20up%20space%20on%20your%20Mac%20with%2010%20tips" id="wpa2a_10"><img src="http://techmix.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><div id="wp_fb_like_button" style="margin: 0; float: none"><iframe src="http://www.facebook.com/plugins/like.php?href=http://techmix.net/blog/2012/08/15/free-up-space-on-your-mac-with-10-tips/&amp;layout=standard&amp;show_faces=true&amp;action=like&amp;colorscheme=light&amp;width=450&amp;height=100" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width: 450px; height: 100px;"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://techmix.net/blog/2012/08/15/free-up-space-on-your-mac-with-10-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Close your MacBook without going to sleep</title>
		<link>http://techmix.net/blog/2012/08/14/close-your-macbook-without-going-to-sleep/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=close-your-macbook-without-going-to-sleep</link>
		<comments>http://techmix.net/blog/2012/08/14/close-your-macbook-without-going-to-sleep/#comments</comments>
		<pubDate>Tue, 14 Aug 2012 01:19:31 +0000</pubDate>
		<dc:creator>number.0</dc:creator>
				<category><![CDATA[MACOSX]]></category>
		<category><![CDATA[TIPS & TRICKS]]></category>
		<category><![CDATA[freewares]]></category>
		<category><![CDATA[utility]]></category>

		<guid isPermaLink="false">http://techmix.net/blog/?p=1021</guid>
		<description><![CDATA[macosx-nosleep-extension consists of kext and userspace tools that help to manage your Mac sleep behavior. NoSleep makes closing of your MacBook lid possible without going to a sleep mode. Now...]]></description>
			<content:encoded><![CDATA[<p>macosx-nosleep-extension consists of kext and userspace tools that help to manage your Mac sleep behavior.</p>
<p><strong><a href="http://techmix.net/blog/wp-content/uploads/2012/08/nosleep.jpg"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="nosleep" border="0" alt="nosleep" src="http://techmix.net/blog/wp-content/uploads/2012/08/nosleep_thumb.jpg" width="644" height="404" /></a></strong></p>
<p align="justify"><strong>NoSleep</strong> makes closing of your MacBook lid possible without going to a sleep mode. Now you shouldn&#8217;t have to plug your mouse and monitor to stay computer awake &#8211; just activate it by clicking a menu bar icon or check a tick in the System Preferences and continue downloading huge files and watching favorite movies over the network with lid closed. This is a very popular use-case that the Mac should support internally. Now you have NoSleep to be your friend when you want to close the lid but keep your Mac running as usual.</p>
<p><a href="http://techmix.net/blog/wp-content/uploads/2012/08/nosleep.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="nosleep" border="0" alt="nosleep" src="http://techmix.net/blog/wp-content/uploads/2012/08/nosleep_thumb.png" width="644" height="447" /></a></p>
<p>You can download NoSleep for free <a href="http://code.google.com/p/macosx-nosleep-extension/" target="_blank">here</a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Ftechmix.net%2Fblog%2F2012%2F08%2F14%2Fclose-your-macbook-without-going-to-sleep%2F&amp;title=Close%20your%20MacBook%20without%20going%20to%20sleep" id="wpa2a_12"><img src="http://techmix.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><div id="wp_fb_like_button" style="margin: 0; float: none"><iframe src="http://www.facebook.com/plugins/like.php?href=http://techmix.net/blog/2012/08/14/close-your-macbook-without-going-to-sleep/&amp;layout=standard&amp;show_faces=true&amp;action=like&amp;colorscheme=light&amp;width=450&amp;height=100" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width: 450px; height: 100px;"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://techmix.net/blog/2012/08/14/close-your-macbook-without-going-to-sleep/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Display application&#8217;s path of running process in Windows</title>
		<link>http://techmix.net/blog/2012/08/11/display-applications-path-of-running-process-in-windows/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=display-applications-path-of-running-process-in-windows</link>
		<comments>http://techmix.net/blog/2012/08/11/display-applications-path-of-running-process-in-windows/#comments</comments>
		<pubDate>Sat, 11 Aug 2012 06:50:24 +0000</pubDate>
		<dc:creator>number.0</dc:creator>
				<category><![CDATA[TIPS & TRICKS]]></category>
		<category><![CDATA[WINDOWS]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[process]]></category>

		<guid isPermaLink="false">http://techmix.net/blog/?p=1015</guid>
		<description><![CDATA[Normally you use Task Manager to see which processes are running, but from that you don’t know which application they belong to. Luckily, with these simple commandlines, you can easily...]]></description>
			<content:encoded><![CDATA[<p>Normally you use Task Manager to see which processes are running, but from that you don’t know which application they belong to. Luckily, with these simple commandlines, you can easily see the full path of the process’s application</p>
<p><a href="http://techmix.net/blog/wp-content/uploads/2012/08/cmd.png"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="cmd" border="0" alt="cmd" src="http://techmix.net/blog/wp-content/uploads/2012/08/cmd_thumb.png" width="644" height="375" /></a></p>
<p>1. Start –&gt; Run –&gt; CMD</p>
<p>2. Enter the command line:</p>
<p><strong>WMIC /OUTPUT:C:\ProcessList.txt PROCESS get Caption,Commandline,Processid</strong></p>
<p>OR</p>
<p><strong>WMIC /OUTPUT:C:\ProcessList.txt path win32_process get Caption,Processid,Commandline</strong></p>
<p>3. Open the C:\ProcessList.txt and you get the full path of the running application’s process</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Ftechmix.net%2Fblog%2F2012%2F08%2F11%2Fdisplay-applications-path-of-running-process-in-windows%2F&amp;title=Display%20application%E2%80%99s%20path%20of%20running%20process%20in%20Windows" id="wpa2a_14"><img src="http://techmix.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><div id="wp_fb_like_button" style="margin: 0; float: none"><iframe src="http://www.facebook.com/plugins/like.php?href=http://techmix.net/blog/2012/08/11/display-applications-path-of-running-process-in-windows/&amp;layout=standard&amp;show_faces=true&amp;action=like&amp;colorscheme=light&amp;width=450&amp;height=100" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width: 450px; height: 100px;"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://techmix.net/blog/2012/08/11/display-applications-path-of-running-process-in-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install Python 2.7 on BlueHost in 4 steps</title>
		<link>http://techmix.net/blog/2012/07/22/how-to-install-python-2-7-on-bluehost-in-4-steps/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-install-python-2-7-on-bluehost-in-4-steps</link>
		<comments>http://techmix.net/blog/2012/07/22/how-to-install-python-2-7-on-bluehost-in-4-steps/#comments</comments>
		<pubDate>Sun, 22 Jul 2012 15:31:21 +0000</pubDate>
		<dc:creator>number.0</dc:creator>
				<category><![CDATA[LINUX]]></category>
		<category><![CDATA[TIPS & TRICKS]]></category>
		<category><![CDATA[bluehost]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://techmix.net/blog/?p=1010</guid>
		<description><![CDATA[1. DOWNLOAD wget http://www.python.org/ftp/python/2.7.2/Python-2.7.2.tgz tar zxvf Python-2.7.2.tgz 2. INSTALL cd Python-2.7.2 ./configure –prefix=/home/&#60;your account&#62;/opt/python272 --enable-unicode=ucs4 make make install 3. TEST Now try to run: /home/&#60;your account&#62;/opt/python272/bin/python 4. MAKE IT YOUR...]]></description>
			<content:encoded><![CDATA[<h2>1. DOWNLOAD</h2>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">wget http://www.python.org/ftp/python/2.7.2/Python-2.7.2.tgz
tar zxvf Python-2.7.2.tgz</pre></td></tr></table></div>

<h2>2. INSTALL</h2>
<p>cd Python-2.7.2</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">./configure –prefix=/home/&lt;your account&gt;/opt/python272 --enable-unicode=ucs4
make
make install</pre></td></tr></table></div>

<h2>3. TEST</h2>
<p>Now try to run:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">/home/&lt;your account&gt;/opt/python272/bin/python</pre></td></tr></table></div>

<h2>4. MAKE IT YOUR DEFAULT PYTHON</h2>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">$vim ~/.bashrc</pre></td></tr></table></div>

<p>add the following line</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">export PATH=/home/&lt;your account&gt;/opt/python272/bin:$PATH</pre></td></tr></table></div>

<p>reload the session</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="shell" style="font-family:monospace;">$source ~/.bashrc</pre></td></tr></table></div>

<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Ftechmix.net%2Fblog%2F2012%2F07%2F22%2Fhow-to-install-python-2-7-on-bluehost-in-4-steps%2F&amp;title=How%20to%20install%20Python%202.7%20on%20BlueHost%20in%204%20steps" id="wpa2a_16"><img src="http://techmix.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><div id="wp_fb_like_button" style="margin: 0; float: none"><iframe src="http://www.facebook.com/plugins/like.php?href=http://techmix.net/blog/2012/07/22/how-to-install-python-2-7-on-bluehost-in-4-steps/&amp;layout=standard&amp;show_faces=true&amp;action=like&amp;colorscheme=light&amp;width=450&amp;height=100" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width: 450px; height: 100px;"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://techmix.net/blog/2012/07/22/how-to-install-python-2-7-on-bluehost-in-4-steps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to calculate MD5 in Linux</title>
		<link>http://techmix.net/blog/2012/06/03/how-to-calculate-md5-in-linux/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-calculate-md5-in-linux</link>
		<comments>http://techmix.net/blog/2012/06/03/how-to-calculate-md5-in-linux/#comments</comments>
		<pubDate>Sun, 03 Jun 2012 03:21:05 +0000</pubDate>
		<dc:creator>number.0</dc:creator>
				<category><![CDATA[LINUX]]></category>
		<category><![CDATA[TIPS & TRICKS]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[md5]]></category>
		<category><![CDATA[openssl]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://techmix.net/blog/?p=1007</guid>
		<description><![CDATA[Well, there are many ways to calculate MD5 hash of a string, in this post, I show you 3 command line that you can find them handy to get MD5...]]></description>
			<content:encoded><![CDATA[<p>Well, there are many ways to calculate MD5 hash of a string, in this post, I show you 3 command line that you can find them handy to get MD5 hash quickly and easily</p>
<p>&#160;</p>
<p><strong>1. Using PHP</strong></p>
<p>If you have PHP installed on your system then do the following command</p>
<blockquote><p>php –r ‘print md5(“MD5 in Linux”);’</p>
</blockquote>
<p><strong>2. Using OpenSSL</strong></p>
<p>This required OpenSSL installed on you system</p>
<blockquote><p>echo –n ‘MD5 in Linux’ | openssl md5</p>
</blockquote>
<p><strong>3. Using md5sum</strong></p>
<blockquote><p>echo –n ‘MD5 in Linux’ | md5sum -</p>
</blockquote>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Ftechmix.net%2Fblog%2F2012%2F06%2F03%2Fhow-to-calculate-md5-in-linux%2F&amp;title=How%20to%20calculate%20MD5%20in%20Linux" id="wpa2a_18"><img src="http://techmix.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><div id="wp_fb_like_button" style="margin: 0; float: none"><iframe src="http://www.facebook.com/plugins/like.php?href=http://techmix.net/blog/2012/06/03/how-to-calculate-md5-in-linux/&amp;layout=standard&amp;show_faces=true&amp;action=like&amp;colorscheme=light&amp;width=450&amp;height=100" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width: 450px; height: 100px;"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://techmix.net/blog/2012/06/03/how-to-calculate-md5-in-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Navicat &#8211; Error 2006 MySQL server has gone away</title>
		<link>http://techmix.net/blog/2012/05/26/navicat-error-2006-mysql-server-has-gone-away/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=navicat-error-2006-mysql-server-has-gone-away</link>
		<comments>http://techmix.net/blog/2012/05/26/navicat-error-2006-mysql-server-has-gone-away/#comments</comments>
		<pubDate>Sat, 26 May 2012 14:08:17 +0000</pubDate>
		<dc:creator>number.0</dc:creator>
				<category><![CDATA[TIPS & TRICKS]]></category>
		<category><![CDATA[WINDOWS]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[navicat]]></category>
		<category><![CDATA[problem]]></category>

		<guid isPermaLink="false">http://techmix.net/blog/?p=1005</guid>
		<description><![CDATA[When trying to restore a backup from Navicat, I got the Error 2006 which said that MySQL server has gone away. Looking around and I figured out that it’s because...]]></description>
			<content:encoded><![CDATA[<p>When trying to restore a backup from Navicat, I got the Error 2006 which said that MySQL server has gone away. Looking around and I figured out that it’s because of the max_allowed_packet setting.</p>
<p><a href="http://techmix.net/blog/wp-content/uploads/2012/05/navicat.jpg"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="navicat" border="0" alt="navicat" src="http://techmix.net/blog/wp-content/uploads/2012/05/navicat_thumb.jpg" width="551" height="480" /></a></p>
<p>So, to fix the problem, edit your MySQL configuration file (my.cnf) and change (or add if it doesn’t exist) the parameter</p>
<blockquote><p>max_allowed_packet=80M</p>
</blockquote>
<p>Hope that works for you, too!</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Ftechmix.net%2Fblog%2F2012%2F05%2F26%2Fnavicat-error-2006-mysql-server-has-gone-away%2F&amp;title=Navicat%20%E2%80%93%20Error%202006%20MySQL%20server%20has%20gone%20away" id="wpa2a_20"><img src="http://techmix.net/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p><div id="wp_fb_like_button" style="margin: 0; float: none"><iframe src="http://www.facebook.com/plugins/like.php?href=http://techmix.net/blog/2012/05/26/navicat-error-2006-mysql-server-has-gone-away/&amp;layout=standard&amp;show_faces=true&amp;action=like&amp;colorscheme=light&amp;width=450&amp;height=100" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width: 450px; height: 100px;"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://techmix.net/blog/2012/05/26/navicat-error-2006-mysql-server-has-gone-away/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
