<?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>Urban Adventures &#38; More &#187; Technology</title>
	<atom:link href="http://www.dreich.info/blog/category/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dreich.info/blog</link>
	<description></description>
	<lastBuildDate>Sun, 28 Feb 2010 22:00:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Dual Monitors with NVidia GeForce 8500GT</title>
		<link>http://www.dreich.info/blog/2009/09/dual-monitors-with-nvidia-geforce-8500gt/</link>
		<comments>http://www.dreich.info/blog/2009/09/dual-monitors-with-nvidia-geforce-8500gt/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 03:06:43 +0000</pubDate>
		<dc:creator>Doug</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.dreich.info/blog/?p=560</guid>
		<description><![CDATA[This is stupidly obvious: if you want to do a dual monitor setup with the NVidia GeForce 8500GT, all you have to do is use a VGA input for one screen and a DVI input for the other. I tried using a DVI splitter to put both on DVI, but that&#8217;s not how it works! [...]]]></description>
			<content:encoded><![CDATA[<p>This is stupidly obvious: if you want to do a dual monitor setup with the NVidia GeForce 8500GT, all you have to do is use a VGA input for one screen and a DVI input for the other. I tried using a DVI splitter to put both on DVI, but that&#8217;s not how it works! It&#8217;s analog + digital. Simple.</p>
<p>As an aside, why can&#8217;t the Nvidia linux driver do Twinview for my two graphics card (Nvidia 6500 and 8500GT)? Windows can!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreich.info/blog/2009/09/dual-monitors-with-nvidia-geforce-8500gt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fast R code</title>
		<link>http://www.dreich.info/blog/2009/07/fast-r-code/</link>
		<comments>http://www.dreich.info/blog/2009/07/fast-r-code/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 14:38:02 +0000</pubDate>
		<dc:creator>Doug</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.dreich.info/blog/?p=525</guid>
		<description><![CDATA[I have been using R for a few weeks now, and now that I have a feel for how to get things done, I am starting to explore how to get those things done faster. On the suggestion of a friend, I picked up Data Manipulation with R by Phil Spector. Once you get the [...]]]></description>
			<content:encoded><![CDATA[<p>I have been using R for a few weeks now, and now that I have a feel for how to get things done, I am starting to explore how to get those things done <em>faster</em>. On the suggestion of a friend, I picked up <a href="http://www.amazon.com/Data-Manipulation-R-Use/dp/0387747303" target="_blank">Data Manipulation with R</a> by Phil Spector. Once you get the hang of R syntax, it is a great book to show you how to actually get things done; I am most of the way through it, and would highly recommend it.</p>
<p>One thing he introduces in chapter 9 tangentially is the &#8220;system.time&#8221; function; feed it a code block, and it will tell you the amount of real and system time elapsed. So, it is the perfect test bench for which of two methods runs faster; he uses it to show you how you get a 4x speedup using the built-in &#8220;colSum&#8221; function over &#8220;apply&#8221;. Using vectorization, a loop is just as fast as &#8220;apply&#8221;, however without vectorization, you get a 60x slowdown using element-by-element looping.</p>
<p>This points to the key to R-speed: don&#8217;t lie to R. Tell it everything, so that it can allocate memory efficiently, which is by far your slowest task. Take this example for applying &#8220;rbind&#8221; across a set of data frames. Previously, I had thought &#8220;functional programming&#8221;, and naturally went with &#8220;Reduce&#8221;. However, this book motivated me to find the &#8220;do.call&#8221; solution. Observe the results.</p>
<pre>&gt; df &lt;- lapply( 1:1000, function(z) data.frame( runif(1000 )))
&gt; system.time( a &lt;- do.call( cbind, df ))
 user  system elapsed
 0.54    0.01    0.59
&gt; system.time( b &lt;- Reduce( cbind, df ))
 user  system elapsed
 40.16    0.80   42.61</pre>
<p>That&#8217;s right, the &#8220;Reduce&#8221; method took 80x longer than the &#8220;do.call&#8221; method. I am going to change some of my code right now&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreich.info/blog/2009/07/fast-r-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making counts appear inside wordpress categories links</title>
		<link>http://www.dreich.info/blog/2009/07/making-counts-appear-inside-wordpress-categories-links/</link>
		<comments>http://www.dreich.info/blog/2009/07/making-counts-appear-inside-wordpress-categories-links/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 03:58:22 +0000</pubDate>
		<dc:creator>Doug</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.dreich.info/blog/?p=477</guid>
		<description><![CDATA[On the theme I&#8217;m using (Big City), the wordpress default for showing counts next to categories looks awful. The lines break after the link, so it will say something like &#8220;Technology ::break:: (31)&#8221;. The solution I found was basically just to hack the code where it prints the count, and move that up. This stuff [...]]]></description>
			<content:encoded><![CDATA[<p>On the theme I&#8217;m using (Big City), the wordpress default for showing counts next to categories looks awful. The lines break after the link, so it will say something like &#8220;Technology ::break:: (31)&#8221;. The solution I found was basically just to hack the code where it prints the count, and move that up. This stuff is hard-coded in wordress, and I couldn&#8217;t find a CSS solution to my problem (I do suck at CSS, but that&#8217;s another story).</p>
<p>Here are the changes as of WP 2.8.</p>
<p>In &#8220;general-template.php&#8221;, locate the lines that say</p>
<pre>$after = '&amp;nbsp;('.$arcresult-&gt;posts.')' . $afterafter;</pre>
<p>and change them to</p>
<pre>$text .= &lt;...&gt;</pre>
<p>There are a number of such lines, so this will make them all consistent. I think I counted 4 such changes.</p>
<p>The other change to make is in &#8220;classes.php&#8221;.  Break line 1336 (which looked something like this before I got to it)</p>
<pre>$link .= $cat_name . "&lt;/a&gt;";</pre>
<p>So that it becomes</p>
<pre>$link .= $cat_name;
$link .= "&lt;/a&gt;";</pre>
<p>Now move up this block between those two lines:</p>
<pre>if ( isset($show_count) &amp;&amp; $show_count )
 $link .= ' (' . intval($category-&gt;count) . ')';</pre>
<p>This will change your formatting slightly if you were using the feed code, and I don&#8217;t have a good answer for you on that.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreich.info/blog/2009/07/making-counts-appear-inside-wordpress-categories-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zotero</title>
		<link>http://www.dreich.info/blog/2009/06/zotero/</link>
		<comments>http://www.dreich.info/blog/2009/06/zotero/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 12:58:04 +0000</pubDate>
		<dc:creator>Doug</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.dreich.info/blog/?p=451</guid>
		<description><![CDATA[Add to my list of fantastic software you should be using (Firefox, Dropbox, Adblock, XMarks) another: Zotero. It is an organization tool for your research that exists as a Firefox add-in (I don&#8217;t know why it only supports FF). You can bookmarket pages (imagine that!), sort them, tag them. However, you can also store files [...]]]></description>
			<content:encoded><![CDATA[<p>Add to my list of fantastic software you should be using (Firefox, Dropbox, Adblock, XMarks) another: Zotero. It is an organization tool for your research that exists as a Firefox add-in (I don&#8217;t know why it only supports FF). You can bookmarket pages (imagine that!), sort them, tag them. However, you can also store files in with your bookmarks, refile bookmarks in several places, add notes, citations, and annotations. Basically, it is your bookmarks on super steroids. You can back the bookmarks up to their server, and the stored files to your own server, so everthing can be duplicated across machines. (You know how I feel about that!)</p>
<p><span id="more-451"></span>I only discovered it a few months ago when looking over my brother&#8217;s shoulder. &#8220;Wha&#8217;s Zotero?&#8221; When he explained it to me, I remarked &#8220;that seems pretty useless to me. I don&#8217;t plan on writing research papers anytime soon.&#8221; However, I have found that it is an excellent organization tool for any type of research you do; I just ignore all of the citation stuff.</p>
<p>I have been using it to organize anything with information, particularly as a part of my research. Say that I am programming in python, and I look up different solutions for communicating with excel. There are several packages out there with a number of pages of interest (not all readily discoverable), and documents on the subject.  Furthermore, as I learn more about each solution, I will want to record my discoveries for the future so in 2 months I will be able to remind myself the features and limitations of each product, as applied to my problem. This is easy in Zotero; just see the following screenshot.</p>
<div id="attachment_452" class="wp-caption alignnone" style="width: 610px"><a href="http://www.dreich.info/blog-wp/wp-content/uploads/2009/06/py.jpg"><img class="size-medium wp-image-452" title="py" src="http://www.dreich.info/blog-wp/wp-content/uploads/2009/06/py-600x433.jpg" alt="Example zotero file in the course of python research" width="600" height="433" /></a><p class="wp-caption-text">Example zotero file in the course of python research</p></div>
<p>Admittedly, I imported earlier research into Zotero in this case, so it&#8217;s not the greatest example. However, you can see I made use of tags (the Python filter has more than just those files tagged with excel) Each of my &#8220;bookmarks&#8221; is actually a little folder (perhaps documents stapled together) in which I can store related items and tag them all as a group. Notes and other files can go in each bookmark, and they can exist in several folders simultaneously.</p>
<p>There are lots of other features I don&#8217;t use, but I can&#8217;t recommend it more highly if you ever find yourself researching a topic. Old-fashined bookmarks are a lot of work to organize, and you end up just dumping the in a pile most of the time. The structure here is incredibly easy to create and maintain; making use of only a few of the features should make finding things very easy &#8211; just hit &#8220;add&#8221; button, type a couple tags, maybe a note and move on!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreich.info/blog/2009/06/zotero/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Excel 2007 gave me a 5x speed up over Excel 2003</title>
		<link>http://www.dreich.info/blog/2009/06/how-excel-2007-gave-me-a-5x-speed-up-over-excel-2003/</link>
		<comments>http://www.dreich.info/blog/2009/06/how-excel-2007-gave-me-a-5x-speed-up-over-excel-2003/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 02:52:36 +0000</pubDate>
		<dc:creator>Doug</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.dreich.info/blog/?p=448</guid>
		<description><![CDATA[For unknown or inadequate reasons, I bought a copy of Office 2007 the other day and loaded it up for work. (As an aside, Amazon has Office 2007 Home &#38; Student for $80 and Excel 2007 for $105  &#8212; and it says people are buying the individal program after comparing the two?). For the past [...]]]></description>
			<content:encoded><![CDATA[<p>For unknown or inadequate reasons, I bought a copy of Office 2007 the other day and loaded it up for work. (As an aside, Amazon has Office 2007 Home &amp; Student for $80 and Excel 2007 for $105  &#8212; and it says people are buying the individal program <strong>after comparing the two</strong>?). For the past few weeks I have been developing code that pulls financial data from Yahoo and populates a template sheet, among other things. Because of the way I add the data to the sheet (the fastest way excel supports, setting a range&#8217;s value equal to a VBA array), some summary functions at the top of the sheet have to account for the fact that the data could be of an arbitrary height.</p>
<p>My solution to this problem in the original version, written and debugged in Excel 2003, was to have those summary cells reference the range A23:A65536 and take a count, etc. to get the number or summary of those cells. This was fine. My code would take 30 seconds per run, most of which I thought was spent in VBA.</p>
<p>Enter Excel 2007. On a whim, I saved my spreadsheet in 2007 format and ran it. It was <strong>slow</strong>. I mean, mind bogglingly slow. I thought it was just the network taking a long time to download the data, however my coworker ran it a few times and it <strong>locked up his computer</strong>. Then it dawned on me: the formulas were rewritten to now reference A23:A1048576. Excel was  touching 1 million rows over and over again every time the sheet calculated, which was often (he was using an RTD link, so it recalculated constantly). A simple solution: write a UDF that would count excatly the size of my data array, and use that instead.</p>
<p>This was the surprise: since I only had about 1,000 data points (but I didn&#8217;t want to hardcode to that number, and so I referenced all rows on the sheet), my running time, even using Excel 2003, went down from 30 seconds to about 6 seconds. The original slowness I had mostly chalked up to Excel handling data poorly; instead, it was purely a function of my forcing it to handle the data poorly, a problem <strong>only exposed by migrating to a higher-throughput device</strong>. The moral of the story is that if it doesn&#8217;t scale, it may be your fault, not theirs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreich.info/blog/2009/06/how-excel-2007-gave-me-a-5x-speed-up-over-excel-2003/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grace Digital Audio IR3020</title>
		<link>http://www.dreich.info/blog/2009/05/grace-digital-audio-ir3020/</link>
		<comments>http://www.dreich.info/blog/2009/05/grace-digital-audio-ir3020/#comments</comments>
		<pubDate>Fri, 29 May 2009 13:02:27 +0000</pubDate>
		<dc:creator>Doug</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.dreich.info/blog/?p=432</guid>
		<description><![CDATA[A few weeks go I finally got fed up of picking out which music to listen to. I don&#8217;t have the biggest music library, and since I moved back to Windows, I have been at a loss to find something that displays it in a way conducive to listening to all my tracks. (Somehow, Amarok [...]]]></description>
			<content:encoded><![CDATA[<p>A few weeks go I finally got fed up of picking out which music to listen to. I don&#8217;t have the biggest music library, and since I moved back to Windows, I have been at a loss to find something that displays it in a way conducive to listening to all my tracks. (Somehow, Amarok on Linux did that job very well. Awesome player.) As a result, I started using Pandora, and really liked it. At first it played my &#8220;seed&#8221; songs too much, but a little nudging caused it to branch out, and now I have a couple of really enjoyable stations with a good variety of music.</p>
<p>Now for the inevitable problem: my computer is loud and it&#8217;s a waste of energy and a distraction to turn it on to listen to music. The solution: listen to Pandora on a stand-alone device. As a secondary requirement, I wanted a device with an iPod dock, since I have felt a similar problem with not being able to listen to the iPod.</p>
<p>The only device I found out there was the <a href="http://www.gracedigitalaudio.com/grace-wireless-internet-radio-wipod-dock-remote-gdiir3020-p-53.html" target="_blank">Grace Digital Audio IR3020</a>. It has quite a bit more features than my basic requirements; it plays Sirius radio over the internet (with a subscription), Pandora, iPod, any of a number of streams (podcasts, terrestrial radio over the internet), and music files shared over your local network. You can also set an alarm clock and a sleep timer. It has a remote, and you can set 99 presets (haven&#8217;t explored that feature).</p>
<p>Out of curiosity and interest, I have tested most of those features, except for the podcasts (although I&#8217;m checking it out now), and the Sirius. Here are some thoughts on each of them and the device.</p>
<ul>
<li>Pandora. Works as advertised. All your stations show up in a list, and you bookmark, thumbs up or down, and skip tracks. The Quickmix is available, but you can&#8217;t select which stations go into the quickmix (I&#8217;m not sure if your configuration from the website holds over.) The big downside is the remote is completely ineffective for this. They don&#8217;t have the &#8220;Reply&#8221; button on the remote, and so you can&#8217;t give feedback or skip tracks.</li>
<li>iPod. You can navigate with the iPod wheel to pick music as usual. Similar to Pandora, you can&#8217;t really control the iPod with the remote. Shockingly, I couldn&#8217;t even change tracks; I could fast forward and pause. Unlike the radio stations, you can&#8217;t set iPod as a preset, so you have to be able to see the screen to play the iPod.</li>
<li>Streaming Radio. Thousands of stations from around the world are available to stream, and you can add them to your player through the website. This web-config option is one of the coolest things. Change a setting on the internet, and the option appears on the player. This doesn&#8217;t have many controls, so there&#8217;s nothing the remote can&#8217;t do.</li>
<li>Network Music. I actually did not expect this feature; it can play music from a Windows share, as well as from a Universal Plug&#8217;n'Play server. I haven&#8217;t been able to get the former to work (very frustrating!), but Windows Media Player 11 sets up the latter with ease, and if my computer is on, I can access my entire library through the radio. And to really placate me, it allows you to navigate through your music either by artist, etc. according to the ID3 tags, <strong>or</strong> through the filesystem. I am really organized, so the latter is generally a very good choice for me. If you have a home media server, this would be a really sweet feature.</li>
<li>In general, the interface is very poor.  I have harped on how the remote doesn&#8217;t really do anything. The turn-wheel on the front of the player, used to navigate menus and make selections, has so much resistance that when you try to push it, you slide the radio across the table. The screen is too small for its functionality&#8211;showing only 3 lines of information and a line of status&#8211;so you are constantly scrolling and discovering easter eggs because you didn&#8217;t know certain menu items exist!</li>
<li>It has both an ethernet jack and a wireless b/g antenna. It was a little annoying entering the 16-digit (or however long) key for the router in there using the scroll wheel, but it was a one-time exercise. One cool thing is that it sets the time automatically when you get online, so it pays you back in effort right there. <img src='http://www.dreich.info/blog-wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li>For completeness, I&#8217;ll tell you that it (apparently) has 2 20-watt speakers, RCA and headphone out. The equalizer has a half-dozen presets.</li>
</ul>
<p>Overall, it is a very good device. It meets your needs, but on its terms. That, of course, is the story of consumer electronics.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreich.info/blog/2009/05/grace-digital-audio-ir3020/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linksys WMP300N in Windows XP 64</title>
		<link>http://www.dreich.info/blog/2009/05/linksys-wmp300n-in-windows-xp-64/</link>
		<comments>http://www.dreich.info/blog/2009/05/linksys-wmp300n-in-windows-xp-64/#comments</comments>
		<pubDate>Fri, 08 May 2009 22:16:54 +0000</pubDate>
		<dc:creator>Doug</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.dreich.info/blog/?p=394</guid>
		<description><![CDATA[There isn&#8217;t much to it; this post explains it all. Make sure you use the driver version they tell you to download, not the one off the linksys website.
You don&#8217;t get the Linksys interface this way, but the built-in windows software works as well as I recall linksys working; I am getting a signal from [...]]]></description>
			<content:encoded><![CDATA[<p>There isn&#8217;t much to it; <a href="http://dd-wrt.com/phpBB2/viewtopic.php?t=8726&amp;sid=24d19925cf43f2715e092f3a5a59d5e1" target="_blank">this post</a> explains it all. Make sure you use the driver version they tell you to download, not the one off the linksys website.</p>
<p>You don&#8217;t get the Linksys interface this way, but the built-in windows software works as well as I recall linksys working; I am getting a signal from 3 stories down and 30 linear feet away.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreich.info/blog/2009/05/linksys-wmp300n-in-windows-xp-64/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reusing your dropbox directory in Windows and Linux</title>
		<link>http://www.dreich.info/blog/2009/05/reusing-your-dropbox-directory-in-windows-and-linux/</link>
		<comments>http://www.dreich.info/blog/2009/05/reusing-your-dropbox-directory-in-windows-and-linux/#comments</comments>
		<pubDate>Fri, 01 May 2009 05:20:06 +0000</pubDate>
		<dc:creator>Doug</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.dreich.info/blog/?p=383</guid>
		<description><![CDATA[This post on the dropbox forums says exactly what to do: you can either install an old version of dropbox (I couldn&#8217;t figure out how to make it run properly in Linux), or you can use that guy&#8217;s Python script. He even provides a Windows binary.
To use the script in Linux, note that you have [...]]]></description>
			<content:encoded><![CDATA[<p>This post on the <a href="http://forums.getdropbox.com/topic.php?id=8672&amp;replies=5#post-55419" target="_blank">dropbox forums</a> says exactly what to do: you can either install an old version of dropbox (I couldn&#8217;t figure out how to make it run properly in Linux), or you can use that guy&#8217;s Python script. He even provides a Windows binary.</p>
<p>To use the script in Linux, note that you have to change a few lines to manually input your dropbox.db file loation (since the APPDATA variable will not be set). Also, when entering your new dropbox location, don&#8217;t use a trailing slash. It worked perfectly for me; now I have Windows and Linux syncing from the same directory!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreich.info/blog/2009/05/reusing-your-dropbox-directory-in-windows-and-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dropbox Excel file syncing</title>
		<link>http://www.dreich.info/blog/2009/04/dropbox-excel-file-syncing/</link>
		<comments>http://www.dreich.info/blog/2009/04/dropbox-excel-file-syncing/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 02:12:53 +0000</pubDate>
		<dc:creator>Doug</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.dreich.info/blog/?p=358</guid>
		<description><![CDATA[If you listened to me and installed dropbox, kudos! I hope you love it as much as I do.
I just started using the software to collaborate on files, and found that it behaves very funny. In particular, when you open an excel (or other MS Office file), Dropbox does not sync the file to the [...]]]></description>
			<content:encoded><![CDATA[<p>If you listened to me and installed dropbox, kudos! I hope you love it as much as I do.</p>
<p>I just started using the software to collaborate on files, and found that it behaves very funny. In particular, when you open an excel (or other MS Office file), Dropbox does not sync the file to the server until after you close it. Furthermore, if a person opens an excel file, even if they make no changes, dropbox will mark the file as changed and potentially create a conflict.</p>
<p>The solution, according to <a href="http://forums.getdropbox.com/topic.php?id=4148&amp;replies=4#post-28720" target="_blank">this forum post</a> is to mark your spreadsheets as collaboration. As a result, excel doesn&#8217;t lock the files, so saves will be synced automatically, and changes will be merged across files. (And presumably, changes will also be updated as you work on them, but I&#8217;m not sure how that works).</p>
<p>I haven&#8217;t tried this yet, but I will follow up in a few days once I have had a chance to look at it. I can see that dropbox may still get confused as two people are editing the same file (particularly macros, which don&#8217;t like to change once you have opened a file), but I think MS has probably conquered this problem by now.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreich.info/blog/2009/04/dropbox-excel-file-syncing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Excel: Add a hotkey to any toolbar button</title>
		<link>http://www.dreich.info/blog/2009/04/excel-add-a-hotkey-to-any-toolbar-button/</link>
		<comments>http://www.dreich.info/blog/2009/04/excel-add-a-hotkey-to-any-toolbar-button/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 12:50:53 +0000</pubDate>
		<dc:creator>Doug</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.dreich.info/blog/?p=356</guid>
		<description><![CDATA[This tip is for anyone who frequently adjusts the number of decimals visible in a number range. Sure, you know to hit Ctrl-1 to make it an orderly set of numbers, but what if you want only want to show the integer part, or if you want to see 4 decimal places? Instead of using [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bankersball.com/2007/10/21/little-known-excel-shortcut-13/" target="_blank">This tip</a> is for anyone who frequently adjusts the number of decimals visible in a number range. Sure, you know to hit Ctrl-1 to make it an orderly set of numbers, but what if you want only want to show the integer part, or if you want to see 4 decimal places? Instead of using the mouse to click the appropriate toolbar button, the trick lets you assign a hotkey to that, or any other toolbar button.</p>
<ol>
<li>Right click on the formatting toolbar and go to &#8220;Customize&#8221;.</li>
<li>Right click on the toolbar button you want to assign a hotkey to (in our case, Decrease or Increase Decimal)</li>
<li>If you want to make the hotkey &#8220;Alt-/&#8221; then change the text in the Name box to &#8220;&amp;/&#8221;. If you have an &#8220;opposite&#8221; function, for example the opposite of Decrease Decimal is Increase Decimal, then this automatically makes Alt-Shift-/ perform that opposite.</li>
<li>Change the button style to &#8220;Image and Text&#8221;.  (If you want to disable your hotkey, you can change this back to Image only.)</li>
<li>Close the Customize window, and you&#8217;re done!</li>
</ol>
<p>(Adapted from <a href="http://www.bankersball.com/2007/10/21/little-known-excel-shortcut-13/" target="_blank">Bankers Ball</a> link above.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dreich.info/blog/2009/04/excel-add-a-hotkey-to-any-toolbar-button/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->