<?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>Non Geek Recipes</title>
	<atom:link href="http://nongeekrecipes.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://nongeekrecipes.org</link>
	<description>We solve problems, the easy way.</description>
	<lastBuildDate>Tue, 19 Feb 2013 04:55:37 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>How do I duplicate the permissions of one file to another file from Mac OS shell?</title>
		<link>http://nongeekrecipes.org/2013/02/18/how-do-i-duplicate-the-permissions-of-one-file-to-another-file-on-mac-os/</link>
		<comments>http://nongeekrecipes.org/2013/02/18/how-do-i-duplicate-the-permissions-of-one-file-to-another-file-on-mac-os/#comments</comments>
		<pubDate>Tue, 19 Feb 2013 04:55:37 +0000</pubDate>
		<dc:creator>Marco Zuliani</dc:creator>
				<category><![CDATA[Mac Tips]]></category>
		<category><![CDATA[Recipes]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[chmod]]></category>
		<category><![CDATA[duplicate permissions]]></category>
		<category><![CDATA[Mac OS]]></category>

		<guid isPermaLink="false">http://nongeekrecipes.org/?p=1222</guid>
		<description><![CDATA[Like this: chmod `stat -f %A srcFile` dstFile The same command can be used also on folders. Note that the option --reference discussed here will not work on Mac OS. See this discussion for more information.]]></description>
		<wfw:commentRss>http://nongeekrecipes.org/2013/02/18/how-do-i-duplicate-the-permissions-of-one-file-to-another-file-on-mac-os/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is there a python equivalent of the matlab command keyboard?</title>
		<link>http://nongeekrecipes.org/2013/02/16/is-there-a-python-equivalent-of-the-matlab-command-keyboard/</link>
		<comments>http://nongeekrecipes.org/2013/02/16/is-there-a-python-equivalent-of-the-matlab-command-keyboard/#comments</comments>
		<pubDate>Sun, 17 Feb 2013 06:23:48 +0000</pubDate>
		<dc:creator>Marco Zuliani</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[Recipes]]></category>
		<category><![CDATA[debugging]]></category>
		<category><![CDATA[keyboard]]></category>

		<guid isPermaLink="false">http://nongeekrecipes.org/?p=1219</guid>
		<description><![CDATA[Sort of. Wherever you want to stop the execution of your code to have access to the python prompt (and to the current local variables) just insert the lines: To resume the execution press Ctrl-D.]]></description>
		<wfw:commentRss>http://nongeekrecipes.org/2013/02/16/is-there-a-python-equivalent-of-the-matlab-command-keyboard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I list the combinations of a set in lexicographical order?</title>
		<link>http://nongeekrecipes.org/2012/12/01/how-do-i-list-the-combinations-of-a-set-in-lexicographical-order/</link>
		<comments>http://nongeekrecipes.org/2012/12/01/how-do-i-list-the-combinations-of-a-set-in-lexicographical-order/#comments</comments>
		<pubDate>Sun, 02 Dec 2012 07:34:29 +0000</pubDate>
		<dc:creator>Marco Zuliani</dc:creator>
				<category><![CDATA[Math]]></category>
		<category><![CDATA[Matlab]]></category>
		<category><![CDATA[Octave]]></category>
		<category><![CDATA[Recipes]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[combinations]]></category>
		<category><![CDATA[lexicographical]]></category>
		<category><![CDATA[matlab]]></category>

		<guid isPermaLink="false">http://nongeekrecipes.org/?p=1146</guid>
		<description><![CDATA[Suppose we have a set composed of elements. Our goal is to list all the possible ways in which we can choose elements in a lexicographical order. Intuitively speaking, we want to postpone as long as possible the selection of elements with larger indices. The total number of combinations is given by the binomial coefficient <a class="read-more-link" href="http://nongeekrecipes.org/2012/12/01/how-do-i-list-the-combinations-of-a-set-in-lexicographical-order/"><br />...read more</a>]]></description>
		<wfw:commentRss>http://nongeekrecipes.org/2012/12/01/how-do-i-list-the-combinations-of-a-set-in-lexicographical-order/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is the recommended shebang line for Python?</title>
		<link>http://nongeekrecipes.org/2012/11/30/what-is-the-recommended-shebang-line-for-python/</link>
		<comments>http://nongeekrecipes.org/2012/11/30/what-is-the-recommended-shebang-line-for-python/#comments</comments>
		<pubDate>Sat, 01 Dec 2012 03:12:46 +0000</pubDate>
		<dc:creator>Marco Zuliani</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Recipes]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[shebang]]></category>

		<guid isPermaLink="false">http://nongeekrecipes.org/?p=1140</guid>
		<description><![CDATA[#!/usr/bin/env python]]></description>
		<wfw:commentRss>http://nongeekrecipes.org/2012/11/30/what-is-the-recommended-shebang-line-for-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I solve the &#8220;unrecognized project; missing plug-in?&#8221; error in NetBeans?</title>
		<link>http://nongeekrecipes.org/2012/10/24/i-cannot-load-a-netbeans-project-and-i-get-the-error-unrecognized-project-missing-plug-in-what-should-i-do/</link>
		<comments>http://nongeekrecipes.org/2012/10/24/i-cannot-load-a-netbeans-project-and-i-get-the-error-unrecognized-project-missing-plug-in-what-should-i-do/#comments</comments>
		<pubDate>Thu, 25 Oct 2012 02:48:46 +0000</pubDate>
		<dc:creator>Francesco Zuliani</dc:creator>
				<category><![CDATA[Glassfish]]></category>
		<category><![CDATA[Mac Tips]]></category>
		<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[PrimeFaces]]></category>
		<category><![CDATA[Recipes]]></category>
		<category><![CDATA[Windows Tips]]></category>
		<category><![CDATA[GlassFish]]></category>
		<category><![CDATA[Tomcat]]></category>

		<guid isPermaLink="false">http://nongeekrecipes.org/?p=1079</guid>
		<description><![CDATA[A NetBeans project is basically a standard folder with a nbproject folder inside it. When opening a project using the Open Project dialog window, NetBeans should be able to automatically recognize it and display the project folder with a particular icon depending on the type of the project. Sometimes, when trying to open a project, <a class="read-more-link" href="http://nongeekrecipes.org/2012/10/24/i-cannot-load-a-netbeans-project-and-i-get-the-error-unrecognized-project-missing-plug-in-what-should-i-do/"><br />...read more</a>]]></description>
		<wfw:commentRss>http://nongeekrecipes.org/2012/10/24/i-cannot-load-a-netbeans-project-and-i-get-the-error-unrecognized-project-missing-plug-in-what-should-i-do/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I install the cocos2D templates for Xcode?</title>
		<link>http://nongeekrecipes.org/2012/10/13/how-do-i-install-the-cocos2d-templates-for-xcode/</link>
		<comments>http://nongeekrecipes.org/2012/10/13/how-do-i-install-the-cocos2d-templates-for-xcode/#comments</comments>
		<pubDate>Sat, 13 Oct 2012 19:50:15 +0000</pubDate>
		<dc:creator>Francesco Zuliani</dc:creator>
				<category><![CDATA[cocos2D]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[Recipes]]></category>
		<category><![CDATA[Xcode]]></category>
		<category><![CDATA[cocos2D Xcode]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://nongeekrecipes.org/?p=1054</guid>
		<description><![CDATA[cocos2D is an open source framework for creating 2D games on a variety of different platforms. The Mac OS X / iOS porting includes some useful templates for Xcode providing the backbone code for a new cocos2D application. After they are installed, they will be available in the &#8220;New Project&#8221; window of Xcode. To install <a class="read-more-link" href="http://nongeekrecipes.org/2012/10/13/how-do-i-install-the-cocos2d-templates-for-xcode/"><br />...read more</a>]]></description>
		<wfw:commentRss>http://nongeekrecipes.org/2012/10/13/how-do-i-install-the-cocos2d-templates-for-xcode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I search a set of files and batch process them?</title>
		<link>http://nongeekrecipes.org/2012/08/11/how-do-i-batch-process-a-set-of-files/</link>
		<comments>http://nongeekrecipes.org/2012/08/11/how-do-i-batch-process-a-set-of-files/#comments</comments>
		<pubDate>Sun, 12 Aug 2012 01:18:16 +0000</pubDate>
		<dc:creator>Marco Zuliani</dc:creator>
				<category><![CDATA[Content Type]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[batch processing]]></category>
		<category><![CDATA[fileProcessor]]></category>
		<category><![CDATA[image thumbnails]]></category>
		<category><![CDATA[parallel]]></category>

		<guid isPermaLink="false">http://nongeekrecipes.org/?p=954</guid>
		<description><![CDATA[Let&#8217;s consider the following scenario. You have a folder containing, amongst the others, a specific subset of files to which you want to apply a command and collect the output in a specified folder. Then you may consider using our Python script fileProcessor.py available at github. The program options are summarized in the table below: <a class="read-more-link" href="http://nongeekrecipes.org/2012/08/11/how-do-i-batch-process-a-set-of-files/"><br />...read more</a>]]></description>
		<wfw:commentRss>http://nongeekrecipes.org/2012/08/11/how-do-i-batch-process-a-set-of-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How can I add Facebook sharing in Safari 6?</title>
		<link>http://nongeekrecipes.org/2012/08/09/facebook-sharing-in-safari-6/</link>
		<comments>http://nongeekrecipes.org/2012/08/09/facebook-sharing-in-safari-6/#comments</comments>
		<pubDate>Thu, 09 Aug 2012 08:00:20 +0000</pubDate>
		<dc:creator>Francesco Zuliani</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Mac Tips]]></category>
		<category><![CDATA[Recipes]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Mountain Lion]]></category>

		<guid isPermaLink="false">http://nongeekrecipes.org/?p=1017</guid>
		<description><![CDATA[Share with Facebook is a small extension that adds Facebook Sharing in Safari 6. Once installed, it will display a button with the Facebook logo in the browser toolbar. Tip: when you click the Facebook share button, a new page will appear, and will not close automatically when you press the &#8220;Share Link&#8221; button. You <a class="read-more-link" href="http://nongeekrecipes.org/2012/08/09/facebook-sharing-in-safari-6/"><br />...read more</a>]]></description>
		<wfw:commentRss>http://nongeekrecipes.org/2012/08/09/facebook-sharing-in-safari-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Chrome is displaying a blank page icon in the address bar when I visit a webpage. What happened?</title>
		<link>http://nongeekrecipes.org/2012/08/05/google-chrome-is-displaying-a-blank-page-icon-in-the-address-bar-on-every-webpage-i-visit-what-happened/</link>
		<comments>http://nongeekrecipes.org/2012/08/05/google-chrome-is-displaying-a-blank-page-icon-in-the-address-bar-on-every-webpage-i-visit-what-happened/#comments</comments>
		<pubDate>Sun, 05 Aug 2012 23:56:04 +0000</pubDate>
		<dc:creator>Francesco Zuliani</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Mac Tips]]></category>
		<category><![CDATA[Recipes]]></category>
		<category><![CDATA[Windows Tips]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://nongeekrecipes.org/?p=991</guid>
		<description><![CDATA[Starting from version 21.0.1180.57, Chrome is displaying a blank page icon in the address bar that looks like this: This is NOT a bug, but just a new feature introduced in the latest versions of Chrome that lets the user know about the security of the connection that the browser established with the website: More <a class="read-more-link" href="http://nongeekrecipes.org/2012/08/05/google-chrome-is-displaying-a-blank-page-icon-in-the-address-bar-on-every-webpage-i-visit-what-happened/"><br />...read more</a>]]></description>
		<wfw:commentRss>http://nongeekrecipes.org/2012/08/05/google-chrome-is-displaying-a-blank-page-icon-in-the-address-bar-on-every-webpage-i-visit-what-happened/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How do I set up a USB communication with an NXT brick running nxtOSEK?</title>
		<link>http://nongeekrecipes.org/2012/07/21/how-do-i-set-up-a-usb-communication-with-an-nxt-brick-running-nxtosek/</link>
		<comments>http://nongeekrecipes.org/2012/07/21/how-do-i-set-up-a-usb-communication-with-an-nxt-brick-running-nxtosek/#comments</comments>
		<pubDate>Sun, 22 Jul 2012 05:58:15 +0000</pubDate>
		<dc:creator>Marco Zuliani</dc:creator>
				<category><![CDATA[LEGO]]></category>
		<category><![CDATA[NXT Brick]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Mindstorm]]></category>
		<category><![CDATA[NXT]]></category>
		<category><![CDATA[nxtOSEK]]></category>
		<category><![CDATA[PyUSB]]></category>
		<category><![CDATA[usb]]></category>

		<guid isPermaLink="false">http://nongeekrecipes.org/?p=872</guid>
		<description><![CDATA[Introduction In this tutorial we will implement a simple application to study how to establish a communication between a Mac (running Snow Leopard, but everything should apply to newer versions of the OS) and a NXT brick running nxtOSEK. The software module running on the brick is written in C, whereas the one running on <a class="read-more-link" href="http://nongeekrecipes.org/2012/07/21/how-do-i-set-up-a-usb-communication-with-an-nxt-brick-running-nxtosek/"><br />...read more</a>]]></description>
		<wfw:commentRss>http://nongeekrecipes.org/2012/07/21/how-do-i-set-up-a-usb-communication-with-an-nxt-brick-running-nxtosek/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 1.974 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2013-05-18 05:35:36 -->

<!-- Compression = gzip -->