<?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>words</title>
	<atom:link href="http://www.curlybrace.com/words/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.curlybrace.com/words</link>
	<description>by Jeff Fitzsimons</description>
	<lastBuildDate>Tue, 20 Dec 2011 10:21:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>What Exactly Are ATL&#8217;s BEGIN_COM_MAP, END_COM_MAP, and COM_INTERFACE_ENTRY Macros?</title>
		<link>http://www.curlybrace.com/words/2011/12/20/what-exactly-are-atls-begin_com_map-end_com_map-and-com_interface_entry/</link>
		<comments>http://www.curlybrace.com/words/2011/12/20/what-exactly-are-atls-begin_com_map-end_com_map-and-com_interface_entry/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 10:20:44 +0000</pubDate>
		<dc:creator>Jeff Fitzsimons</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[COM]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.curlybrace.com/words/?p=1959</guid>
		<description><![CDATA[There are many places where ATL&#8217;s COM_MAP macros are documented, but I haven&#8217;t seen it plainly stated what they actually mean. Simply put, BEGIN_COM_MAP implements _InternalQueryInterface. COM_INTERFACE_ENTRY indicates that your class supports the specified interface. END_COM_MAP finishes the _InternalQueryInterface implementation. &#8230; <a href="http://www.curlybrace.com/words/2011/12/20/what-exactly-are-atls-begin_com_map-end_com_map-and-com_interface_entry/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>There are many places where ATL&#8217;s COM_MAP macros are documented, but I haven&#8217;t seen it plainly stated what they actually mean.</p>
<p>Simply put, BEGIN_COM_MAP implements _InternalQueryInterface.  COM_INTERFACE_ENTRY indicates that your class supports the specified interface.  END_COM_MAP finishes the _InternalQueryInterface implementation.</p>
<blockquote><p>Note:  A QueryInterface implementation which calls this _InternalQueryInterface method must either be hand-coded, <a href="http://msdn.microsoft.com/en-us/library/c43h4867(v=VS.100).aspx">or supplied by CComObject, CComAggObject, etc</a>.</p></blockquote>
<p>For example:</p>
<blockquote><pre>
class MyClass :
    public CComObjectRoot,
    public ISomeInterface
{
public:
    BEGIN_COM_MAP(MyClass)
        COM_INTERFACE_ENTRY(ISomeInterface)
    END_COM_MAP()
};

CComClass<MyClass> myInstance = new CComClass<MyCLass>;
</pre>
</blockquote>
<p>The COM_INTERFACE_ENTRY line indicates that MyClass implements ISomeInterface.  If QueryInterface is called to requests an ISomeInterface pointer, the call will succeed.  Without the COM_INTERFACE_ENTRY line, the QueryInterface call would fail.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.curlybrace.com/words/2011/12/20/what-exactly-are-atls-begin_com_map-end_com_map-and-com_interface_entry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Skype 5.5 Cannot Display Asian Characters</title>
		<link>http://www.curlybrace.com/words/2011/11/22/skype-5-5-cannot-display-asian-characters/</link>
		<comments>http://www.curlybrace.com/words/2011/11/22/skype-5-5-cannot-display-asian-characters/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 03:34:59 +0000</pubDate>
		<dc:creator>Jeff Fitzsimons</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.curlybrace.com/words/?p=1937</guid>
		<description><![CDATA[After upgrading to Skype 5.5, I found that Japanese and Chinese characters showed as a series of boxes. I could type or paste them and they would be visible on the other end, but not on my end. Similarly, if &#8230; <a href="http://www.curlybrace.com/words/2011/11/22/skype-5-5-cannot-display-asian-characters/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>After upgrading to Skype 5.5, I found that Japanese and Chinese characters showed as a series of boxes.  I could type or paste them and they would be visible on the other end, but not on my end.  Similarly, if the other person wrote Asian characters, they would not render correctly, like this:</p>
<blockquote><p><img src="http://www.curlybrace.com/words/wp-content/uploads/2011/11/Skype_FontBug.png" alt="" title="Skype_FontBug" width="400" height="380" class="alignleft size-full wp-image-1945" /></p></blockquote>
<p><br clear=all /></p>
<p>A temporary fix is to change the IM font to Arial Unicode MS, which may have to be enabled from the control panel.  Here are the steps:</p>
<ol>
<li />In the Skype menu, select Tools | Options, then click on &#8220;IM &#038; SMS&#8221;, then &#8220;IM appearance&#8221;:<br />
<blockquote><p><img src="http://www.curlybrace.com/words/wp-content/uploads/2011/11/Skype_OptionsIMSMS.png" alt="" title="Skype_OptionsIMSMS" width="573" height="490" class="alignleft size-full wp-image-1939" /></p></blockquote>
<p><br clear=all /></p>
<li />Click on &#8220;Change font&#8221; to bring up the font dialog:<br />
<blockquote><p><img src="http://www.curlybrace.com/words/wp-content/uploads/2011/11/Skype_OptionsFont.png" alt="" title="Skype_OptionsFont" width="353" height="382" class="alignleft size-full wp-image-1938" /></p></blockquote>
<p><br clear=all /></p>
<li />If &#8220;Arial Unicode MS&#8221; is available, select it, click OK, then Save, and you&#8217;re done.
<p>If &#8220;Arial Unicode MS&#8221; is <b>not</b> available, then click &#8220;Show More Fonts&#8221; to bring up the Control Panel&#8217;s Font selector:</p>
<blockquote><p><img src="http://www.curlybrace.com/words/wp-content/uploads/2011/11/Skype_ControlPanelFonts.png" alt="" title="Skype_ControlPanelFonts" width="554" height="459" class="alignleft size-full wp-image-1940" /></p></blockquote>
<p><br clear=all /></p>
<li />Locate &#8220;Arial Unicode MS&#8221;, click on it to select it, then click on &#8220;Show&#8221; in the toolbar.  Close the Fonts window (click the red X).  You will have to close the Font dialog as well, then reopen it, in order for the Arial Unicode MS font to be displayed.<br />
<blockquote><p><img src="http://www.curlybrace.com/words/wp-content/uploads/2011/11/Skype_OptionsFontSet.png" alt="" title="Skype_OptionsFontSet" width="353" height="382" class="alignleft size-full wp-image-1949" /></p></blockquote>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.curlybrace.com/words/2011/11/22/skype-5-5-cannot-display-asian-characters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Things That Suck:  Ubuntu Unity</title>
		<link>http://www.curlybrace.com/words/2011/11/22/things-that-suck-ubuntu-unity/</link>
		<comments>http://www.curlybrace.com/words/2011/11/22/things-that-suck-ubuntu-unity/#comments</comments>
		<pubDate>Tue, 22 Nov 2011 21:53:13 +0000</pubDate>
		<dc:creator>Jeff Fitzsimons</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.curlybrace.com/words/?p=1921</guid>
		<description><![CDATA[I just upgraded my virtual machine to Unity. All the negatives I&#8217;d read rang true. The interface really does seem like a poor copy of OS X, for tablets. Complaints are often dismissed with a curt suggestion to switch distributions. &#8230; <a href="http://www.curlybrace.com/words/2011/11/22/things-that-suck-ubuntu-unity/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I just upgraded my virtual machine to Unity.  All the negatives I&#8217;d read rang true.  The interface really does seem like a poor copy of OS X, for tablets.  Complaints are often dismissed with a curt suggestion to switch distributions.  However, there is an inescapable truth:</p>
<blockquote><p><img src="http://www.curlybrace.com/words/wp-content/uploads/2011/11/UbuntuUnitySucks.png" alt="" title="UbuntuUnitySucks" width="561" height="576" /></p></blockquote>
<p><br style="clear:both;" /><br />
If the #2 Google suggestion is &#8220;<i>your product</i> sucks&#8221;, you can take it as strong evidence that you&#8217;ve made a poor product development decision.</p>
<p>Personally, I&#8217;m rolling my virtual machine back to a prior snapshot.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.curlybrace.com/words/2011/11/22/things-that-suck-ubuntu-unity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Virgin Mobile USA &#8211; No Data Connection (3G)</title>
		<link>http://www.curlybrace.com/words/2011/09/13/virgin-mobile-usa-no-data-connection/</link>
		<comments>http://www.curlybrace.com/words/2011/09/13/virgin-mobile-usa-no-data-connection/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 03:28:14 +0000</pubDate>
		<dc:creator>Jeff Fitzsimons</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.curlybrace.com/words/?p=1881</guid>
		<description><![CDATA[If you&#8217;ve been battling Virgin Mobile USA&#8217;s technical support drones and have been unable to get 3G data access, check that 3G data is enabled on your phone. From the main screen: Press the menu button Select Settings Select Wireless &#8230; <a href="http://www.curlybrace.com/words/2011/09/13/virgin-mobile-usa-no-data-connection/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve been battling Virgin Mobile USA&#8217;s technical support drones and have been unable to get 3G data access, check that 3G data is enabled on your phone.</p>
<p>From the main screen:</p>
<ul>
<li />Press the menu button
<li />Select Settings
<li />Select Wireless &#038; Networks
<li />Scroll to the bottom of the menu and select Mobile Networks
<li />Make sure &#8220;Data Enabled&#8221; has a green check mark next to it
</ul>
<p>Virgin Mobile USA (i.e. Sprint) was unable to solve this after three phone calls over the course of a day.  Their technical support script jumps straight into cellular network settings and battery removal.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.curlybrace.com/words/2011/09/13/virgin-mobile-usa-no-data-connection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Activating a Virgin Mobile Phone in a Different Area Code &#8211; Vanilla Visa Payment Problems</title>
		<link>http://www.curlybrace.com/words/2011/09/13/activating-a-virgin-mobile-phone-in-a-different-area-code-vanilla-visa-payment-problems/</link>
		<comments>http://www.curlybrace.com/words/2011/09/13/activating-a-virgin-mobile-phone-in-a-different-area-code-vanilla-visa-payment-problems/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 03:13:24 +0000</pubDate>
		<dc:creator>Jeff Fitzsimons</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.curlybrace.com/words/?p=1882</guid>
		<description><![CDATA[As an experiment in semi-anonymity, I thought I would see if I could activate my Virgin Mobile Optimus V in a more desirable area code than my own. After a bit of research, I decided to buy a $50 Vanilla &#8230; <a href="http://www.curlybrace.com/words/2011/09/13/activating-a-virgin-mobile-phone-in-a-different-area-code-vanilla-visa-payment-problems/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As an experiment in semi-anonymity, I thought I would see if I could activate my Virgin Mobile Optimus V in a more desirable area code than my own.  After a bit of research, I decided to buy a $50 Vanilla Visa prepaid debit card from Walgreens.  They claim the card can be used for online purchases, but you&#8217;ll need to register the card and provide a zip code for verification.  You can enter any zip code you like, and no personal information is required.</p>
<p>I was able to successfully create an account with Virgin Mobile in the desired area code.  However, the payment was rejected.  One possible reason is that  Virgin Mobile may not be able to process a credit card with an expiration date so far in the future.  The initial payment form used a text field for expiration year, so I could enter anything I wanted.  When I revised my payment method, the web form only allowed selection up to, I believe, 2016.  After I changed my payment method to a different, real credit card, the account was activated (though I still had problems with the phone being activated on the network).</p>
<p>So, first off, I&#8217;m pretty sure you could get the Virgin Mobile phone number in any area code you want, anyway, because the first step in their registration process asks your zip code.  Billing is done at a later point in the process, with its own zip code field.  Second, Vanilla Visa cards claim they can be used online, but since they have expiration dates far in the future, the website you want to buy from may not be set up to process them correctly.  Basically, the entire process was interesting, but a waste of time.</p>
<p>At some point, it might be fun to try again using a pseudonym.  When the online payment fails, one could call and attempt to resolve the payment over the phone.  The effort involved would quickly exceed my interest in anonymity, but it might be a fun exercise.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.curlybrace.com/words/2011/09/13/activating-a-virgin-mobile-phone-in-a-different-area-code-vanilla-visa-payment-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Source Control Use:  Git, Mercurial, Bazaar, DARCS, Subversion, Team Foundation Server, CVS</title>
		<link>http://www.curlybrace.com/words/2011/09/08/source-control-use-git-mercurial-bazaar-darcs-subversion-team-foundation-server-cvs/</link>
		<comments>http://www.curlybrace.com/words/2011/09/08/source-control-use-git-mercurial-bazaar-darcs-subversion-team-foundation-server-cvs/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 18:52:33 +0000</pubDate>
		<dc:creator>Jeff Fitzsimons</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.curlybrace.com/words/?p=1876</guid>
		<description><![CDATA[What version control system is really most popular? Not in terms of getting mentioned on blogs, but in real-world terms of jobs? git, hg or mercurial, bzr or bazaar, darcs, svn or subversion, tfs or &#034;team foundation server&#034;, cvs Job &#8230; <a href="http://www.curlybrace.com/words/2011/09/08/source-control-use-git-mercurial-bazaar-darcs-subversion-team-foundation-server-cvs/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>What version control system is really most popular?  Not in terms of getting mentioned on blogs, but in real-world terms of jobs?</p>
<blockquote><div style="width:540px">
<a href="http://www.indeed.com/jobtrends?q=git%2C+hg+or+mercurial%2C+bzr+or+bazaar%2C+darcs%2C+svn+or+subversion%2C+tfs+or+%22team+foundation+server%22%2C+cvs" title="git, hg or mercurial, bzr or bazaar, darcs, svn or subversion, tfs or &#034;team foundation server&#034;, cvs Job Trends"><br />
<img width="540" height="300" src="http://www.indeed.com/trendgraph/jobgraph.png?q=git%2C+hg+or+mercurial%2C+bzr+or+bazaar%2C+darcs%2C+svn+or+subversion%2C+tfs+or+%22team+foundation+server%22%2C+cvs" border="0" alt="git, hg or mercurial, bzr or bazaar, darcs, svn or subversion, tfs or &#034;team foundation server&#034;, cvs Job Trends graph"><br />
</a></p>
<table width="100%" cellpadding="6" cellspacing="0" border="0" style="font-size:80%">
<tr>
<td><a href="http://www.indeed.com/jobtrends?q=git%2C+hg+or+mercurial%2C+bzr+or+bazaar%2C+darcs%2C+svn+or+subversion%2C+tfs+or+%22team+foundation+server%22%2C+cvs">git, hg or mercurial, bzr or bazaar, darcs, svn or subversion, tfs or &#034;team foundation server&#034;, cvs Job Trends</a></td>
<td align="right"><a href="http://www.indeed.com/jobs?q=Git">Git jobs</a> &#8211; <a href="http://www.indeed.com/jobs?q=Hg+or+Mercurial">Hg or Mercurial jobs</a> &#8211; <a href="http://www.indeed.com/jobs?q=Bzr+or+Bazaar">Bzr or Bazaar jobs</a> &#8211; <a href="http://www.indeed.com/jobs?q=Darcs">Darcs jobs</a> &#8211; <a href="http://www.indeed.com/jobs?q=Svn+or+Subversion">Svn or Subversion jobs</a> &#8211; <a href="http://www.indeed.com/jobs?q=Tfs+or+%22team+Foundation+Server%22">Tfs or &#034;team Foundation Server&#034; jobs</a> &#8211; <a href="http://www.indeed.com/jobs?q=CVS">CVS jobs</a></td>
</tr>
</table>
</div>
</blockquote>
<p>Source:  <a href="http://news.ycombinator.com/item?id=2974799">this HN comment</a>, though I added CVS to the mix.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.curlybrace.com/words/2011/09/08/source-control-use-git-mercurial-bazaar-darcs-subversion-team-foundation-server-cvs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Started with Android Deployment and Debugging</title>
		<link>http://www.curlybrace.com/words/2011/09/04/getting-started-with-android-deployment-and-debugging/</link>
		<comments>http://www.curlybrace.com/words/2011/09/04/getting-started-with-android-deployment-and-debugging/#comments</comments>
		<pubDate>Sun, 04 Sep 2011 19:21:13 +0000</pubDate>
		<dc:creator>Jeff Fitzsimons</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.curlybrace.com/words/?p=1839</guid>
		<description><![CDATA[As usual with Android, getting started on a process usually involves a few hiccups. Here is a complete list of the steps it took for me to get started with deploying apps directly to my Android phone from my Windows &#8230; <a href="http://www.curlybrace.com/words/2011/09/04/getting-started-with-android-deployment-and-debugging/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As usual with Android, getting started on a process usually involves a few hiccups.  Here is a complete list of the steps it took for me to get started with deploying apps directly to my Android phone from my Windows development box.</p>
<ol>
<li />Install the Android SDK.
<li />Add the Android SDK&#8217;s Platform Tools directory to your path (so that you can run the <tt>adb</tt> tool).
<ul>
<li />Click Start
<li />Right click on Computer, select Properties from the menu
<li />Click Advanced System Settings on the left
<li />Click Environmental Variables
<li />Double-click on PATH in the User Variables list, append a semicolon and the Android SDK Platform Tools folder [e.g. ";C:\Program Files (x86)\Android\android-sdk\platform-tools"])</ul>
<li />Install the ADB driver for your device.
<ul>
<li />If you have a Google device (e.g. Nexus One), install the <a href="http://developer.android.com/sdk/win-usb.html">Google ADB driver</a>.
<li />If you have a non-Google device (e.g. LG Optimus V), search for &#8220;[your device brand and product name] adb driver&#8221;, which should turn up the necessary driver.  Using the example of the LG Optimus V (VM670 aka LG LGP500), the LG Mobile Support Tool must be installed (be prepared for a uniquely awful user interface).
    </ul>
<li />On your Android device, go to Settings | Applications | Development.  Enable USB debugging.  You might as well enable the other two options, as well.
<li />Plug in your Android device.
<li />Create and compile an Android project.  Locate the .apk file, which will be in your project&#8217;s <tt>bin</tt> directory.
<li />Open a command prompt and type, <tt>adb install pathToYourPackage.apk</tt>.  If you have an emulator running, you may need to tell adb to only reference the USB device with the <tt>-d</tt> switch.
</ul>
<p>Incidentally, I had some trouble getting my PC to recognize the Android over USB initially.  It took a few minutes for me to realize that the power adapter for my USB hub had come unplugged.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.curlybrace.com/words/2011/09/04/getting-started-with-android-deployment-and-debugging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Saving Money on Arduino Basic Starter Kit</title>
		<link>http://www.curlybrace.com/words/2011/07/01/saving-money-on-arduino-basic-starter-kit/</link>
		<comments>http://www.curlybrace.com/words/2011/07/01/saving-money-on-arduino-basic-starter-kit/#comments</comments>
		<pubDate>Sat, 02 Jul 2011 05:14:38 +0000</pubDate>
		<dc:creator>Jeff Fitzsimons</dc:creator>
				<category><![CDATA[Electronics]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.curlybrace.com/words/?p=1813</guid>
		<description><![CDATA[Several sites are selling Arduino &#8220;basic starter kits&#8221; for around $55. That&#8217;s not a bad deal, but they tack on around ten dollars in shipping! These kits generally include: Arduino UNO board &#8220;Getting Started with Arduino&#8221; book Breadboard Jumpers USB &#8230; <a href="http://www.curlybrace.com/words/2011/07/01/saving-money-on-arduino-basic-starter-kit/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Several sites are selling Arduino &#8220;basic starter kits&#8221; for around $55.  That&#8217;s not a bad deal, but they tack on around ten dollars in shipping!  These kits generally include:</p>
<ul>
<li />Arduino UNO board
<li />&#8220;Getting Started with Arduino&#8221; book
<li />Breadboard
<li />Jumpers
<li />USB A to B cable
</ul>
<p>I put together my own bundle on Amazon, with free shipping, which costs significantly less:</p>
<ul>
<li /><a href="http://www.amazon.com/Arduino-UNO-board/dp/B004CG4CN4/ref=pd_bxgy_misc_img_c">Arduino UNO ($26.95)</a>
<li /><a href="http://www.amazon.com/gp/product/0596155514/ref=ox_sc_act_title_4?ie=UTF8&#038;m=ATVPDKIKX0DER">&#8220;Getting Started with Arduino&#8221; by Massimo Banzi ($10.39)</a>
<li /><a href="http://www.amazon.com/BB400-Solderless-Plug-BreadBoard-tie-points/dp/B0040Z1ERO/ref=pd_bxgy_misc_img_b">BB400 Solderless Plug-in Breadboard with Power Rails ($5.50)</a>
</ul>
<p>The total price was $42.84, with free shipping.  I saved $22, and the only things missing are a USB cable and some wire jumpers for the breadboard.  I have a $2 roll of solid core wire from the local electronics shop for jumpers, and who doesn&#8217;t have USB cables laying around?</p>
<p>If you really want purpose-built jumper wires, I have read good things about the <a href="http://www.amazon.com/Breadboard-jumper-wire-70pcs-pack/dp/B0040DEI9M/ref=pd_luc_sbs_01_02_t_lh">NKC Electronics 70 pack ($4.95 + $4.75 S/H)</a> and the <a href="http://www.amazon.com/Jumper-Wires-Premium-Male-Pack/dp/B004ZRO06Y/ref=sr_1_3?ie=UTF8&#038;qid=1311717441&#038;sr=8-3">CanaKit Premium 30-pack ($7.95 + a whopping $12.52 S/H)</a> looks like it has very high-quality, rectangular connectors.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.curlybrace.com/words/2011/07/01/saving-money-on-arduino-basic-starter-kit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eclipse for Android:  No Build Targets</title>
		<link>http://www.curlybrace.com/words/2011/06/17/eclipse-for-android-no-targets/</link>
		<comments>http://www.curlybrace.com/words/2011/06/17/eclipse-for-android-no-targets/#comments</comments>
		<pubDate>Fri, 17 Jun 2011 15:39:08 +0000</pubDate>
		<dc:creator>Jeff Fitzsimons</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.curlybrace.com/words/?p=1759</guid>
		<description><![CDATA[I installed the Android SDK and the Eclipse IDE for Java and Report Developers, but when I tried to create a new project, the Build Target list was empty. I had already followed the instructions given in this newsgroup post: &#8230; <a href="http://www.curlybrace.com/words/2011/06/17/eclipse-for-android-no-targets/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I installed the Android SDK and the Eclipse IDE for Java and Report Developers, but when I tried to create a new project, the Build Target list was empty.</p>
<p>I had already followed the instructions given in <a href="http://groups.google.com/group/android-beginners/msg/e96b5b7eb2874457">this newsgroup post</a>:</p>
<ol>
<li /><a href="http://www.curlybrace.com/words/wp-content/uploads/2011/06/ForceHttps1.png"><img src="http://www.curlybrace.com/words/wp-content/uploads/2011/06/ForceHttps1-300x174.png" alt="" title="ForceHttps" width="300" height="174" class="alignright size-medium wp-image-1767" /></a>Run the Android SDK and AVD Manager <b>from the Start menu or a command prompt</b> (Start | All Programs | Android SDK Tools | SDK Manager, or <tt>C:\Program Files (x86)\Android\android-sdk\tools\android.bat</tt>).  <b>Do not run it from Eclipse&#8217;s Window menu:  the Settings tab won&#8217;t be available!</b><br clear="all" />
<li />In Settings, check &#8220;Force https:// &#8230; sources to be fetched using http:// &#8230;&#8221;.
<li>In Available Packages, if &#8220;Android Repository&#8221; is not present, then:
<ol>
<li />click Add Add-on Site.
<li />enter &#8220;&#8216;https://dl-ssl.google.com/android/repository/repository.xml&#8221;.
<li />check &#8220;Android Repository&#8221; then check the desired APIs and SDKs.
<li />click Install Selected.
</ol>
</li>
</ol>
<p>Unfortunately, I still had no targets available in Eclipse.  <b>It turned out that problem was that I had no path configured in Eclipse for the Android SDK!</b>  This should have been obvious, since when I selected Window | Android SDK and AVD Manager, Eclipse complained that no path was set, but since I always lauched the SDK &#038; AVD Manager from a command prompt, I never received the error dialog.  <b>The solution was to open Window | Preferences and browse to <tt>C:\Program Files (x86)\Android\android-sdk</tt>, then press Apply</b>:</p>
<blockquote><p><a href="http://www.curlybrace.com/words/wp-content/uploads/2011/06/EclipsePreferences.png"><img src="http://www.curlybrace.com/words/wp-content/uploads/2011/06/EclipsePreferences.png" alt="" title="EclipsePreferences" width="512" height="444" class="alignnone size-full wp-image-1760" /></a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.curlybrace.com/words/2011/06/17/eclipse-for-android-no-targets/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Enabling Wake-On-LAN on a Toshiba Satellite A505</title>
		<link>http://www.curlybrace.com/words/2011/06/03/enabling-wake-on-lan-on-a-toshiba-satellite-a505/</link>
		<comments>http://www.curlybrace.com/words/2011/06/03/enabling-wake-on-lan-on-a-toshiba-satellite-a505/#comments</comments>
		<pubDate>Fri, 03 Jun 2011 22:58:30 +0000</pubDate>
		<dc:creator>Jeff Fitzsimons</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.curlybrace.com/words/?p=1725</guid>
		<description><![CDATA[This post describes how I fixed my Wake-On-LAN problem using the powercfg tool. My Toshiba Satellite A505-S6986 wouldn&#8217;t respond to magic packets sent over the network. Before using powercfg, I first checked the following: Wake-On-LAN was enabled in the BIOS. &#8230; <a href="http://www.curlybrace.com/words/2011/06/03/enabling-wake-on-lan-on-a-toshiba-satellite-a505/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This post describes how I fixed my Wake-On-LAN problem using the <tt>powercfg</tt> tool.  My Toshiba Satellite A505-S6986 wouldn&#8217;t respond to <a href="http://en.wikipedia.org/wiki/Magic_Packet#Magic_packet">magic packets</a> sent over the network.</p>
<p>Before using <tt>powercfg</tt>, I first checked the following:</p>
<ol>
<li />Wake-On-LAN was enabled in the BIOS.
<li /><img src="http://www.curlybrace.com/words/wp-content/uploads/2011/05/Realtek_AdvancedTab.png" alt="" title="Realtek_AdvancedTab" width="332" height="369" class="alignright size-full wp-image-1740" />All settings related to Wake-On-LAN were enabled in the adapter&#8217;s Advanced properties tab:
<ul>
<li />Shutdown Wake-On-Lan
<li />Wake on Magic Packet
<li />Wake on pattern match<br clear="all">
</ul>
<li /><img src="http://www.curlybrace.com/words/wp-content/uploads/2011/05/Realtek_PowerManagementTab.png" alt="" title="Realtek_PowerManagementTab" width="332" height="369" class="alignright size-full wp-image-1741" />All wake-related settings were checked on the Power Management properties tab:
<ul>
<li />Allow this device to wake computer
<li />Only allow a magic packet to wake the computer<br clear="all">
</ul>
</ol>
<p>Even with these settings configured properly, my laptop still wouldn&#8217;t respond to magic packets.<br />
First, I opened a command prompt <b>as administrator</b>.  A regular user doesn&#8217;t have the access rights to change power options.</p>
<p>Then, I checked to see if the LAN adapter is in the list of devices which can wake Windows:</p>
<pre class="DOS">C:\Windows\system32>powercfg -devicequery wake_armed
HID Keyboard Device (002)
HID-compliant mouse (001)
Logitech USB Wheel Mouse (004)</pre>
<p>The Ethernet adapter isn&#8217;t in there, so I looked at the list of wake-programmable devices in order to find out the name of my LAN adapter:</p>
<pre class="DOS">C:\Windows\system32>powercfg -devicequery wake_programmable
HID-compliant device
Realtek PCIe FE Family Controller            <=== LAN adapter
HID Keyboard Device (002)
TOSHIBA Software Modem
HID-compliant mouse (001)
HID-compliant consumer control device (001)
Logitech USB Wheel Mouse (004)</pre>
<p>Finally, I enabled wake for my Ethernet device, using the name "Realtex PCIe FE Family Controller":</p>
<pre class="DOS">C:\Windows\system32>powercfg -deviceenablewake "Realtek PCIe FE Family Controller"</pre>
<p>(if you see an error like, "<tt>Invalid Parameters -- try "/?" for help</tt>," it most likely means that you mistyped the device name)</p>
<p>I am now able to wake my laptop from sleep and hibernate modes using the <a href="https://market.android.com/details?id=net.mafro.android.wakeonlan">Wake On Lan app</a> for my Android device.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.curlybrace.com/words/2011/06/03/enabling-wake-on-lan-on-a-toshiba-satellite-a505/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

