<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>ianneubert.com</title>
	
	<link>http://www.ianneubert.com/wp</link>
	<description>does not work</description>
	<lastBuildDate>Fri, 17 May 2013 00:33:40 +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>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/ianneubert" /><feedburner:info uri="ianneubert" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Look deep into Ruby Hash’s</title>
		<link>http://feedproxy.google.com/~r/ianneubert/~3/vpv65_W2gMI/</link>
		<comments>http://www.ianneubert.com/wp/2013/05/16/look-deep-into-ruby-hash/#comments</comments>
		<pubDate>Fri, 17 May 2013 00:33:40 +0000</pubDate>
		<dc:creator>ian</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://www.ianneubert.com/wp/?p=670</guid>
		<description><![CDATA[Whoa just saw this awesome bit of code in Tire a Ruby gem for Elasticsearch: @total = response['hits']['total'].to_i rescue nil For so long I have been checking Ruby Hash&#8217;s like that with a nil? or exists? check after everyone. Never again!]]></description>
				<content:encoded><![CDATA[<p>Whoa just saw <a href="https://github.com/karmi/tire/blob/44eda2464cfa5d43664ca47745f37438e1395a55/lib/tire/results/collection.rb#L14">this awesome bit of code</a> in Tire a Ruby gem for Elasticsearch:</p>
<p><code>@total     = response['hits']['total'].to_i rescue nil</code></p>
<p>For so long I have been checking Ruby Hash&#8217;s like that with a <code>nil?</code> or <code>exists?</code> check after everyone.</p>
<p>Never again!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ianneubert?a=vpv65_W2gMI:C4T0SpmE-YE:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=vpv65_W2gMI:C4T0SpmE-YE:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=vpv65_W2gMI:C4T0SpmE-YE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=vpv65_W2gMI:C4T0SpmE-YE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=vpv65_W2gMI:C4T0SpmE-YE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=vpv65_W2gMI:C4T0SpmE-YE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=vpv65_W2gMI:C4T0SpmE-YE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ianneubert?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.ianneubert.com/wp/2013/05/16/look-deep-into-ruby-hash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ianneubert.com/wp/2013/05/16/look-deep-into-ruby-hash/</feedburner:origLink></item>
		<item>
		<title>Quickly debug Ruby 1.9 in Rails</title>
		<link>http://feedproxy.google.com/~r/ianneubert/~3/DIcgknHjGAo/</link>
		<comments>http://www.ianneubert.com/wp/2013/04/12/quickly-debug-ruby-1-9-in-rails/#comments</comments>
		<pubDate>Fri, 12 Apr 2013 17:32:08 +0000</pubDate>
		<dc:creator>ian</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://www.ianneubert.com/wp/?p=663</guid>
		<description><![CDATA[There is so much old data out there about debugging in Ruby that I wanted to post a quick reminder here so I could remember the current way to do it. So here goes&#8230; debugging in Ruby 1.9 on Rails: In the Gemfile&#8230; gem 'debugger', group: [:development, :test] Then from anywhere in your code: debugger [...]]]></description>
				<content:encoded><![CDATA[<p>There is so much old data out there about debugging in Ruby that I wanted to post a quick reminder here so I could remember the current way to do it.</p>
<p>So here goes&#8230; debugging in Ruby 1.9 on Rails:</p>
<p>In the Gemfile&#8230;<br />
<code>gem 'debugger', group: [:development, :test]</code></p>
<p>Then from anywhere in your code:<br />
<code>debugger</code></p>
<p>One quick tip as well, type in <code>irb</code> from the debug console to get to a Rails console. Niiice!</p>
<p>Found the answer on <a href="http://stackoverflow.com/questions/1083451/debugging-in-ruby-1-9">Stack Overflow</a>.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ianneubert?a=DIcgknHjGAo:V4zMNLs2ntU:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=DIcgknHjGAo:V4zMNLs2ntU:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=DIcgknHjGAo:V4zMNLs2ntU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=DIcgknHjGAo:V4zMNLs2ntU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=DIcgknHjGAo:V4zMNLs2ntU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=DIcgknHjGAo:V4zMNLs2ntU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=DIcgknHjGAo:V4zMNLs2ntU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ianneubert?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.ianneubert.com/wp/2013/04/12/quickly-debug-ruby-1-9-in-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ianneubert.com/wp/2013/04/12/quickly-debug-ruby-1-9-in-rails/</feedburner:origLink></item>
		<item>
		<title>Quickly convert Mountain Lion DMG into an ISO file</title>
		<link>http://feedproxy.google.com/~r/ianneubert/~3/oX35dJsK2QE/</link>
		<comments>http://www.ianneubert.com/wp/2012/10/02/quickly-convert-mountain-lion-dmg-into-an-iso-file/#comments</comments>
		<pubDate>Tue, 02 Oct 2012 14:51:52 +0000</pubDate>
		<dc:creator>ian</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://www.ianneubert.com/wp/?p=636</guid>
		<description><![CDATA[From the terminal, after downloading Mountain Lion from the App store: hdiutil makehybrid -iso -hfs /Applications/Install\ OS\ X\ Mountain\ Lion.app/Contents/SharedSupport/InstallESD.dmg -o OSX-10.8.iso]]></description>
				<content:encoded><![CDATA[<p>From the terminal, after downloading Mountain Lion from the App store:<br />
<code>hdiutil makehybrid -iso -hfs /Applications/Install\ OS\ X\ Mountain\ Lion.app/Contents/SharedSupport/InstallESD.dmg -o OSX-10.8.iso</code></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ianneubert?a=oX35dJsK2QE:eY3owCcNYNY:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=oX35dJsK2QE:eY3owCcNYNY:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=oX35dJsK2QE:eY3owCcNYNY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=oX35dJsK2QE:eY3owCcNYNY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=oX35dJsK2QE:eY3owCcNYNY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=oX35dJsK2QE:eY3owCcNYNY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=oX35dJsK2QE:eY3owCcNYNY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ianneubert?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.ianneubert.com/wp/2012/10/02/quickly-convert-mountain-lion-dmg-into-an-iso-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ianneubert.com/wp/2012/10/02/quickly-convert-mountain-lion-dmg-into-an-iso-file/</feedburner:origLink></item>
		<item>
		<title>Create a self-signed SSL certificate with openssl in PKCS#12 format</title>
		<link>http://feedproxy.google.com/~r/ianneubert/~3/zqTI7VJ-TkE/</link>
		<comments>http://www.ianneubert.com/wp/2012/08/27/create-a-self-signed-ssl-certificate-with-openssl-in-pkcs12-format/#comments</comments>
		<pubDate>Mon, 27 Aug 2012 17:20:59 +0000</pubDate>
		<dc:creator>ian</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://www.ianneubert.com/wp/?p=627</guid>
		<description><![CDATA[Here is a quick way to create a self-signed SSL certificate with openssl and output the key/cert into PKCS#12 format. I&#8217;ve found that I&#8217;ve had to do this several times at work to get a certificate ready for a Windows machine. I got tired of looking up the procedure each time, so here goes&#8230; # [...]]]></description>
				<content:encoded><![CDATA[<p>Here is a quick way to create a self-signed SSL certificate with openssl and output the key/cert into PKCS#12 format. I&#8217;ve found that I&#8217;ve had to do this several times at work to get a certificate ready for a Windows machine. I got tired of looking up the procedure each time, so here goes&#8230;</p>
<p><code># create the private key<br />
openssl genrsa -out server.key 2048</p>
<p># create a new csr<br />
openssl req -new -key server.key -out server.csr</p>
<p># sign the csr into a PEM cert file<br />
openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt</p>
<p># convert the PEM cert and key into a PKCS#12 file<br />
openssl pkcs12 -export -out server.pfx -inkey server.key -in server.crt</code></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ianneubert?a=zqTI7VJ-TkE:M7yRFJ4khPc:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=zqTI7VJ-TkE:M7yRFJ4khPc:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=zqTI7VJ-TkE:M7yRFJ4khPc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=zqTI7VJ-TkE:M7yRFJ4khPc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=zqTI7VJ-TkE:M7yRFJ4khPc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=zqTI7VJ-TkE:M7yRFJ4khPc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=zqTI7VJ-TkE:M7yRFJ4khPc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ianneubert?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.ianneubert.com/wp/2012/08/27/create-a-self-signed-ssl-certificate-with-openssl-in-pkcs12-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ianneubert.com/wp/2012/08/27/create-a-self-signed-ssl-certificate-with-openssl-in-pkcs12-format/</feedburner:origLink></item>
		<item>
		<title>Possibly Fix a status error 19 code on a Mitsubishi LaserVue L65-A90 TV</title>
		<link>http://feedproxy.google.com/~r/ianneubert/~3/MqjEwHL6Jds/</link>
		<comments>http://www.ianneubert.com/wp/2012/08/02/possibly-fix-a-status-error-19-code-on-a-mitsubishi-laservue-l65-a90-tv/#comments</comments>
		<pubDate>Thu, 02 Aug 2012 19:07:32 +0000</pubDate>
		<dc:creator>ian</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[mitsubishi]]></category>
		<category><![CDATA[tv]]></category>

		<guid isPermaLink="false">http://www.ianneubert.com/wp/?p=618</guid>
		<description><![CDATA[After coming back from vacation my Mitsubishi LaserVue L65-A90 TV would not start. It had a solid red LED status indicator and would not turn on. After talking to a local technician he gave me the following steps to try: On the TV press and hold the Menu and Input buttons for 5 seconds. This [...]]]></description>
				<content:encoded><![CDATA[<p>After coming back from vacation my Mitsubishi LaserVue L65-A90 TV would not start. It had a solid red LED status indicator and would not turn on.</p>
<p>After talking to a local technician he gave me the following steps to try:</p>
<blockquote><p>On the TV press and hold the Menu and Input buttons for 5 seconds.</p></blockquote>
<p>This will trigger the system to report an error code using the power LED light. It blinked once, then paused, then blinked 9 times, indicating error code 19.</p>
<p>He said this error code indicated that the &#8220;receiver was locked&#8221;.</p>
<p>He then had me do the following to unlock and restart it:</p>
<blockquote><p>Hold Menu and Channel Up for 5 seconds. Status light turns to green for 3 seconds. Then, hold Menu and Channel Down for 5 seconds.</p></blockquote>
<p>Seemed a lot like resetting the CMOS on a computer to me.</p>
<p>After that the TV is working perfectly fine! Although, he said it may not work in all cases.</p>
<p>Big thank you to <a href="http://www.ultimateav.com/">Ultimate Audio Video</a> in Laguna Hills, CA! They helped me fix my TV over the phone for free!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ianneubert?a=MqjEwHL6Jds:ew4oK3WcKbg:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=MqjEwHL6Jds:ew4oK3WcKbg:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=MqjEwHL6Jds:ew4oK3WcKbg:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=MqjEwHL6Jds:ew4oK3WcKbg:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=MqjEwHL6Jds:ew4oK3WcKbg:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=MqjEwHL6Jds:ew4oK3WcKbg:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=MqjEwHL6Jds:ew4oK3WcKbg:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ianneubert?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.ianneubert.com/wp/2012/08/02/possibly-fix-a-status-error-19-code-on-a-mitsubishi-laservue-l65-a90-tv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ianneubert.com/wp/2012/08/02/possibly-fix-a-status-error-19-code-on-a-mitsubishi-laservue-l65-a90-tv/</feedburner:origLink></item>
		<item>
		<title>Quickly convert files to Unix or Windows line endings</title>
		<link>http://feedproxy.google.com/~r/ianneubert/~3/EIlKWRZZcZI/</link>
		<comments>http://www.ianneubert.com/wp/2012/04/26/quickly-convert-files-to-unix-or-windows-line-endings/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 18:12:24 +0000</pubDate>
		<dc:creator>ian</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://www.ianneubert.com/wp/?p=579</guid>
		<description><![CDATA[Here is a quick script that will convert all js file line endings in a folder from either Windows or Unix into Unix line endings: find . -type f -name '*.js' -print0 &#124; xargs -0 perl -pi -e 's/(\n&#124;\r\n?)/\n/' And here is the same script to convert them into Windows line endings: find . -type [...]]]></description>
				<content:encoded><![CDATA[<p>Here is a quick script that will convert all js file line endings in a folder from either Windows or Unix into Unix line endings:<br />
<code>find . -type f -name '*.js' -print0 | xargs -0 perl -pi -e 's/(\n|\r\n?)/\n/'</code></p>
<p>And here is the same script to convert them into Windows line endings:<br />
<code>find . -type f -name '*.js' -print0 | xargs -0 perl -pi -e 's/(\n|\r\n?)/\r\n/'</code></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ianneubert?a=EIlKWRZZcZI:ntYoiM8K6C4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=EIlKWRZZcZI:ntYoiM8K6C4:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=EIlKWRZZcZI:ntYoiM8K6C4:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=EIlKWRZZcZI:ntYoiM8K6C4:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=EIlKWRZZcZI:ntYoiM8K6C4:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=EIlKWRZZcZI:ntYoiM8K6C4:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=EIlKWRZZcZI:ntYoiM8K6C4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ianneubert?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.ianneubert.com/wp/2012/04/26/quickly-convert-files-to-unix-or-windows-line-endings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ianneubert.com/wp/2012/04/26/quickly-convert-files-to-unix-or-windows-line-endings/</feedburner:origLink></item>
		<item>
		<title>VMWare Workstation left mouse stops responding</title>
		<link>http://feedproxy.google.com/~r/ianneubert/~3/iz_ZB7JWf_o/</link>
		<comments>http://www.ianneubert.com/wp/2011/06/29/vmware-workstation-left-mouse-stops-responding/#comments</comments>
		<pubDate>Wed, 29 Jun 2011 19:21:10 +0000</pubDate>
		<dc:creator>ian</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.ianneubert.com/wp/?p=510</guid>
		<description><![CDATA[For the last couple days I&#8217;ve had a problem with VMWare Workstation v.7.1.4 build-385536 where my left mouse click suddenly stopped working in my Windows 2008 guest VM. I finally found the problem! When dragging and dropping text inside the guest VM I was dragging outside the VMWare container. This is what caused the problem. [...]]]></description>
				<content:encoded><![CDATA[<p>For the last couple days I&#8217;ve had a problem with VMWare Workstation v.7.1.4 build-385536 where my left mouse click suddenly stopped working in my Windows 2008 guest VM.</p>
<p>I finally found the problem!</p>
<p>When dragging and dropping text inside the guest VM I was dragging outside the VMWare container. This is what caused the problem.</p>
<p>To fix it so that never happens again I&#8217;ve disabled the ability to Drag &amp; Drop from the guest. You can set this in your virtual machine settings, under Options &gt; &#8220;Guest Isolation&#8221;.</p>
<p style="text-align: center;"><a href="http://www.ianneubert.com/wp/wp-content/uploads/2011/06/2011-06-29_1219.png"><img class="size-medium wp-image-511 aligncenter" title="Vmware settings" src="http://www.ianneubert.com/wp/wp-content/uploads/2011/06/2011-06-29_1219-300x262.png" alt="" width="300" height="262" /></a></p>
<p>&nbsp;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ianneubert?a=iz_ZB7JWf_o:hy3tUKHvdWA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=iz_ZB7JWf_o:hy3tUKHvdWA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=iz_ZB7JWf_o:hy3tUKHvdWA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=iz_ZB7JWf_o:hy3tUKHvdWA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=iz_ZB7JWf_o:hy3tUKHvdWA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=iz_ZB7JWf_o:hy3tUKHvdWA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=iz_ZB7JWf_o:hy3tUKHvdWA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ianneubert?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.ianneubert.com/wp/2011/06/29/vmware-workstation-left-mouse-stops-responding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ianneubert.com/wp/2011/06/29/vmware-workstation-left-mouse-stops-responding/</feedburner:origLink></item>
		<item>
		<title>Add “I’m Feeling Lucky” keyboard shortcut to Chrome</title>
		<link>http://feedproxy.google.com/~r/ianneubert/~3/MWw5Jtf3PqM/</link>
		<comments>http://www.ianneubert.com/wp/2011/05/13/add-im-feeling-lucky-keyboard-shortcut-to-chrome/#comments</comments>
		<pubDate>Sat, 14 May 2011 01:20:45 +0000</pubDate>
		<dc:creator>ian</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://www.ianneubert.com/wp/?p=507</guid>
		<description><![CDATA[I often will search Google for a keyword that I know will return the result I want in the first spot. Until now I was using Chrome to search for the keyword and then clicking on the link to go to the page. There must be a better way! There is! Setup a custom search [...]]]></description>
				<content:encoded><![CDATA[<p>I often will search Google for a keyword that I know will return the result I want in the first spot. Until now I was using Chrome to search for the keyword and then clicking on the link to go to the page.</p>
<p>There must be a better way!</p>
<p>There is!</p>
<p>Setup a custom search engine in Chrome like this:</p>
<ol>
<li>Click the wrench icon</li>
<li>Click on Preferences</li>
<li>Click on Manage Search Engines</li>
<li>Scroll to the bottom</li>
<li>Add a new search engine with these fields:
<ol>
<li>Google Instant</li>
<li>!</li>
<li>http://www.google.com/search?q=%s&amp;btnI=Im+Feeling+Lucky</li>
</ol>
</li>
</ol>
<p>Bam!</p>
<p>Now you can do an I&#8217;m Feeling Lucky search just by hitting the exclamation point, a space, and then the keyword. Like this:</p>
<p><code>! ruby arrays</code></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ianneubert?a=MWw5Jtf3PqM:Edyfk2LqTUs:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=MWw5Jtf3PqM:Edyfk2LqTUs:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=MWw5Jtf3PqM:Edyfk2LqTUs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=MWw5Jtf3PqM:Edyfk2LqTUs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=MWw5Jtf3PqM:Edyfk2LqTUs:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=MWw5Jtf3PqM:Edyfk2LqTUs:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=MWw5Jtf3PqM:Edyfk2LqTUs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ianneubert?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.ianneubert.com/wp/2011/05/13/add-im-feeling-lucky-keyboard-shortcut-to-chrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ianneubert.com/wp/2011/05/13/add-im-feeling-lucky-keyboard-shortcut-to-chrome/</feedburner:origLink></item>
		<item>
		<title>Windows 7 Drag &amp; Drop Stops Working</title>
		<link>http://feedproxy.google.com/~r/ianneubert/~3/Jlw1vGIyUQc/</link>
		<comments>http://www.ianneubert.com/wp/2011/04/19/windows-7-drag-drop-stops-working/#comments</comments>
		<pubDate>Tue, 19 Apr 2011 15:38:49 +0000</pubDate>
		<dc:creator>ian</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://www.ianneubert.com/wp/?p=501</guid>
		<description><![CDATA[I&#8217;ve found that in Windows 7 sometimes I will randomly be unable to drag and drop files from the explorer shell. If you ever have that problem try this to fix it: Press Ctrl+Alt+Del. Press Esc. This worked great for me. Your results may vary! By the way: Thanks Microsoft for yet another reason to [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve found that in Windows 7 sometimes I will randomly be unable to drag and drop files from the explorer shell.</p>
<p>If you ever have that problem try this to fix it:</p>
<ol>
<li>Press Ctrl+Alt+Del.</li>
<li>Press Esc.</li>
</ol>
<p>This worked great for me. Your results may vary!</p>
<p>By the way: Thanks Microsoft for yet another reason to use a Mac instead of a PC.</p>
<p>Source: <a href="http://superuser.com/questions/29266/why-does-drag-drop-stop-working-after-a-while#answer-30119">superuser.com</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ianneubert?a=Jlw1vGIyUQc:1PlxrITeF2U:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=Jlw1vGIyUQc:1PlxrITeF2U:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=Jlw1vGIyUQc:1PlxrITeF2U:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=Jlw1vGIyUQc:1PlxrITeF2U:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=Jlw1vGIyUQc:1PlxrITeF2U:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=Jlw1vGIyUQc:1PlxrITeF2U:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=Jlw1vGIyUQc:1PlxrITeF2U:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ianneubert?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.ianneubert.com/wp/2011/04/19/windows-7-drag-drop-stops-working/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		<feedburner:origLink>http://www.ianneubert.com/wp/2011/04/19/windows-7-drag-drop-stops-working/</feedburner:origLink></item>
		<item>
		<title>Remote Desktop Connection: Copy and Paste Stopped Working?</title>
		<link>http://feedproxy.google.com/~r/ianneubert/~3/l2Yz1E_eaS0/</link>
		<comments>http://www.ianneubert.com/wp/2011/02/01/remote-desktop-connection-copy-and-paste-stopped-working/#comments</comments>
		<pubDate>Tue, 01 Feb 2011 20:18:39 +0000</pubDate>
		<dc:creator>ian</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://www.ianneubert.com/wp/?p=487</guid>
		<description><![CDATA[I have been using Remote Desktop Connection on my Mac to connect to my new Windows 7 PC for the last couple weeks. Ever run into a problem where your RDP connection stops sharing copy and paste with your Mac? It was driving me nuts, but thanks to this website I was able to finally [...]]]></description>
				<content:encoded><![CDATA[<p>I have been using Remote Desktop Connection on my Mac to connect to my new Windows 7 PC for the last couple weeks. Ever run into a problem where your RDP connection stops sharing copy and paste with your Mac?</p>
<p>It was driving me nuts, but thanks to <a href="http://brennan.offwhite.net/blog/2007/01/18/fixing-copypaste-for-remote-desktop-sessions/">this website</a> I was able to finally find the answer:</p>
<ol>
<li>Open task manager on the PC</li>
<li>Kill the rdpclip.exe process</li>
<li>Run the program rdpclip.exe from the CLI or close and reconnect the RDP session.</li>
</ol>
<p><strong>Update</strong>: After the break is a script that will automatically kill and restart rdpclip.exe.<br />
<span id="more-487"></span><br />
<script src="https://gist.github.com/832207.js?file=restart_rdpclip.vbs"></script> </p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/ianneubert?a=l2Yz1E_eaS0:dFp70qgqJpA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=l2Yz1E_eaS0:dFp70qgqJpA:D7DqB2pKExk" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=l2Yz1E_eaS0:dFp70qgqJpA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=l2Yz1E_eaS0:dFp70qgqJpA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=l2Yz1E_eaS0:dFp70qgqJpA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ianneubert?i=l2Yz1E_eaS0:dFp70qgqJpA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ianneubert?a=l2Yz1E_eaS0:dFp70qgqJpA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ianneubert?d=qj6IDK7rITs" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.ianneubert.com/wp/2011/02/01/remote-desktop-connection-copy-and-paste-stopped-working/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.ianneubert.com/wp/2011/02/01/remote-desktop-connection-copy-and-paste-stopped-working/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 0.414 seconds. --><!-- Cached page generated by WP-Super-Cache on 2013-06-14 01:58:12 --><!-- Compression = gzip -->
