<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for a little madness</title>
	<atom:link href="http://www.alittlemadness.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.alittlemadness.com</link>
	<description>A man needs a little madness, or else he never dares cut the rope and be free -Nikos Kazantzakis</description>
	<lastBuildDate>Thu, 02 May 2013 02:35:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
	<item>
		<title>Comment on Bash Tip: Exit on Error by Jason</title>
		<link>http://www.alittlemadness.com/2006/05/24/bash-tip-exit-on-error/comment-page-1/#comment-782808</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Thu, 02 May 2013 02:35:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.alittlemadness.com/?p=15#comment-782808</guid>
		<description>One way would be to add &quot;&#124;&#124; true&quot; to the end of commands that you don&#039;t care about the exit code of.  So:

egrep &#039;[a-z]+&#039; myfile.txt &#124;&#124; true</description>
		<content:encoded><![CDATA[<p>One way would be to add &#8220;|| true&#8221; to the end of commands that you don&#8217;t care about the exit code of.  So:</p>
<p>egrep &#8216;[a-z]+&#8217; myfile.txt || true</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Android Ant Builds: Targeting a Specific Device by Jason</title>
		<link>http://www.alittlemadness.com/2010/06/15/android-ant-builds-targeting-a-specific-device/comment-page-1/#comment-782805</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Thu, 02 May 2013 02:31:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.alittlemadness.com/?p=647#comment-782805</guid>
		<description>You can specify real devices attached to USB in the same way, you just need the serial number.  You can see this in the output of &quot;adb devices&quot; (first column).  Just set adb.device.arg to &quot;-s &lt;serial for real device&gt;&quot;.</description>
		<content:encoded><![CDATA[<p>You can specify real devices attached to USB in the same way, you just need the serial number.  You can see this in the output of &#8220;adb devices&#8221; (first column).  Just set adb.device.arg to &#8220;-s <serial for real device>&#8220;.</serial></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bash Tip: Exit on Error by Jay</title>
		<link>http://www.alittlemadness.com/2006/05/24/bash-tip-exit-on-error/comment-page-1/#comment-777158</link>
		<dc:creator>Jay</dc:creator>
		<pubDate>Wed, 24 Apr 2013 10:50:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.alittlemadness.com/?p=15#comment-777158</guid>
		<description>What to do if the exit-on-error is mixed with the opposite. That is, sometimes I need exit on error, sometimes I don&#039;t Want to exit if the return value is not 0. 
For example, if egrep does not find the pattern in a given string, it returns 1. In this case I don&#039;t want to exit.

A simple solution is to guard the statement with set +e and set -e. But this will make the scripts looking messy. 

Is there a better idea?</description>
		<content:encoded><![CDATA[<p>What to do if the exit-on-error is mixed with the opposite. That is, sometimes I need exit on error, sometimes I don&#8217;t Want to exit if the return value is not 0.<br />
For example, if egrep does not find the pattern in a given string, it returns 1. In this case I don&#8217;t want to exit.</p>
<p>A simple solution is to guard the statement with set +e and set -e. But this will make the scripts looking messy. </p>
<p>Is there a better idea?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Android Ant Builds: Targeting a Specific Device by Zerho</title>
		<link>http://www.alittlemadness.com/2010/06/15/android-ant-builds-targeting-a-specific-device/comment-page-1/#comment-775727</link>
		<dc:creator>Zerho</dc:creator>
		<pubDate>Mon, 22 Apr 2013 09:42:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.alittlemadness.com/?p=647#comment-775727</guid>
		<description>there is no way to use ant install with devices?
eve this way:
ant -Dadb.device.arg=&quot;-s emulator-5554&quot; install
you specified just the emulator not a real device.

suggestion? thanks</description>
		<content:encoded><![CDATA[<p>there is no way to use ant install with devices?<br />
eve this way:<br />
ant -Dadb.device.arg=&#8221;-s emulator-5554&#8243; install<br />
you specified just the emulator not a real device.</p>
<p>suggestion? thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C++ Unit Testing With Boost.Test by Testing C++ Skip Lists &#124; Partial Lattice</title>
		<link>http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/comment-page-1/#comment-771736</link>
		<dc:creator>Testing C++ Skip Lists &#124; Partial Lattice</dc:creator>
		<pubDate>Tue, 16 Apr 2013 14:50:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/#comment-771736</guid>
		<description>[...] details, let&#8217;s start with how to get Boost.Test up and running. I would recommend you start here. Sometime in between the Boost 1.34.1 he used and Boost 1.48, there was a change to the Boost unit [...]</description>
		<content:encoded><![CDATA[<p>[...] details, let&#8217;s start with how to get Boost.Test up and running. I would recommend you start here. Sometime in between the Boost 1.34.1 he used and Boost 1.48, there was a change to the Boost unit [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C++ Unit Testing With Boost.Test by jarrett</title>
		<link>http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/comment-page-1/#comment-771264</link>
		<dc:creator>jarrett</dc:creator>
		<pubDate>Mon, 15 Apr 2013 16:58:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/#comment-771264</guid>
		<description>I wish I could upvote this article :)</description>
		<content:encoded><![CDATA[<p>I wish I could upvote this article <img src='http://www.alittlemadness.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C++ Unit Testing With Boost.Test by Journeyer</title>
		<link>http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/comment-page-1/#comment-758087</link>
		<dc:creator>Journeyer</dc:creator>
		<pubDate>Sun, 24 Mar 2013 08:32:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.alittlemadness.com/2009/03/31/c-unit-testing-with-boosttest/#comment-758087</guid>
		<description>Thanks this is very much easy to understand about Boost.Test for me.
The official document is not that kind like this.</description>
		<content:encoded><![CDATA[<p>Thanks this is very much easy to understand about Boost.Test for me.<br />
The official document is not that kind like this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Running Selenium Headless by Pratt G</title>
		<link>http://www.alittlemadness.com/2008/03/05/running-selenium-headless/comment-page-1/#comment-743088</link>
		<dc:creator>Pratt G</dc:creator>
		<pubDate>Tue, 05 Mar 2013 10:28:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.alittlemadness.com/2008/03/05/running-selenium-headless/#comment-743088</guid>
		<description>Hi,
When I execute command as follows I get an error.

C:\sele&gt;java -jar selenium-server-standalone-2.25.0.jar -port 4546 -htmlSuite &quot;*firefox&quot; http://www.google.com/ &quot;C:\sele\test_sel.html&quot; &quot;C:\sele\test.html&quot;
Mar 5, 2013 3:53:56 PM org.openqa.grid.selenium.GridLauncher main
INFO: Launching a standalone server
15:53:56.399 INFO - Java: Sun Microsystems Inc. 17.0-b17
15:53:56.402 INFO - OS: Windows 7 6.1 x86
15:53:56.408 INFO - v2.25.0, with Core v2.25.0. Built from revision 17482
15:53:56.529 INFO - RemoteWebDriver instances should connect to: http://127.0.0.1:4546/wd/hub
15:53:56.553 INFO - Version Jetty/5.1.x
15:53:56.556 INFO - Started HttpContext[/selenium-server/driver,/selenium-server/driver]
15:53:56.557 INFO - Started HttpContext[/selenium-server,/selenium-server]
15:53:56.580 INFO - Started HttpContext[/,/]
15:53:56.972 INFO - Started org.openqa.jetty.jetty.servlet.ServletHandler@a32b
15:53:56.972 INFO - Started HttpContext[/wd,/wd]
15:53:56.998 INFO - Started SocketListener on 0.0.0.0:4546
15:53:57.001 INFO - Started org.openqa.jetty.jetty.Server@1050e1f
HTML suite exception seen:
java.lang.RuntimeException: java.lang.RuntimeException: Firefox 3 could not be f
ound in the path!
Please add the directory containing &#039;&#039;firefox.exe&#039;&#039; to your PATH environment
variable, or explicitly specify a path to Firefox 3 like this:
*firefox3 c:\blah\firefox.exe
        at org.openqa.selenium.server.browserlaunchers.BrowserLauncherFactory.createBrowserLauncher(BrowserLauncherFactory.java:175)
        at org.openqa.selenium.server.browserlaunchers.BrowserLauncherFactory.getBrowserLauncher(BrowserLauncherFactory.java:109)
        at org.openqa.selenium.server.htmlrunner.HTMLLauncher.getBrowserLauncher(HTMLLauncher.java:78)
        at org.openqa.selenium.server.htmlrunner.HTMLLauncher.runHTMLSuite(HTMLLauncher.java:138)
        at org.openqa.selenium.server.htmlrunner.HTMLLauncher.runHTMLSuite(HTMLLauncher.java:196)
        at org.openqa.selenium.server.SeleniumServer.runHtmlSuite(SeleniumServer.java:612)
        at org.openqa.selenium.server.SeleniumServer.boot(SeleniumServer.java:286)
        at org.openqa.selenium.server.SeleniumServer.main(SeleniumServer.java:244)
        at org.openqa.grid.selenium.GridLauncher.main(GridLauncher.java:54)
Caused by: java.lang.RuntimeException: Firefox 3 could not be found in the path!

Please add the directory containing &#039;&#039;firefox.exe&#039;&#039; to your PATH environment
variable, or explicitly specify a path to Firefox 3 like this:
*firefox3 c:\blah\firefox.exe
        at org.openqa.selenium.browserlaunchers.locators.CombinedFirefoxLocator.findBrowserLocationOrFail(CombinedFirefoxLocator.java:49)
        at org.openqa.selenium.server.browserlaunchers.BrowserInstallationCache.locateBrowserInstallation(BrowserInstallationCache.java:46)
        at org.openqa.selenium.server.browserlaunchers.FirefoxLauncher.(FirefoxLauncher.java:58)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
        at java.lang.reflect.Constructor.newInstance(Unknown Source)
        at org.openqa.selenium.server.browserlaunchers.BrowserLauncherFactory.createBrowserLauncher(BrowserLauncherFactory.java:164)
        ... 8 more


Please help me out with this error.

Thanks in advance</description>
		<content:encoded><![CDATA[<p>Hi,<br />
When I execute command as follows I get an error.</p>
<p>C:\sele&gt;java -jar selenium-server-standalone-2.25.0.jar -port 4546 -htmlSuite &#8220;*firefox&#8221; <a href="http://www.google.com/" rel="nofollow">http://www.google.com/</a> &#8220;C:\sele\test_sel.html&#8221; &#8220;C:\sele\test.html&#8221;<br />
Mar 5, 2013 3:53:56 PM org.openqa.grid.selenium.GridLauncher main<br />
INFO: Launching a standalone server<br />
15:53:56.399 INFO &#8211; Java: Sun Microsystems Inc. 17.0-b17<br />
15:53:56.402 INFO &#8211; OS: Windows 7 6.1 x86<br />
15:53:56.408 INFO &#8211; v2.25.0, with Core v2.25.0. Built from revision 17482<br />
15:53:56.529 INFO &#8211; RemoteWebDriver instances should connect to: <a href="http://127.0.0.1:4546/wd/hub" rel="nofollow">http://127.0.0.1:4546/wd/hub</a><br />
15:53:56.553 INFO &#8211; Version Jetty/5.1.x<br />
15:53:56.556 INFO &#8211; Started HttpContext[/selenium-server/driver,/selenium-server/driver]<br />
15:53:56.557 INFO &#8211; Started HttpContext[/selenium-server,/selenium-server]<br />
15:53:56.580 INFO &#8211; Started HttpContext[/,/]<br />
15:53:56.972 INFO &#8211; Started org.openqa.jetty.jetty.servlet.ServletHandler@a32b<br />
15:53:56.972 INFO &#8211; Started HttpContext[/wd,/wd]<br />
15:53:56.998 INFO &#8211; Started SocketListener on 0.0.0.0:4546<br />
15:53:57.001 INFO &#8211; Started org.openqa.jetty.jetty.Server@1050e1f<br />
HTML suite exception seen:<br />
java.lang.RuntimeException: java.lang.RuntimeException: Firefox 3 could not be f<br />
ound in the path!<br />
Please add the directory containing &#8221;firefox.exe&#8221; to your PATH environment<br />
variable, or explicitly specify a path to Firefox 3 like this:<br />
*firefox3 c:\blah\firefox.exe<br />
        at org.openqa.selenium.server.browserlaunchers.BrowserLauncherFactory.createBrowserLauncher(BrowserLauncherFactory.java:175)<br />
        at org.openqa.selenium.server.browserlaunchers.BrowserLauncherFactory.getBrowserLauncher(BrowserLauncherFactory.java:109)<br />
        at org.openqa.selenium.server.htmlrunner.HTMLLauncher.getBrowserLauncher(HTMLLauncher.java:78)<br />
        at org.openqa.selenium.server.htmlrunner.HTMLLauncher.runHTMLSuite(HTMLLauncher.java:138)<br />
        at org.openqa.selenium.server.htmlrunner.HTMLLauncher.runHTMLSuite(HTMLLauncher.java:196)<br />
        at org.openqa.selenium.server.SeleniumServer.runHtmlSuite(SeleniumServer.java:612)<br />
        at org.openqa.selenium.server.SeleniumServer.boot(SeleniumServer.java:286)<br />
        at org.openqa.selenium.server.SeleniumServer.main(SeleniumServer.java:244)<br />
        at org.openqa.grid.selenium.GridLauncher.main(GridLauncher.java:54)<br />
Caused by: java.lang.RuntimeException: Firefox 3 could not be found in the path!</p>
<p>Please add the directory containing &#8221;firefox.exe&#8221; to your PATH environment<br />
variable, or explicitly specify a path to Firefox 3 like this:<br />
*firefox3 c:\blah\firefox.exe<br />
        at org.openqa.selenium.browserlaunchers.locators.CombinedFirefoxLocator.findBrowserLocationOrFail(CombinedFirefoxLocator.java:49)<br />
        at org.openqa.selenium.server.browserlaunchers.BrowserInstallationCache.locateBrowserInstallation(BrowserInstallationCache.java:46)<br />
        at org.openqa.selenium.server.browserlaunchers.FirefoxLauncher.(FirefoxLauncher.java:58)<br />
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)<br />
        at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)<br />
        at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)<br />
        at java.lang.reflect.Constructor.newInstance(Unknown Source)<br />
        at org.openqa.selenium.server.browserlaunchers.BrowserLauncherFactory.createBrowserLauncher(BrowserLauncherFactory.java:164)<br />
        &#8230; 8 more</p>
<p>Please help me out with this error.</p>
<p>Thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Android: Attaching Sources to Libraries in Eclipse by &#124; Attaching Source Code to Android Libraries</title>
		<link>http://www.alittlemadness.com/2012/07/02/android-attaching-sources-to-libraries-in-eclipse/comment-page-1/#comment-723093</link>
		<dc:creator>&#124; Attaching Source Code to Android Libraries</dc:creator>
		<pubDate>Mon, 11 Feb 2013 13:49:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.alittlemadness.com/?p=816#comment-723093</guid>
		<description>[...] Attaching Source to Libraries in Eclipse [...]</description>
		<content:encoded><![CDATA[<p>[...] Attaching Source to Libraries in Eclipse [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Understanding the Android Build Process by Evgeni</title>
		<link>http://www.alittlemadness.com/2010/06/07/understanding-the-android-build-process/comment-page-1/#comment-714508</link>
		<dc:creator>Evgeni</dc:creator>
		<pubDate>Thu, 31 Jan 2013 11:18:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.alittlemadness.com/?p=618#comment-714508</guid>
		<description>Very nice explanation. Thank you.</description>
		<content:encoded><![CDATA[<p>Very nice explanation. Thank you.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
