<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-6714064</id><updated>2012-01-15T19:36:56.439-08:00</updated><category term='software vista rants'/><category term='installer'/><category term='c#'/><category term='browser microsoft'/><category term='software'/><category term='bugs'/><category term='utilities'/><category term='development'/><title type='text'>Rnd() Thoughts</title><subtitle type='html'>experiences and thoughts about almost everything</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default?start-index=101&amp;max-results=100'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>108</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6714064.post-320028591510857245</id><published>2010-06-11T00:19:00.001-07:00</published><updated>2010-06-11T05:23:49.788-07:00</updated><title type='text'>Transforms and upgrades</title><content type='html'>Upgrading shall not be easy. In our installer we are using an MST file to configure the server connection for our clients so that they shouldn't need setting this up manually.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;The transform file path is entered in the Setup.exe MSI Command Line Arguments in Installshield. Everything ok so far.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;But when upgrading to a newer version where the server configuration has changed, we'd love the installer to detect changes in  the MST file and upgrade the client's configuration when upgrading. The problem now is that the installer uses a cached version of the MST file, and therefore the new configuration wont be applied!&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I'll get back when or if I find a solution to this problem.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-320028591510857245?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/320028591510857245/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=320028591510857245' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/320028591510857245'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/320028591510857245'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2010/06/transforms-and-upgrades.html' title='Transforms and upgrades'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-8544659697800996603</id><published>2010-06-07T00:51:00.000-07:00</published><updated>2010-06-11T00:13:10.995-07:00</updated><title type='text'>Upgrades, uninstall and major versions</title><content type='html'>&lt;div&gt;While I was trying to make the new client installer uninstall previous versions of our software, I ran into a few issues that took a while to solve.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;First and foremost, the previous installer (custom-built) didn't contain an upgrade code (which uniqely identifies a product across versions) that I could use in my new MSI installer's upgrade table to make sure it was uninstalled. This was simple, just create a custom action that reads the uninstall information from the registry and runs the uninstall string if it exists for your product.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Next I tried to tell Windows installer to remove two additional products that were installed using MSI installers. I used the upgrade table with the upgrade codes from the two products I wanted to uninstall. &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;When running the installer, only one of the products were removed, and the log told me that the other one was skipped because it was installed in a different context (machine, not for this user only). &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;When I removed the product that successfully was uninstalled and reran the installation, the product that was previously skipped was uninstalled! This baffled me, and I tried a lot of different solutions until I finally had to revert to a rather dirty solution.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;First of all, this is whats happening when you are uninstalling previous products:&lt;/div&gt;&lt;div&gt;&lt;ol&gt;&lt;li&gt;When the installer runs the &lt;a href="http://msdn.microsoft.com/en-us/library/aa368600(VS.85).aspx"&gt;FindRelatedProducts &lt;/a&gt;action, it looks in the Upgrade table to find what products it should search for. If it finds a product installed (using the UpgradeCode in the Upgrade table), it sets the value of the property (actionprop column) for the product in the Upgrade table to the Product code (installed version of product)&lt;/li&gt;&lt;li&gt;The uninstallation happens in the &lt;a href="http://msdn.microsoft.com/en-us/library/aa371197(VS.85).aspx"&gt;RemoveExistingProducts &lt;/a&gt;action which uninstalls those products marked for uninstallation (from the FindRelatedProducts action)&lt;/li&gt;&lt;/ol&gt;&lt;div&gt;The problem in my case was that the FindRelatedProducts action skipped one of the products, so I had to include a small vbscript that was run before the RemoveExistingProducts action that found the product code for the product I wanted to remove and updated the according property so that it would be uninstalled:&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;set oWI = CreateObject("WindowsInstaller.Installer")&lt;/div&gt;&lt;div&gt;set related = oWI.RelatedProducts("YOUR_UPGRADECODE_HERE")  &lt;/div&gt;&lt;div&gt;if related.Count = 1 then&lt;/div&gt;&lt;div&gt;    Property("ACTIONPROPERTY_NAME_HERE") = related.Item(0) &lt;/div&gt;&lt;div&gt;end if&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Forcing the product code to be set solved the issue I had even though I never found out what was wrong with the FindRelatedProducts action not picking up both products.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-8544659697800996603?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/8544659697800996603/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=8544659697800996603' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/8544659697800996603'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/8544659697800996603'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2010/06/upgrades-uninstall-and-major-versions.html' title='Upgrades, uninstall and major versions'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-4965333878052823390</id><published>2010-02-23T05:51:00.000-08:00</published><updated>2010-03-05T11:16:23.680-08:00</updated><title type='text'>Extract COM information during build time causes Installshiled to hang</title><content type='html'>InstallShield uses a tool to extract COM information (spying on the registry) called IsRegSpy.exe. It is trying to register COM libraries and watching what happens in the registry to capture all the keys and values written during registration.&lt;br /&gt;&lt;br /&gt;After adding some our own internal libraries I noticed that the IDE startet to hang when extracting COM information from the components in the setup project. After inspecting what was happening using ProcExplorer from Microsoft (http://www.sysinternals.com) I saw that the IDE spawned IsRegSpy.exe but IsRegSpy.exe never seemed to return.&lt;br /&gt;&lt;br /&gt;After digging back and forth for a while, I tried to extract the COM information from within the InstallShield IDE to avoid getting this error each time we built the project. The same thing happened, the IDE launched IsRegSpy.exe and stopped responding.&lt;br /&gt;&lt;br /&gt;I tried killing IsRegSpy.exe from within ProcExplorer, and noticed that InstallShield managed to add the correct COM information to the IDE! It also turned off the "Extract COM at build" setting for the component! Doing this for all COM components in the Setup project I managed to get past the problem of hanging the IDE when building.&lt;br /&gt;&lt;br /&gt;EDIT: The last paragraph was obviously written in a very optimistic tone.. Some of the information was saved, some was not. My final solution was to export the registry hives before and after registering the dlls and then diffing the output...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-4965333878052823390?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/4965333878052823390/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=4965333878052823390' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/4965333878052823390'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/4965333878052823390'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2010/02/extract-com-information-during-build.html' title='Extract COM information during build time causes Installshiled to hang'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-1614907442964922528</id><published>2010-02-17T05:59:00.000-08:00</published><updated>2010-03-16T02:00:20.026-07:00</updated><title type='text'>Localization</title><content type='html'>Seems to be rather easy using InstallShield. There are several different options to choose from. You can add all the languages you want to support to your installation, or you can build seperate installations for each language.&lt;br /&gt;&lt;br /&gt;NOTE: The language of the installer itself and the language your application is set up to run in are not the same.&lt;br /&gt;&lt;br /&gt;I chose to build sepearate deployment packages for each language our application is using. The reasoning behind this is that each language component weights in at around 10 megs which could be a problem to distribute to remote users when updating or servicing the application.&lt;br /&gt;&lt;br /&gt;Using different releases and configurations under the Media/Releases node gives me the opportuntity to build more than one setup.exe from my project. I have also integrated the build of each setup into our build system using some custom code for spawning Install Shield.&lt;br /&gt;&lt;br /&gt;To get automatic resolving of which features that should go into which of my language dependant distributions, I have set the languages property for these features to a specific language (not Language Independent). When setting a release configuration 's data languages, ui languages and default language to a given language, only those features with either the same language as the configuration (or language independent) will be included in the setup!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-1614907442964922528?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/1614907442964922528/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=1614907442964922528' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/1614907442964922528'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/1614907442964922528'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2010/02/localization.html' title='Localization'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-1624135386796835511</id><published>2010-02-17T05:46:00.001-08:00</published><updated>2010-02-17T23:59:47.091-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='installer'/><title type='text'>Transforms and Setup.exe</title><content type='html'>When starting out with the deployment project, I tried to define some  areas where I had to do some research to be certain that we had a  solution that was scalable and easy to maintain.&lt;br /&gt;&lt;br /&gt;One of the first  issues I ran into was the need for using transforms to change some  property values in the MSI package. The background for this requirement  is that our app is a typical client/server-based application where our  clients perform a server installation where they customize the  installation against their database setup and file locations etc.&lt;br /&gt;&lt;br /&gt;The  cusomization performed in the server setup must be replicated into the  client setup so that end users shouldn't have to select odbc connections  or file locations upon installation.&lt;br /&gt;&lt;br /&gt;The first issue here is how  we can make the Server Setup process modify the client installer so  that it depolys the client package with the predefined settings. To make  this work, we've decided to use transform files.&lt;br /&gt;&lt;br /&gt;A transform  file is a simple msi database that contains tables just like another msi  file. It is used to override values in the msi file it is transforming.&lt;br /&gt;&lt;br /&gt;Creating  a transform (.mft) file is simple using InstallShield. Just select new  project and choose the Transform project template. InstallShield will  ask you to provide the msi-file for which you are creating a transform,  so you have to have it built already.&lt;br /&gt;&lt;br /&gt;After creating the  transform file, add it to your installation project under the support  file section. You can now tell setup.exe to run it by providing command  lines to the msi file in the setup.exe package. Select your setup  release in InstallShield (this post is about transforms, so if you only  have an msi project, please stop reading..) and switch to the Setup.exe  tab. In the MSI Command Line Arguments property, enter TRANSFORMS=&lt;span style="font-style: italic;"&gt;name of your mst file&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;When we're ready to start generating our own transformation files that  lives outside setup.exe, we can remove the transformation file from our  setup project and provide it alongside the setup itself.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-1624135386796835511?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/1624135386796835511/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=1624135386796835511' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/1624135386796835511'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/1624135386796835511'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2010/02/transforms-and-setupexe.html' title='Transforms and Setup.exe'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-1987960921064201755</id><published>2010-02-17T05:44:00.000-08:00</published><updated>2010-02-18T00:00:02.739-08:00</updated><title type='text'>Welcome back...</title><content type='html'>I'm currently working on a new MSI-based installer for our main product, and since I tend to forget how I solve the different parts of building an installation from the last time I built one, I've decided to document some of the more important solutions I find here.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-1987960921064201755?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/1987960921064201755/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=1987960921064201755' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/1987960921064201755'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/1987960921064201755'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2010/02/welcome-back.html' title='Welcome back...'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-6394571509946907221</id><published>2008-08-05T00:33:00.000-07:00</published><updated>2008-08-05T01:03:51.153-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='bugs'/><category scheme='http://www.blogger.com/atom/ns#' term='development'/><category scheme='http://www.blogger.com/atom/ns#' term='c#'/><title type='text'>Process.WaitForExit() never completes</title><content type='html'>It's been over a year since the last time I blogged.... Sorry for that, but it's been a busy year. I've decided to pick up again and try to post some tech-related random thoughts once in a while.&lt;br /&gt;&lt;br /&gt;Today I just wanted to share a bug I found that might be interesting for some of you.&lt;br /&gt;&lt;br /&gt;I had a small function that started a process and waited for it to finish it's work. The code looked something like this:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;Process P = new Process();&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;P.StartInfo.UseShellExecute = false;&lt;br /&gt;P.StartInfo.RedirectStandardOutput = true;&lt;br /&gt;P.StartInfo.RedirectStandardError = true;&lt;br /&gt;P.StartInfo.FileName = pathToProgram;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;P.StartInfo.Arguments = programArguments;&lt;br /&gt;P.Start();&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;P.WaitForExit();&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;P.Close();&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;Since the process sometimes takes a while to finish, I wanted to be able to watch what was going on, so I decided to read from stderr/stdinput to see if something went wrong. To do this, I made sure that the RedirectStandardError properties of the process was set to true (see code above), and inserted the following line to check if the application had encountered any errors:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;P.WaitForExit();&lt;br /&gt;&lt;strong&gt;string err = P.StandardError.ReadToEnd(); &lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:courier new;"&gt;P.Close();&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;After this code had been used for a while, I noticed that once in a while the application was hanging when performing the above process. The problem only occured when a lot of data was written to standarderror.&lt;br /&gt;&lt;br /&gt;I debugged the problem, and found out that omitting reading from StandardError removed the problem. I thought that this seemed like a strange problem, and continued to search for a solution.&lt;br /&gt;&lt;br /&gt;After reading the documentation, I finally came up with the information that revealed the problem. The following remark in the msdn library for the &lt;a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.processstartinfo.redirectstandarderror(VS.71).aspx"&gt;RedirectStandardError&lt;/a&gt; property says:&lt;br /&gt;&lt;br /&gt;&lt;em&gt;"The &lt;/em&gt;&lt;em&gt;Process&lt;/em&gt;&lt;em&gt; component communicates with a child process using a pipe. If a child process writes enough data to the pipe to fill the buffer, the child will block until the parent reads the data from the pipe. This can cause deadlock if your application is reading all output to standard error and standard output, for example, using the following C# code."&lt;/em&gt;&lt;br /&gt;&lt;em&gt;&lt;/em&gt;&lt;br /&gt;So instead of asking the process to fill the buffer and wait for me to empty it so that the call to WaitForExit() would block, reading the contents of the buffer (P.StandardError.ReadToEnd()) before calling WaitForExit() solved the problem and made the solution a success.&lt;br /&gt;&lt;br /&gt;Conclusion: Read the documentation. And make sure you read the remarks.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-6394571509946907221?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/6394571509946907221/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=6394571509946907221' title='28 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/6394571509946907221'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/6394571509946907221'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2008/08/processwaitforexit-never-completes.html' title='Process.WaitForExit() never completes'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>28</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-7663244963973099326</id><published>2007-08-01T02:25:00.001-07:00</published><updated>2007-08-01T02:25:23.030-07:00</updated><title type='text'>Vista and Visual Studio 2003 again..</title><content type='html'>&lt;p&gt;After the computer-switch I had to set up Vista for devlopment with Visual Studio 2003 again, and was a bit disappointed by my &lt;a href="http://chrfalch.blogspot.com/2007/06/they-said-it-couldn-be-done.html" target="_blank"&gt;last post about the topic&lt;/a&gt; - I hadn't written anything at all about how I actually set up IIS 7.0 to be able to debug and run .Net 1.1 applications! So here it is.. the short version:&lt;/p&gt; &lt;ul&gt; &lt;li&gt;Register .Net 1.1 ASP.NET by running the following program. The -i parameter tells the utility to install support for ASP.NET 1.1 under IIS: Windows\Microsoft.NET\Framework\v1.1.4322\aspnet_regiis.exeaspnet_regiis.exe -i&lt;/li&gt; &lt;li&gt;Change the application pool to one using the .Net framework 1.1 for the application you want to debug and run&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;I also enabled .Net development and CGI in the additional windows components the "Windows functions" control panel applet.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-7663244963973099326?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/7663244963973099326/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=7663244963973099326' title='24 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/7663244963973099326'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/7663244963973099326'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2007/08/vista-and-visual-studio-2003-again.html' title='Vista and Visual Studio 2003 again..'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>24</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-639293841366215158</id><published>2007-08-01T02:17:00.001-07:00</published><updated>2007-08-01T02:29:04.796-07:00</updated><title type='text'>Vista OEM - Network Troubles</title><content type='html'>&lt;p&gt;Since I'm usually sitting at my desk developing new and interesting stuff for my company, using a slow (but cool :-) old Tablet PC wasn't the best way to be an effective developer. &lt;/p&gt; &lt;p&gt;Last week I got myself a new PC that will sit at my desk at work. It's a fast and brand new dual core computer with loads of memory, a big harddrive and a DirectX 10-based video card. I choose Windows Vista Business, since I've been quite happy with the way Vista has been working on my Tablet PC.&lt;/p&gt; &lt;p&gt;The only problem came when I was about to check in some source code to subversion. TortoiseSVN complained with a message saying it couldn't move a file in the repository. The repository is located on a network share and accessed by a small group of programmers. &lt;/p&gt; &lt;p&gt;I searched all over to see if this was a common problem with subversion, but found nothing. Then I noticed that I couldn't rename files on the network, and started to search for similar reports on the net. At last I found &lt;a href="http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=1210644&amp;amp;SiteID=17" target="_blank"&gt;this&lt;/a&gt; post, which helped me fix the issue. &lt;/p&gt; &lt;p&gt;So why the OEM troubles heading? Read the above post - the bug has to do with something missing in the OEM version of Vista. &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-639293841366215158?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/639293841366215158/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=639293841366215158' title='19 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/639293841366215158'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/639293841366215158'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2007/08/vista-oem-network-troubles.html' title='Vista OEM - Network Troubles'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>19</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-6570180764879587986</id><published>2007-06-27T06:05:00.001-07:00</published><updated>2007-06-27T06:10:32.850-07:00</updated><title type='text'>Kids and programming</title><content type='html'>&lt;p&gt;After reading &lt;a href="http://www.hanselman.com/"&gt;Scott Hanselman's&lt;/a&gt; &lt;a href="http://www.hanselman.com/blog/TeachingChildrenAndKidsToProgramTheOldSchoolWay.aspx"&gt;article&lt;/a&gt; about how to teach kids computer programming, I once more decided to try to get my children interested in the topic that has brought me so much fun and joy.&lt;/p&gt;&lt;br /&gt;&lt;p&gt;The kids are now around 11 years old, and all enjoys playing games, doing homework and surf the web on their computers. They are creative, and can spend an evening creating images in MS Paint or making a presentation in Powerpoint. &lt;/p&gt;&lt;br /&gt;&lt;p&gt;I've previously tried to get them interested in programming using tools like &lt;a href="http://www.kidsprogramminglanguage.com/"&gt;KPL&lt;/a&gt;, but the big problem was learning the syntax. They're not yet able to learn enough statements or commands to express themselves and solve abstract problems in a textual programming language.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;I went along and grabbed a copy of &lt;a href="http://www.mit.edu/"&gt;MIT&lt;/a&gt;'s &lt;a href="http://scratch.mit.edu/"&gt;Scratch&lt;/a&gt;, which is a graphical tool for building small 2D games and animations:&lt;/p&gt;&lt;br /&gt;&lt;a href="http://2.bp.blogspot.com/_AItEJ8QOMbQ/RoJhimd_hCI/AAAAAAAAABY/GPd4OSezQQI/s1600-h/scracth.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5080730576697132066" style="CURSOR: hand" alt="" src="http://2.bp.blogspot.com/_AItEJ8QOMbQ/RoJhimd_hCI/AAAAAAAAABY/GPd4OSezQQI/s320/scracth.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;Scratch uses a visual representation of statemements, variables and control blocks, and this really worked out for them. They quickly learned how to set up a small loop that tested for collisions with other objects, and that could send messages to all the other sprites making interesting things happen (like getting the sun to appear in the sky) &lt;/p&gt;&lt;br /&gt;&lt;p&gt;Allthough it is not possible to build fully fledged games in Scratch, it seems like a great tool to learn the basics of programming like I once learned on my &lt;a href="http://www.vintage-computer.com/dragon32.shtml"&gt;Dragon 32&lt;/a&gt; from my father (yes, we still have the old Dragon, allthough we haven't booted it up for a while).&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-6570180764879587986?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/6570180764879587986/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=6570180764879587986' title='18 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/6570180764879587986'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/6570180764879587986'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2007/06/kids-and-programming.html' title='Kids and programming'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_AItEJ8QOMbQ/RoJhimd_hCI/AAAAAAAAABY/GPd4OSezQQI/s72-c/scracth.jpg' height='72' width='72'/><thr:total>18</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-3018178180246887410</id><published>2007-06-08T05:58:00.001-07:00</published><updated>2007-06-08T05:58:31.683-07:00</updated><title type='text'>They said it couldn't be done.. :-)</title><content type='html'>&lt;p&gt;Development in Visual Studio 2003 on Microsoft Vista.&lt;/p&gt; &lt;p&gt;It is&amp;nbsp;&lt;a href="http://www.google.com/search?q=%22visual+studio+2003%22+vista"&gt;said&lt;/a&gt; &lt;a href="http://msdn2.microsoft.com/en-us/vstudio/aa948854.aspx"&gt;that&lt;/a&gt; it is &lt;a href="http://weblogs.asp.net/pwilson/archive/2006/09/27/Vista-will-NOT-support-Developers.aspx"&gt;not&lt;/a&gt; &lt;a href="http://searchvb.techtarget.com/originalContent/0,289142,sid8_gci1219838,00.html"&gt;possible&lt;/a&gt; to use Visual Studio 2003 in Microsoft Vista, and as I have written about earlier on, I set out on a small journey to find out how far I could get into using it on my Tecra M4.&lt;/p&gt; &lt;p&gt;Here is the current list:&lt;/p&gt; &lt;ul&gt; &lt;li&gt;Installed .Net Framework 1.1 - OK&lt;/li&gt; &lt;li&gt;Installed Visual Studio 2003 on Vista - OK&lt;/li&gt; &lt;li&gt;Been able to compile and build my projects under 2003 - OK&lt;/li&gt; &lt;li&gt;Debug web-based applications with Visual Studio 2003 and IIS 7.0 - OK&lt;/li&gt; &lt;li&gt;&lt;a href="http://chrfalch.blogspot.com/2006/05/edit-and-continue-in-vs-2003.html#links"&gt;Edit and continue&lt;/a&gt; in Visual Studio 2003 - OK&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;The only thing I know I will have problems with is&amp;nbsp;developing&amp;nbsp;plain web&amp;nbsp;applications &amp;nbsp;(you know the project type APS.Net Web Application), but since I don't use them, I wont cry either..!&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-3018178180246887410?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/3018178180246887410/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=3018178180246887410' title='19 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/3018178180246887410'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/3018178180246887410'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2007/06/they-said-it-couldn-be-done.html' title='They said it couldn&amp;#39;t be done.. :-)'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>19</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-5795677396984314880</id><published>2007-06-04T12:54:00.001-07:00</published><updated>2007-06-04T12:54:33.700-07:00</updated><title type='text'>My Venture into Vista Land</title><content type='html'>&lt;p&gt;Phew! It takes a lot of time to install all the drivers and software one needs when reinstalling a computer... &lt;/p&gt; &lt;p&gt;As&amp;nbsp;I wrote&amp;nbsp;earlier on, I was eager to see if I could get Visual Studio 2003 up and running on Windows Vista. As some people say, it shouldn't be possible. This made me think that Vista might have some functionality that could prohibit programs from even installing, but this was not the case. Visual Studio 2003 installed in a much more clean way than the latest Visual Studio Orcas Beta (for testing out Silverlight development). Installing the Orcas beta (ok, I know it's Beta) went wrong almost ten times before I finally succeeded. &lt;/p&gt; &lt;p&gt;But now I have a brand new Vista installation working with all the tools I need to do my job. And it feels good. And since I'm kinda geeky, I must admit that I've turned off the Aero effects and reverted back to the old Win2K-look... But it's all in the details, isn't it?&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-5795677396984314880?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/5795677396984314880/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=5795677396984314880' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/5795677396984314880'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/5795677396984314880'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2007/06/my-venture-into-vista-land.html' title='My Venture into Vista Land'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-7248262419916079955</id><published>2007-06-04T06:41:00.001-07:00</published><updated>2007-06-04T06:41:46.340-07:00</updated><title type='text'>Converting myself and my Tecra to Vista</title><content type='html'>&lt;p&gt;Since my Toshiba Tecra M4 has been working for ages without being treated with&amp;nbsp; a fresh install, I finally decided that it was time to:&lt;/p&gt; &lt;ol&gt; &lt;li&gt;Perform a fresh install, since the machine had become a bit slow and sluggish&lt;/li&gt; &lt;li&gt;See if I could try a Vista install and check if I could trick Visual Studio 2003 into running on Vista.&lt;/li&gt; &lt;li&gt;If section two failed, install Windows XP and pretend I didn't listen to any of the 2 million other developers out there telling me that this wouldn't work.&lt;/li&gt;&lt;/ol&gt; &lt;p&gt;So, after a while of thinking and planning, I went ahead:&lt;/p&gt; &lt;ol&gt; &lt;li&gt;Identifyed all the files on my computer that needed to be backed up&lt;/li&gt; &lt;li&gt;Backed up all the files that I found to an external harddrive&lt;/li&gt; &lt;li&gt;Double checked and tripple checked the above sections&lt;/li&gt; &lt;li&gt;Downloaded and collected all the necessary drivers and software from Toshiba and others&lt;/li&gt; &lt;li&gt;Installed Windows Vista&lt;/li&gt;&lt;/ol&gt; &lt;p&gt;This all went well, except for the face that I got rather ill in the middle of the process due to an allergic reaction. This was of course a bit bad, sitting with a computer with no OS and no software.. &lt;/p&gt; &lt;p&gt;In my next post I'll tell you how it went after I got the OS up and running!&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-7248262419916079955?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/7248262419916079955/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=7248262419916079955' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/7248262419916079955'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/7248262419916079955'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2007/06/converting-myself-and-my-tecra-to-vista.html' title='Converting myself and my Tecra to Vista'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-6882394296166310132</id><published>2007-05-31T11:59:00.000-07:00</published><updated>2007-05-31T12:04:29.922-07:00</updated><title type='text'>New Tech impresses me</title><content type='html'>Read about Microsoft Surface today, which looks like a very interesting and fun platform to play with.&lt;br /&gt;&lt;br /&gt;The concept is using multitouch (more than one pointer on the screen, just like what Steve Jobs showed with the iPhone) on a big touch screen to navigate a delicious user interface built with WPF. In addition, a system utilizing invisible ink to tag devices like cameras and smartphones, is used to make Surface interact with devices and objects from the real world.&lt;br /&gt;&lt;br /&gt;Microsoft says that the hardware will be kind of expensive (in the $5K-$10K range). What I really would like to see is Microsoft Surface running on a TabletPC with lots of cpu and memory. That would be a nice way of using my Toshiba Tecra M4...!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-6882394296166310132?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/6882394296166310132/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=6882394296166310132' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/6882394296166310132'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/6882394296166310132'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2007/05/new-tech-impresses-me.html' title='New Tech impresses me'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-4436456055809165114</id><published>2007-05-20T23:44:00.000-07:00</published><updated>2007-05-20T23:46:32.167-07:00</updated><title type='text'>Link to PopFly</title><content type='html'>Some of my readers have pointed out that I didn't include a link to PopFly yesterday. Sorry :-) Here it is:&lt;br /&gt;&lt;br /&gt;http://www.popfly.com&lt;br /&gt;&lt;br /&gt;And here is the link to the video presentation on &lt;a href="http://channel9.msdn.com/"&gt;Channel9&lt;/a&gt;:&lt;br /&gt;&lt;br /&gt;http://channel9.msdn.com/showpost.aspx?postid=308460&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-4436456055809165114?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/4436456055809165114/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=4436456055809165114' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/4436456055809165114'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/4436456055809165114'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2007/05/link-to-popfly.html' title='Link to PopFly'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-6257220730366921523</id><published>2007-05-19T10:21:00.000-07:00</published><updated>2007-05-19T10:24:06.019-07:00</updated><title type='text'>Popfly!</title><content type='html'>Just read about PopFly from Microsoft, which seems to be a really cool solution for building mashups and sharing them afterwords. The whole thing is built on Silverlight, which is also what I am currently installing on my computer..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-6257220730366921523?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.popfly.com' title='Popfly!'/><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/6257220730366921523/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=6257220730366921523' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/6257220730366921523'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/6257220730366921523'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2007/05/popfly.html' title='Popfly!'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-6870471353520140324</id><published>2007-05-09T10:04:00.000-07:00</published><updated>2007-05-09T10:11:29.072-07:00</updated><title type='text'>Facebook is a cool hypeapp</title><content type='html'>I finally decided to join some of the social networks out there, and went for both &lt;a href="http://www.linkedin.com"&gt;linkedin&lt;/a&gt; an &lt;a href="http://www.facebook.com"&gt;facebook&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Facebook has definitely been giving me most joy out of the two, but I suspect that Linkedn will probably give me more bang for the bucks  if I'd really need it sometime in the future.&lt;br /&gt;&lt;br /&gt;I really look forward to see if people will still enjoy writing on each other's walls and keep on connecting with long lost friends and classmates six months from now.&lt;br /&gt;&lt;br /&gt;I really need to stay on Facebook for the nex months to see for myself :-) Anyway, without the hype there wouldn't have been any fun! Hope the hype stays.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-6870471353520140324?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/6870471353520140324/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=6870471353520140324' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/6870471353520140324'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/6870471353520140324'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2007/05/facebook-is-cool-hypeapp.html' title='Facebook is a cool hypeapp'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-8069709237112895023</id><published>2007-05-07T09:31:00.000-07:00</published><updated>2007-05-07T09:35:08.434-07:00</updated><title type='text'>Multitasking and the joy of Media Center</title><content type='html'>I'm currently doing some serious multitasking on my new HTCP.&lt;br /&gt;&lt;br /&gt;The kids are watching children's tv while I'm reading my RSS feeds (and blogging). All on the same screen (thanks to NRK not sending in widescreen), thanks to our LCD flatscreen. And the kids aren't complaining about my thin Firefox window taking up approx. 1/3 of the screen.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-8069709237112895023?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/8069709237112895023/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=8069709237112895023' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/8069709237112895023'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/8069709237112895023'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2007/05/multitasking-and-joy-of-media-center.html' title='Multitasking and the joy of Media Center'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-859206659534352571</id><published>2007-05-01T02:02:00.000-07:00</published><updated>2007-05-01T02:10:22.055-07:00</updated><title type='text'>My new HTCP</title><content type='html'>I've been working a lot the past few days to get my new &lt;a href="http://chrfalch.blogspot.com/2007/04/finally-i-got-my-self-htpc.html"&gt;HTCP&lt;/a&gt; up and running. Everything seemed to work perfect, except that I couldn't get any live TV. I tried everything from reinstalling Windows Media Center (which took a while and wasn't as easy as other Windows installations) to opening up the computer making sure there were no faulty connections anywhere. I also installed a couple of alternative applications for watching TV hoping that my channels would magically appear.&lt;br /&gt;&lt;br /&gt;The solution was to borrow another TV-card and insert it into the computer. This is a small and tight &lt;a href="http://www.gigabyte.com.tw/Products/DigitalHome/Products_Spec.aspx?ProductID=2236&amp;amp;ProductName=H663"&gt;PC&lt;/a&gt;, so inserting the slightly bigger PVR 500 card (originally a PVR 150) was a tight fit. But when booting up the machine the new card was immediately recognized, and all my channels were instantly found!&lt;br /&gt;&lt;br /&gt;Since my HTPC was bought used from the internet (norwegian site &lt;a href="http://www.finn.no"&gt;finn.no&lt;/a&gt;), I was a bit skeptic to what I could achieve in return for the faulty card. I contacted the seller, who was a real gentleman and was promised a direct return on the card. Thanks!&lt;br /&gt;&lt;br /&gt;Now I'm of to watch some recorded TV shows!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-859206659534352571?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/859206659534352571/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=859206659534352571' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/859206659534352571'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/859206659534352571'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2007/05/my-new-htcp.html' title='My new HTCP'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-4069793565245037817</id><published>2007-04-26T01:17:00.000-07:00</published><updated>2007-04-26T01:23:56.905-07:00</updated><title type='text'>Finally I got my self a HTPC!</title><content type='html'>After having tried to use cheap components for running a &lt;a href="http://chrfalch.blogspot.com/2005/12/music-media-technology.html"&gt;media center setup&lt;/a&gt; for a couple of years, I finally decided to give myself a little pre-birthday present. I bought a used HTPC originally manufactured from &lt;a href="http://www.komplett.no/k/ci.asp?sku=10269"&gt;komplett.no&lt;/a&gt; (in Norwegian) today! The HTPC is running Media Center XP (switching to Vista soon.. maybe..?), and has an external power supply which I hope will help keep the noise down. I'm picking it up later today, so my old DSM-320 will be up for sales now. Anyone interested? No? Hello..?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-4069793565245037817?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/4069793565245037817/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=4069793565245037817' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/4069793565245037817'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/4069793565245037817'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2007/04/finally-i-got-my-self-htpc.html' title='Finally I got my self a HTPC!'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-174798347279768885</id><published>2007-04-25T06:53:00.000-07:00</published><updated>2007-04-25T13:21:06.163-07:00</updated><title type='text'>This will be nice (Javascript intellisense and debugging)</title><content type='html'>Happy to read that Javascript intellisense and debugging will be available in the next version of Microsoft Visual Studio!&lt;http: com="" webdevtools="" archive="" 2007="" 03="" 02="" aspx=""&gt;&lt;http: com="" webdevtools="" archive="" 2007="" 03="" 09="" aspx=""&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://weblogs.asp.net/scottgu/archive/2007/04/24/javascript-intellisense-in-visual-studio-orcas.aspx"&gt;Read more over at Scott G's blog.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Thanks :-) And I'm looking forward to start using it!&lt;/http:&gt;&lt;/http:&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-174798347279768885?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://weblogs.asp.net/scottgu/archive/2007/04/24/javascript-intellisense-in-visual-studio-orcas.aspx' title='This will be nice (Javascript intellisense and debugging)'/><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/174798347279768885/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=174798347279768885' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/174798347279768885'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/174798347279768885'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2007/04/this-will-be-nice-javascript.html' title='This will be nice (Javascript intellisense and debugging)'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-6422742656656151631</id><published>2007-04-13T01:24:00.001-07:00</published><updated>2007-04-13T01:25:10.073-07:00</updated><title type='text'>"Joost" one little thing...</title><content type='html'>&lt;div xmlns="http://www.w3.org/1999/xhtml"&gt;I read that &lt;a href="http://www.eirikso.com/"&gt;eirikso &lt;/a&gt;has some &lt;a href="http://www.eirikso.com/2007/04/12/joost-invites/"&gt;invites&lt;/a&gt; to &lt;a href="http://www.joost.com/"&gt;Joost&lt;/a&gt;. I want one too! Please...?&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-6422742656656151631?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/6422742656656151631/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=6422742656656151631' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/6422742656656151631'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/6422742656656151631'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2007/04/one-little-thing.html' title='&amp;quot;Joost&amp;quot; one little thing...'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-2727185499315392469</id><published>2007-02-25T13:29:00.000-08:00</published><updated>2007-02-25T13:35:24.174-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='browser microsoft'/><title type='text'>Microsoft is really delivering on different platforms</title><content type='html'>While I was upgrading my Anti-virus from &lt;a href="http://www.grisoft.com/doc/1"&gt;AVG&lt;/a&gt; to &lt;a href="http://www.grisoft.com/doc/1"&gt;NOD&lt;/a&gt;, I needed to uninstall &lt;a href="http://www.microsoft.com/defender"&gt;Microsoft Defender&lt;/a&gt; (I've been suspecting the two of them to cause a few problems on my computer lately). I didn't find the uninstaller for Defender, so I went over to Microsoft to download Defender's installer.&lt;br /&gt;&lt;br /&gt;Being greeted by the validation screen, I suddenly remembered that I was running Firefox and got a little scared that I had to switch browser to be able to validate my Windows XP (no Vista yet) installation.&lt;br /&gt;&lt;br /&gt;But I decied to give it a try, and pressed the validate button. After downloading and installing a small program, the validation process went as smooth as it does in IE, and after a few minutes Microsoft Defender was uninstalled.&lt;br /&gt;&lt;br /&gt;Thanks for letting me use the browser I want to use, MS :-)&lt;br /&gt;&lt;a href="http://www.grisoft.com/doc/1"&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-2727185499315392469?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/2727185499315392469/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=2727185499315392469' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/2727185499315392469'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/2727185499315392469'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2007/02/microsoft-is-really-delivering-on.html' title='Microsoft is really delivering on different platforms'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-3532628575214659478</id><published>2007-02-20T13:28:00.000-08:00</published><updated>2007-02-20T23:35:11.820-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='software vista rants'/><title type='text'>Why I wont switch to Windows Vista</title><content type='html'>I'm not moving to Vista for two reasons:&lt;br /&gt;&lt;br /&gt;1) Visual Studio 2003 wont work, and therefore I can't do my .Net 1.1 development on Vista&lt;br /&gt;2) Vista needs a faster, more beefed up computer than the one &lt;a href="http://chrfalch.blogspot.com/2005/12/got-myself-tablet-pc.html"&gt;I have&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;So, why can't I just switch to Visual Studio 2005? I have it installed, and I really like using it. It's a bit slower than VS2003 in some ways, but that's something the added effectivity of VS2005 weights up for.&lt;br /&gt;&lt;br /&gt;No, the main reason is that I can't switch the framework version we're using in our product  from .Net 1.1 to 2.0 just so that I can &lt;span style="font-style: italic;"&gt;install a new OS!&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;And why can't I just buy a new computer? Because a new computer is expensive, and changing computers every year because a new and better hardware configuration or OS exists isn't an option. I remember that when I first got my M4, I really felt that it was a fantastic computer with all the memory and CPU I'd ever need. I to be honest; I haven't changed neither the OS nor any of the programs I'm using in my daily work, so in theory my computer should still be up to snuff!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-3532628575214659478?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/3532628575214659478/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=3532628575214659478' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/3532628575214659478'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/3532628575214659478'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2007/02/why-i-wont-switch-to-windows-vista.html' title='Why I wont switch to Windows Vista'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-1744200306255614913</id><published>2007-02-20T12:20:00.000-08:00</published><updated>2007-02-20T12:26:19.788-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='software'/><category scheme='http://www.blogger.com/atom/ns#' term='utilities'/><title type='text'>A nice little utility</title><content type='html'>Just read about this fantastic tool (I can't find where I read about it, but thanks anyway..!). Since I use Mozilla Thunderbird for email and Microsoft Outlook as my calendar (reason: Thunderbird is faster, and hasn't been exposed to viruses and attacks in the same way as Outlook, and I need to keep my appointments in Outlook since ActiveSync only works with Outlook..).&lt;br /&gt;&lt;br /&gt;This fantastic utility from Michael Scrivo really gives me the best of both worlds, I can keep on saving my appointments in Outlook without having to launch and have Outlook running with full UI in the background!&lt;br /&gt;&lt;br /&gt;Thanks Michael!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-1744200306255614913?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.michaelscrivo.com/projects/outlookdesktop/' title='A nice little utility'/><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/1744200306255614913/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=1744200306255614913' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/1744200306255614913'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/1744200306255614913'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2007/02/nice-little-utility.html' title='A nice little utility'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-116777303056392553</id><published>2007-01-02T13:23:00.000-08:00</published><updated>2007-01-02T13:23:50.793-08:00</updated><title type='text'>Happy New Year!</title><content type='html'>Just wanted to post my best wishes for you all out there in tabletspace in the new year!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-116777303056392553?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/116777303056392553/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=116777303056392553' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/116777303056392553'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/116777303056392553'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2007/01/happy-new-year.html' title='Happy New Year!'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-116233048581291030</id><published>2006-10-31T13:34:00.000-08:00</published><updated>2006-10-31T13:34:45.880-08:00</updated><title type='text'>The Winter is Here!</title><content type='html'>It&amp;rsquo;s snowing here in Oslo, which means that the winter is finally here. I have to be carefull with my TabletPC when biking to work tomorrow :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-116233048581291030?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/116233048581291030/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=116233048581291030' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/116233048581291030'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/116233048581291030'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/10/winter-is-here.html' title='The Winter is Here!'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-116229668133930384</id><published>2006-10-31T04:11:00.000-08:00</published><updated>2006-10-31T04:11:21.433-08:00</updated><title type='text'>DualCor PC vaporware of the year... (from JkOnTheRun)</title><content type='html'>&lt;p&gt;Read &lt;a href="http://jkontherun.blogs.com/"&gt;JkOnTheRun&amp;rsquo;s &lt;/a&gt;article &lt;a href="http://www.typepad.com/t/trackback/6633400"&gt;here&lt;/a&gt;. All about why it&amp;rsquo;s awarded the vaporware of the year award. &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-116229668133930384?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/116229668133930384/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=116229668133930384' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/116229668133930384'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/116229668133930384'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/10/dualcor-pc-vaporware-of-year-from.html' title='DualCor PC vaporware of the year... (from JkOnTheRun)'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-116178744628702238</id><published>2006-10-25T07:36:00.000-07:00</published><updated>2006-10-25T07:44:06.313-07:00</updated><title type='text'>Alternative way of activating pen text entry</title><content type='html'>&lt;p&gt;Got a great suggestion for activating the alternative TIP I've blogged about about earlier on. An annonymous comment suggested that the Ink Everywhere panel only should appear if the pen button was pressed when clicking in the field. &lt;/p&gt;&lt;p&gt;This will make it very easy to perform other tasks like copying, pasting and selecting existing text in the field. First I thought that one should have support for gesturing to perform those operations, but that could be a bit too complicated for ordinary users. Any thoughts?&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-116178744628702238?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/116178744628702238/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=116178744628702238' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/116178744628702238'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/116178744628702238'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/10/alternative-way-of-activating-pen-text.html' title='Alternative way of activating pen text entry'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-116176009253426888</id><published>2006-10-25T00:08:00.000-07:00</published><updated>2006-10-25T00:08:13.270-07:00</updated><title type='text'>Debug statement in Javascript! Thanks, Julia</title><content type='html'>&lt;p&gt;Read Julia&amp;rsquo;s &lt;a href="http://blog.ziffdavis.com/devlife/archive/2006/10/24/43938.aspx"&gt;post&lt;/a&gt; about her newest discovery in Javascript: The &lt;font face="Courier New"&gt;debugger&lt;/font&gt; statement! By writing the word debugger in your code, IE will enter the debugger on that line. That was the last time I&amp;rsquo;ve ever written MyStupidObject.MethodCallThatWillFail() in my code. &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-116176009253426888?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/116176009253426888/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=116176009253426888' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/116176009253426888'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/116176009253426888'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/10/debug-statement-in-javascript-thanks.html' title='Debug statement in Javascript! Thanks, Julia'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-116152454989256031</id><published>2006-10-22T06:42:00.000-07:00</published><updated>2006-10-22T06:42:29.940-07:00</updated><title type='text'>Yesterday's concert</title><content type='html'>Thanks to each and everyone of you that took the time to show up and make the night a good night for us! We gave everything, and the concert went very well. We got fantastic feedback from the audience, and the place was packed. &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-116152454989256031?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/116152454989256031/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=116152454989256031' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/116152454989256031'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/116152454989256031'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/10/yesterdays-concert.html' title='Yesterday&apos;s concert'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-116143244242190832</id><published>2006-10-21T05:07:00.000-07:00</published><updated>2006-10-21T05:07:22.430-07:00</updated><title type='text'>Speaking of guitar heros...</title><content type='html'>Found this &lt;a href="http://www.youtube.com/watch?v=TcE3NgV2Tyg&amp;amp;eurl="&gt;video &lt;/a&gt;over &lt;a href="http://www.espen.com/cgi-local/mt/mt-tb.cgi/1033"&gt;at&lt;/a&gt; Espen&amp;rsquo;s &lt;a href="http://www.espen.com/norskblogg/"&gt;blogg&lt;/a&gt;. &lt;span class="nametext"&gt;&lt;a href="http://www.rodgab.com/"&gt;Rodrigo Y Gabriela&lt;/a&gt;&amp;nbsp;are real guitar heros. Take a look, and pay attention to the techniques they are using.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-116143244242190832?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/116143244242190832/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=116143244242190832' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/116143244242190832'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/116143244242190832'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/10/speaking-of-guitar-heros.html' title='Speaking of guitar heros...'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-116143117733820843</id><published>2006-10-21T04:46:00.000-07:00</published><updated>2006-10-21T04:46:17.343-07:00</updated><title type='text'>I'm a guitar hero</title><content type='html'>Wow. We played&amp;nbsp;a few&amp;nbsp;rounds of &lt;a href="http://www.guitarherogame.com/gh1/"&gt;Guitar Hero&lt;/a&gt; last night after work, and I must say that I was totally blown away with the playability of the game. &lt;a href="http://www.redoctanegames.com/"&gt;RedOctane&lt;/a&gt; and &lt;a href="http://www.harmonixmusic.com/"&gt;Harmonix &lt;/a&gt;has done an excellent job delivering a great game and an outstanding user experience. Playing on the game&amp;rsquo;s &amp;ldquo;plastic-o-so-fantastic&amp;rdquo;guitar really made me feel like a guitar hero. And I might need it, since&amp;nbsp;I&amp;rsquo;m trying to become one&amp;nbsp;&lt;a href="http://chrfalch.blogspot.com/2006/10/cochise-is-playing-live-at-cafe-mir-on.html"&gt;tonight&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-116143117733820843?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/116143117733820843/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=116143117733820843' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/116143117733820843'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/116143117733820843'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/10/im-guitar-hero.html' title='I&apos;m a guitar hero'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-116118586777163112</id><published>2006-10-18T08:37:00.000-07:00</published><updated>2006-10-18T08:37:47.860-07:00</updated><title type='text'>Cochise is playing live at Cafe Mir on saturday</title><content type='html'>&lt;p&gt;And I know that it&amp;rsquo;ll probably be a bit long for you all to travel to Oslo (Norway) to see us. But I just wanted you all to know. You can read more about our band &lt;a href="http://www.cochise.no/"&gt;here&lt;/a&gt;, and visit our MySpace.com page &lt;a href="http://www.myspace.com/thehangingspace"&gt;here&lt;/a&gt;. We&amp;rsquo;re also releasing our new video and ep at the show.&lt;/p&gt;&lt;p&gt;Remember, this is the band I &lt;a href="http://chrfalch.blogspot.com/2006/01/band-rehearsal-and-onenote.html"&gt;blogged &lt;/a&gt;about using my TabletPC when rehearsing :-)&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-116118586777163112?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/116118586777163112/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=116118586777163112' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/116118586777163112'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/116118586777163112'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/10/cochise-is-playing-live-at-cafe-mir-on.html' title='Cochise is playing live at Cafe Mir on saturday'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-116103619578038185</id><published>2006-10-16T15:03:00.000-07:00</published><updated>2006-10-16T15:03:15.840-07:00</updated><title type='text'>Josh is searching for something else to do</title><content type='html'>&lt;p&gt;Hope that he isn&amp;rsquo;t &lt;a href="http://josheinstein.com/journal/archive/2006/10/16/1730.aspx"&gt;quitting&lt;/a&gt; because the Tablet PC market is becomming too small. I belive in&amp;nbsp;the platform and think that a vibrant and good marketplace for third party software is important to ensure growth. So Josh, hope you find something usefull to do, and good luck with finding a new home for TEO.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-116103619578038185?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/116103619578038185/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=116103619578038185' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/116103619578038185'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/116103619578038185'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/10/josh-is-searching-for-something-else.html' title='Josh is searching for something else to do'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-116093702774233057</id><published>2006-10-15T11:30:00.000-07:00</published><updated>2006-10-15T11:30:27.750-07:00</updated><title type='text'>What kind of alternative input do we want on the Tablet PC?</title><content type='html'>&lt;p&gt;(Note to self: Remember not to spend this long untill next time you post.)&lt;/p&gt;&lt;p&gt;If you&amp;rsquo;ve read my blog the last 6 months, you&amp;rsquo;ve seen that I have created a &lt;a href="http://chrfalch.blogspot.com/2006/07/demonstration-of-ink-everywhere.html"&gt;small tool for writing ink&lt;/a&gt; directly in text fields on the screen. One of the obstacles I&amp;rsquo;ve&amp;nbsp;met&amp;nbsp;when developing the tool has been to get a consistent way of tracking input fields for all programs in every scenario. &lt;/p&gt;&lt;p&gt;The other major issue I&amp;rsquo;m having is something I feel I need some help answering. How should an alternative Tablet PC Input Panel work? &lt;a href="http://jk.prismesoft.com/"&gt;Jan-Kristian&lt;/a&gt; correctly pointed out (when &lt;a href="http://www.blogger.com/comment.g?blogID=6714064&amp;amp;postID=115287703769064203"&gt;commenting&lt;/a&gt; my posting) that there are a lot of considerations to take care of, like how to edit ink etc. &lt;/p&gt;&lt;p&gt;I&amp;rsquo;ve found out that covering all text fields with a semi-transparent inkable field might work if there are enough functionality for editing text already in the field, and for editing the text you&amp;rsquo;re currently writing. What I&amp;rsquo;d like you all to do now, is to comment on this post with your concerns and wishes. &lt;/p&gt;&lt;p&gt;Thanks for your feedback.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-116093702774233057?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/116093702774233057/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=116093702774233057' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/116093702774233057'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/116093702774233057'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/10/what-kind-of-alternative-input-do-we.html' title='What kind of alternative input do we want on the Tablet PC?'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-115728020984051035</id><published>2006-09-03T03:40:00.000-07:00</published><updated>2006-09-03T03:52:26.436-07:00</updated><title type='text'>I got a new phone</title><content type='html'>&lt;a href="http://photos1.blogger.com/blogger/1136/377/1600/icon_SP5.png"&gt;&lt;img style="FLOAT: right; MARGIN: 0px 0px 10px 10px; CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/1136/377/320/icon_SP5.png" border="0" /&gt;&lt;/a&gt; &lt;p&gt;After a year as a Nokia user, I finally got the opportunity to switch back to a Windows Smartphone. I choose the i-mate SP-5 since it has everything I need and WIFI.&lt;/p&gt;&lt;p&gt;It feels great to surf the net at high speed from my local &lt;a href="http://www.kaffebrenneriet.no/"&gt;kaffebrenneriet &lt;/a&gt;(coffeeshop in Norway). If anyone has software that they use and find invaluable, please let me know!&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-115728020984051035?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/115728020984051035/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=115728020984051035' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115728020984051035'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115728020984051035'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/09/i-got-new-phone.html' title='I got a new phone'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-115727996933486773</id><published>2006-09-03T03:39:00.000-07:00</published><updated>2006-09-03T03:39:29.340-07:00</updated><title type='text'>It's been a while...</title><content type='html'>&lt;p&gt;&amp;hellip;since you last heard from me. This is mainly because we&amp;rsquo;ve been rebuilding our new appartement and moving. We&amp;rsquo;re now well sorted out (still a few boxes to unpack), but the appartement is ready and everybody is quite happy with the way it works out. &lt;/p&gt;&lt;p&gt;I have been busy testing out different ways of building my Ink Everywhere application. The biggest task has been to build it as a text service using the &lt;a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/tsf/tsf/text_services_framework.asp?frame=true"&gt;Text Service Framework&lt;/a&gt;. From my knowledge, the framework was used to build the current Input Panel, allthough I&amp;rsquo;m having HUGE problems getting it to notify my program in a consistent way. I&amp;rsquo;ll post some updates on my findings later.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-115727996933486773?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/115727996933486773/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=115727996933486773' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115727996933486773'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115727996933486773'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/09/its-been-while.html' title='It&apos;s been a while...'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-115382490858040354</id><published>2006-07-25T03:50:00.000-07:00</published><updated>2006-07-25T03:55:08.593-07:00</updated><title type='text'>Summertime!</title><content type='html'>Just wanted to say that we're having a great time on the southern coast of Norway. We're having a great time, the water is hot (22 c) and the sun is shining!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-115382490858040354?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/115382490858040354/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=115382490858040354' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115382490858040354'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115382490858040354'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/07/summertime.html' title='Summertime!'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-115348737395860049</id><published>2006-07-21T06:09:00.000-07:00</published><updated>2006-07-21T06:10:32.720-07:00</updated><title type='text'>Demonstration of the Ink Everywhere application</title><content type='html'>&lt;p&gt;If you&amp;rsquo;d like to test the application, you can download a very, very early demonstration from here:&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.cochise.no/InkEverywhere%20v.0.1.zip"&gt;Download v.0.1&lt;/a&gt;&lt;a href="http://www.cochise.no/InkEverywhere%20v.0.1.zip"&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Extract the contents of the zip file to a directory on your computer, and execute the file Falch.InkOverlay.App.exe. The file sits in the tray icon, and when you select an edit control or another field that can recieve input, the cursor changes to an ink cursor, and you can write away. After ca. 1 sec of not writing, the ink is converted to text and inserted into the input field.&lt;/p&gt;&lt;p&gt;Missing features:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Windowless controls (controls inside IE, Mozilla etc) wont be inkable.&lt;/li&gt;&lt;li&gt;The current input scope isn&amp;rsquo;t tracked.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;I&amp;rsquo;m working on converting the application to a Text Service, which should provide a bit more functionality in the above areas.&lt;/p&gt;&lt;p&gt;Looking forward to your comments. I can be reached by email at chfalch at broadpark period no&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-115348737395860049?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/115348737395860049/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=115348737395860049' title='15 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115348737395860049'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115348737395860049'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/07/demonstration-of-ink-everywhere.html' title='Demonstration of the Ink Everywhere application'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>15</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-115348733259146961</id><published>2006-07-21T06:08:00.000-07:00</published><updated>2006-07-21T06:08:53.093-07:00</updated><title type='text'>Vacation</title><content type='html'>&lt;p&gt;Ah! Today is my last day at work before my vacation starts! I&amp;rsquo;ll be leaving for my two week-vacation on sunday. We&amp;rsquo;re staying in the southern part of Norway in our summer house by the sea. &lt;/p&gt;&lt;p&gt;See you all!&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-115348733259146961?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/115348733259146961/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=115348733259146961' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115348733259146961'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115348733259146961'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/07/vacation.html' title='Vacation'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-115287703769064203</id><published>2006-07-14T04:37:00.000-07:00</published><updated>2006-07-14T04:37:17.696-07:00</updated><title type='text'>Ink everywhere?</title><content type='html'>&lt;p&gt;Rob's &lt;a href="http://www.gottabemobile.com/PermaLink,guid,9267f0b2-7f3e-4e50-9e72-f9073cad9f80.aspx"&gt;article about ink in Vista&lt;/a&gt; (about the lack of ink everywhere) made me both &lt;a href="http://chrfalch.blogspot.com/2006/07/rob-on-vista-and-ink.html"&gt;post&lt;/a&gt; and think (actually I've been thinking a lot). &lt;a href="http://photos1.blogger.com/blogger/1136/377/1600/appointment%20subject.1.jpg"&gt;&lt;/a&gt;I've been working on a little utility for giving me ink everywhere, and wanted to post some pictures about my progress so far. The idea is that the utility would replace the TIP completely, letting you write directly on text fields all over Windows. &lt;/p&gt;&lt;p&gt;The application is still being developed, and important features like detecting the input scope (web, email etc) and integration with windowless controls in IE (on the page itself) is still to&amp;nbsp;be added.&lt;/p&gt;&lt;p&gt;Take a look at these pictures of the application: &lt;/p&gt;&lt;p&gt;Inking in IE: &lt;br /&gt;&lt;a href="http://photos1.blogger.com/blogger/1136/377/1600/enter%20address%20ie.jpg"&gt;&lt;img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/1136/377/320/enter%20address%20ie.jpg" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;&lt;p&gt;Inking in the search field in IE: &lt;br /&gt;&lt;a href="http://photos1.blogger.com/blogger/1136/377/1600/search%20ie.jpg"&gt;&lt;img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/1136/377/320/search%20ie.jpg" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;&lt;p&gt;Inking in Explorer: &lt;br /&gt;&lt;a href="http://photos1.blogger.com/blogger/1136/377/1600/new%20name.jpg"&gt;&lt;img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/1136/377/320/new%20name.jpg" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;&lt;p&gt;Renaming a folder: &lt;br /&gt;&lt;a href="http://photos1.blogger.com/blogger/1136/377/1600/saveas.0.jpg"&gt;&lt;img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/1136/377/320/saveas.0.jpg" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;&lt;p&gt;Inking in Outlook: &lt;br /&gt;&lt;a href="http://photos1.blogger.com/blogger/1136/377/1600/appointment%20note.jpg"&gt;&lt;img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/1136/377/320/appointment%20note.jpg" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-115287703769064203?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/115287703769064203/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=115287703769064203' title='10 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115287703769064203'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115287703769064203'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/07/ink-everywhere_14.html' title='Ink everywhere?'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>10</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-115183075334191934</id><published>2006-07-02T01:59:00.000-07:00</published><updated>2006-07-02T01:59:13.346-07:00</updated><title type='text'>Rob on Vista and Ink</title><content type='html'>&lt;p&gt;I just read Rob Rushway&amp;rsquo;s &lt;a href="http://www.gottabemobile.com/PermaLink,guid,9267f0b2-7f3e-4e50-9e72-f9073cad9f80.aspx"&gt;&amp;ldquo;Vista and Ink&amp;rdquo;&lt;/a&gt;&amp;nbsp;&amp;ndash; article over at &lt;a href="http://www.gottabemobile.com/"&gt;GottaBeMobile&lt;/a&gt;, and I must say that I think he really hits the nail&amp;nbsp;on its head. Missing the opportunity to add native ink support in Windows Vista controls is how Microsoft can make sure that Tablet PCs will continue to be a technology for the few. &lt;/p&gt;&lt;p&gt;Read the article and pay attention to what Rob says. I&amp;nbsp;agree with&amp;nbsp;him in every word he writes here. Thanks for being so clear about the issue, Rob!&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-115183075334191934?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/115183075334191934/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=115183075334191934' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115183075334191934'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115183075334191934'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/07/rob-on-vista-and-ink.html' title='Rob on Vista and Ink'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-115178919208164058</id><published>2006-07-01T14:26:00.000-07:00</published><updated>2006-07-02T01:47:40.310-07:00</updated><title type='text'>Power (again...) and laptops..</title><content type='html'>&lt;p&gt;I was reading (a bit late) the post on &lt;a href="http://www.whatisnew.com/"&gt;&amp;ldquo;What is new&amp;rdquo;&lt;/a&gt; about &lt;a href="http://www.whatisnew.com/blogs/dailynews/archive/2006/06/27/9737.aspx"&gt;power consumption&lt;/a&gt;. And since I&amp;rsquo;m interested in power consumption (ok, I know I&amp;rsquo;ve said that before!), the following paragraph got me thinking:&lt;/p&gt;&lt;p&gt;&lt;em&gt;&amp;ldquo;Well, almost. We expect to be able to pick up a PC -- be it a notebook, Tablet PC, or UMPC -- and just be able to use it and not have to even remember that there is a battery in it after three, five, or even seven hours&amp;rdquo;&lt;/em&gt;&lt;/p&gt;&lt;p&gt;When I went home on friday, I just shut the lid of my Tecra M4, put it in my bag and rode home on my bike. After having diner and watching a game of football on tv, I popped the lid and spent a few hours reading blogs and news on the net. Then I closed the lid and went to sleep. Today we got up early to work on hour new appartement and checked a few stores for stuff we needed to buy. When we finally came home this evening I&amp;nbsp;woke up my Tablet again, and I&amp;rsquo;ve spent the past three-four hours reading blogs, writing and watching Brasil getting beaten by France. &lt;/p&gt;&lt;p&gt;As I write this post, I&amp;rsquo;m still on batteries, and I haven&amp;rsquo;t thought too much about how much power I have left or even about the fact that I&amp;rsquo;m running on batteries (I still have around 1:46 hours left if you&amp;rsquo;re curious). &lt;/p&gt;&lt;p&gt;I&amp;rsquo;ll soon close the lid and go to sleep. Forgetting that the Tablet is still running on batteries. But hey, it hibernates when the battery gets low on power, so that&amp;rsquo;s nothing I need to think about!&lt;/p&gt;&lt;p&gt;UPDATE: It&amp;rsquo;s sunday morning, and I just wanted to share with you all that this update is also written on batteries. The Tecra started up without a complaint this morning, and I didn&amp;rsquo;t have to think about batteries at all.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-115178919208164058?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/115178919208164058/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=115178919208164058' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115178919208164058'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115178919208164058'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/07/power-again-and-laptops.html' title='Power (again...) and laptops..'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-115178363358606767</id><published>2006-07-01T12:53:00.000-07:00</published><updated>2006-07-01T12:53:53.780-07:00</updated><title type='text'>kids and computing time</title><content type='html'>&lt;p&gt;We've got 5 kids in total. And we've got three computers. Now we're thinking about how we should share the available computing time between the kids. In an ideal world we'd have enough money to buy Tablet Pcs for them all (and maybe a few ultra mobiles as well)&lt;/p&gt;&lt;p&gt;What we think we need is a couple of strong desktop pcs for gaming, and two laptops for surfing and for homework. All our children are very interested in computers, allthough they have different areas of interest. They&amp;rsquo;re all playing &lt;a href="http://thesims2.ea.com/"&gt;Sims 2&lt;/a&gt;, except for the youngest one who is more interested in games where he can play with numbers and letters. They all love&amp;nbsp;writing and changing stuff in&amp;nbsp;their homepages (I&amp;rsquo;ve tried to get them to blog, but they&amp;rsquo;re not interested), and&amp;nbsp;they all do their homework using computers. Some of them are more interested than the others, and they all do different things on the computers.&lt;/p&gt;&lt;p&gt;Our problem is that our current computers are old. They&amp;rsquo;re all more than 4 years old, and allthough I&amp;rsquo;ve put some work into keeping them up to date, they&amp;rsquo;re showing signs of their age. So this is the time for a major upgrade!&lt;/p&gt;&lt;p&gt;I&amp;rsquo;ll get back with more thoughts and ideas on this topic, and&amp;nbsp;I might even ask you for some help or advice, since we&amp;rsquo;d really love to be able to give our kids the computing time they want.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-115178363358606767?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/115178363358606767/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=115178363358606767' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115178363358606767'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115178363358606767'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/07/kids-and-computing-time.html' title='kids and computing time'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-115177899764890636</id><published>2006-07-01T11:36:00.000-07:00</published><updated>2006-07-01T11:36:37.716-07:00</updated><title type='text'>Version 1.1 of the Power Controller Utility for Toshibas</title><content type='html'>Just posted a new version of my &amp;ldquo;fan utility&amp;rdquo;, which controls the brightness/cooling method of your Toshiba Tablet PC. Download it &lt;a href="http://www.cochise.no/PwrCtrl.zip"&gt;here&lt;/a&gt; if you&amp;rsquo;d like better support for automatically change brightness/cooling method when changing back and forth from AC/DC.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-115177899764890636?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/115177899764890636/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=115177899764890636' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115177899764890636'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115177899764890636'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/07/version-11-of-power-controller-utility.html' title='Version 1.1 of the Power Controller Utility for Toshibas'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-115165368506591144</id><published>2006-06-30T00:48:00.000-07:00</published><updated>2006-06-30T00:49:35.316-07:00</updated><title type='text'>My Life in Ink</title><content type='html'>Just got an email from Warner and Rob over at &lt;a href="http://www.gottabemobile.com/"&gt;GottaBeMobile.com&lt;/a&gt;&amp;nbsp;saying that they just published my contribution to the &lt;a href="http://www.gottabemobile.com/CategoryView,category,Life%20With%20Ink.aspx"&gt;Life In Ink series&lt;/a&gt;. If you&amp;rsquo;d like to read it, please go &lt;a href="http://www.gottabemobile.com/ChristanFalchAndHisLifeWithInk.aspx"&gt;here&lt;/a&gt;. Thanks for having me over :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-115165368506591144?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/115165368506591144/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=115165368506591144' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115165368506591144'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115165368506591144'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/06/my-life-in-ink.html' title='My Life in Ink'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-115107294368047211</id><published>2006-06-23T07:29:00.000-07:00</published><updated>2006-06-23T07:29:03.806-07:00</updated><title type='text'>I wish I was living in the US...</title><content type='html'>Since I&amp;rsquo;m both in love with Tablet PCs and with Beetles (I know I haven&amp;rsquo;t written much about&amp;nbsp;them here), I wish I lived in the US so that I could watch the last episode of Pimp My Ride&amp;hellip; (from &lt;a href="http://www.gottabemobile.com/AndWeHaveAWinner.aspx"&gt;GottaBeMobile.com&lt;/a&gt;). Since it&amp;rsquo;s all about Beetles and Tablet PCs.. &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-115107294368047211?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/115107294368047211/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=115107294368047211' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115107294368047211'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115107294368047211'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/06/i-wish-i-was-living-in-us.html' title='I wish I was living in the US...'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-115089086994826724</id><published>2006-06-21T04:54:00.000-07:00</published><updated>2006-06-21T04:54:29.966-07:00</updated><title type='text'>Why am I still using a Tablet PC?</title><content type='html'>&lt;p&gt;My colleage just recieved a new desktop computer. The specs aren&amp;rsquo;t that important, but goes something like AMD 64 Dual Core, lots of memory (2GB) huge and fast harddrives etc, etc.&amp;nbsp;It boots in no time, makes almost no noise, his development IDEs (Flash/VS2003) boots instantly, programs compile before you can even blink your eyes and he can play Battlefield 2 with superb graphics and speed. He can use whatever keyboard he like and&amp;nbsp;connect any monitor(s) he&amp;rsquo;d like. &lt;/p&gt;&lt;p&gt;My Tablet PC&amp;nbsp;has got a decent processor (1,7ghz), has got enough RAM (1,5GB) and has a small and efficient &lt;a href="http://chrfalch.blogspot.com/2006/05/new-harddrive.html"&gt;harddrive&lt;/a&gt;. I&amp;rsquo;m constantly working on optimizing it&amp;rsquo;s performance, by lowering the processor voltages, removing unwanted programs and utilities (and even &lt;a href="http://chrfalch.blogspot.com/2006/04/small-utility-for-controlling-fan.html"&gt;building my own utility&lt;/a&gt; to save battery and minimize heat). The screen is small, and the computer is not built for running games (haven&amp;rsquo;t even tried running Battlefield 2 on it).&lt;/p&gt;&lt;p&gt;We both spend our workdays mostly in the office sitting at our desks. We both try to use tools like &lt;a href="http://del.icio.us/"&gt;del.icio.us&lt;/a&gt; and &lt;a href="http://www.bloglines.com/"&gt;Bloglines&lt;/a&gt;&amp;nbsp;to become less dependent on storing our data locally, and we both use our computers as an integrated part of both our private life and in our daily work.&lt;/p&gt;&lt;p&gt;So why do I have a small, slow and hot computer while he has got a brand new fast, cold and large one? Why do I still want to use mine even though his&amp;nbsp;works so much&amp;nbsp;better? It even cost only half of what mine did!&lt;/p&gt;&lt;p&gt;The answer is simple and easy. I won&amp;rsquo;t trade lying in my sofa and reading my feeds, taking notes in OneNote when in a meeting,&amp;nbsp;&lt;a href="http://chrfalch.blogspot.com/2006/06/using-my-tablet-pc-in-our-new.html"&gt;taking notes&lt;/a&gt; on the plans of our new appartement or being able to develop software whereever I like for his computer. &lt;/p&gt;&lt;p&gt;Just because its not a mobile computer and I cant bring it around with me. &lt;/p&gt;&lt;p&gt;I&amp;rsquo;ve always been a strong beliver of mobile computing, and seing his new desktop computer and still being convinced that mobile is the way to go makes me feel good!&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-115089086994826724?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/115089086994826724/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=115089086994826724' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115089086994826724'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115089086994826724'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/06/why-am-i-still-using-tablet-pc.html' title='Why am I still using a Tablet PC?'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-115035564693692175</id><published>2006-06-15T00:14:00.000-07:00</published><updated>2006-06-15T00:14:06.986-07:00</updated><title type='text'>Using my Tablet PC in our new appartement</title><content type='html'>&lt;p&gt;We&amp;nbsp;recently bought a new appartement in the middle of Oslo. Since we have one week with lots of children (five in total) and one week with only two, we needed a solution that took these considerations into account. &lt;/p&gt;&lt;p&gt;We called an architect who helped us draw out a very nice solution that basically gave us one additional bedroom a bigger kitchen and a small room to keep all our computers and other work-related stuff.&lt;/p&gt;&lt;p&gt;So, where&amp;nbsp;do the Tablet PC fit in here? First, we had great use of the &lt;a href="about:PDF Annotator"&gt;PDF Annotator &lt;/a&gt;when discussing the drawings. We could sit in our sofa with the Tablet in our laps and draw, annotate and discuss the different solutions. &lt;/p&gt;&lt;p&gt;When the carpenter came to the appartement, I used my Tablet PC to take notes as we walked through each room. Using handwriting was a big help for us, since I could send away what we wrote down right after the meeting. &lt;/p&gt;&lt;p&gt;We also used the Tablet PC to&amp;nbsp;post pictures of different items we&amp;rsquo;re&amp;nbsp;giving away or selling&amp;nbsp;(a fireplace (!), closets, bathtub). A couple of hours later I had arranged for someone to pick up these (large and heavy) items.&lt;/p&gt;&lt;p&gt;So thanks to my Tablet PC, buying, planning, building, redecorating and selling has been easy as a piece of cake. Hope the rest of the rebuild goes as smooth as we hope!&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-115035564693692175?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/115035564693692175/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=115035564693692175' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115035564693692175'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115035564693692175'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/06/using-my-tablet-pc-in-our-new.html' title='Using my Tablet PC in our new appartement'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-115022846945183038</id><published>2006-06-13T12:54:00.000-07:00</published><updated>2006-06-13T12:54:29.520-07:00</updated><title type='text'>FIFA World Cup 2006: Brazil's coach using a Tablet PC!</title><content type='html'>&lt;p&gt;Just noticed when watching the World Cup that one of Brazil&amp;rsquo;s coaches were using a Tablet PC! Didn&amp;rsquo;t reckognize the model, but you could clearly see that he was using&amp;nbsp;his&amp;nbsp;laptop&amp;nbsp;in tablet mode with a pen.&lt;/p&gt;&lt;p&gt;Another proof that Tablet PCs are becoming more and more popular! &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-115022846945183038?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/115022846945183038/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=115022846945183038' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115022846945183038'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/115022846945183038'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/06/fifa-world-cup-2006-brazils-coach.html' title='FIFA World Cup 2006: Brazil&apos;s coach using a Tablet PC!'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114911468334384407</id><published>2006-05-31T15:31:00.000-07:00</published><updated>2006-05-31T15:31:23.946-07:00</updated><title type='text'>New harddrive</title><content type='html'>&lt;p&gt;I just installed my new Seagate Momentus 100GB 7200RMP harddrive in my Toshiba Tecra M4. There is a noticeable difference in speed when using the computer, especially in disk-intensive applications like video-editing apps etc. The computer boots faster, and applications generally loads quicker. The whole thing just feels quick and snappy. &lt;/p&gt;&lt;p&gt;The upgrade process took me approx. 45 minutes, using &lt;a href="http://www.acronis.com/"&gt;Acronis True Image&lt;/a&gt; to clone the disk. I chose the Seagate disk after reading &lt;a href="http://www.techreport.com/reviews/2006q1/mobile-hdds/index.x?pg=1"&gt;this report&lt;/a&gt; comparing a few small SATA harddrives. Thanks to &lt;a href="http://www.tabletpcbuzz.com/forum/topic.asp?TOPIC_ID=32544&amp;amp;SearchTerms=7200"&gt;these&lt;/a&gt; &lt;a href="http://www.tabletpcbuzz.com/forum/topic.asp?TOPIC_ID=30602&amp;amp;SearchTerms=hd,upgrade,m4"&gt;threads &lt;/a&gt;on the Tablebuzz.com forums for hints and tips!&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114911468334384407?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114911468334384407/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114911468334384407' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114911468334384407'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114911468334384407'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/05/new-harddrive.html' title='New harddrive'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114850737832291724</id><published>2006-05-24T14:49:00.000-07:00</published><updated>2006-05-24T14:49:38.326-07:00</updated><title type='text'>Homework and Google</title><content type='html'>&lt;p&gt;Allthough this is not a Tablet PC issue, I just have to share the story with you. &lt;/p&gt;&lt;p&gt;One of my daughters were doing here homework yesterday. Her task was to find the names of birds and plants from small black and white images on a hand-out. The funny thing was that instead of opening her book to find the answers, she turned to Google Images and startet to search. For each image she made a few guesses that she entered in Google Images search. If the resulting images resembled the ones on the hand-out, she trusted that she had found the correct answers and wrote them down. When I checked, almost all of her answers where correct. &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114850737832291724?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114850737832291724/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114850737832291724' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114850737832291724'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114850737832291724'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/05/homework-and-google.html' title='Homework and Google'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114850668120436450</id><published>2006-05-24T14:38:00.000-07:00</published><updated>2006-05-24T14:38:01.276-07:00</updated><title type='text'>I'm loving my new battery-pack</title><content type='html'>Last night I even left my powerchord at work when I left. Since tomorrow is ascension day I didn&amp;rsquo;t take the&amp;nbsp;chance to leave it at work tonoght. I will try to stay on batteries to see how long they really last. Right now (after a couple of hours of use) the battery meter tells me that I&amp;rsquo;ve got approx. 6 hours 30 minutes left. It feels good! Next week I hope I&amp;rsquo;ll be able to order a new 7200 RPM SATA harddrive to further enhance my Tablet PC experience.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114850668120436450?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114850668120436450/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114850668120436450' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114850668120436450'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114850668120436450'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/05/im-loving-my-new-battery-pack.html' title='I&apos;m loving my new battery-pack'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114797678437515464</id><published>2006-05-18T11:26:00.000-07:00</published><updated>2006-05-18T11:37:06.440-07:00</updated><title type='text'>Edit and Continue in VS 2003</title><content type='html'>&lt;p&gt;I&amp;rsquo;m mainly using Visual Studio for my development, allthough I have Visual Studio 2005 installed on my computer. There are two main reasons for doing this. First and foremost, VS2003 is less resource hungry than VS2005. Allthough I can run VS2005 on my Tecra without problems, 99% percent of the time I doesn&amp;rsquo;t use any of the functionality of the newer version. Secondly, our product is done in .Net 1.1, and we dont have the time at the moment to port it.&lt;/p&gt;&lt;p&gt;One of the new cool features of VS2005 is Edit and Continue: &lt;a href="http://weblogs.asp.net/scottgu/archive/2006/05/08/445742.aspx"&gt;http://weblogs.asp.net/scottgu/archive/2006/05/08/445742.aspx&lt;/a&gt;&lt;/p&gt;&lt;p&gt;I was a bit surprised when I saw this, since I&amp;rsquo;ve been using the functionality in VS2003 for a long time. Here is how we do it:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Open&amp;nbsp;your&amp;nbsp;project in Visual Studio (2003) and hit Ctrl+Alt+P (Processes)&lt;/li&gt;&lt;li&gt;Select the aspnet_wp process and press attach. Make sure you select attach to the Common Library Runtime&lt;/li&gt;&lt;li&gt;Set a breakpoint in your code (this can of course be done before attaching to the process) and access the page from your browser.&lt;/li&gt;&lt;li&gt;When your application breaks, change something in your code and build the application again.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;We use this all the time, and don&amp;rsquo;t have any problems with working this way. We&amp;rsquo;re also simultaneously debugging legacy asp-code and javascript in the browser in VS2003., which is helping us finding errors in our application and prevent bugs that we&amp;rsquo;d otherwise would spend a lot of time debugging.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114797678437515464?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114797678437515464/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114797678437515464' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114797678437515464'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114797678437515464'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/05/edit-and-continue-in-vs-2003.html' title='Edit and Continue in VS 2003'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114797566859729921</id><published>2006-05-18T11:07:00.000-07:00</published><updated>2006-05-18T11:07:48.606-07:00</updated><title type='text'>Google's new Java2Ajax kit </title><content type='html'>&lt;p&gt;&lt;a href="http://www.google.com/"&gt;Google&lt;/a&gt; has just released&amp;nbsp;it &lt;a href="http://code.google.com/webtoolkit/"&gt;Google Web Toolkit&lt;/a&gt;, a set of tools&amp;nbsp;that compiles java source code to browser-compliant Javascript and Html. &lt;/p&gt;&lt;p&gt;Since I&amp;rsquo;ve been interested in (and used) Ajax, I tried the demos that they have published. I am also running Internet Explorer version 7, and have turned on all the debugging functionality in the browser so that I see all javascript errors when watching a web page.&lt;/p&gt;&lt;p&gt;When trying to run the&amp;nbsp;&lt;a href="http://code.google.com/webtoolkit/documentation/examples/dynamictable/demo.html"&gt;Dynamic Table Example&lt;/a&gt;&amp;nbsp;demo, I got a javascript error saying &amp;ldquo;object doesn&amp;rsquo;t support this property or method&amp;rdquo;. This is a typical javascript error you get when f.ex. trying to access a new window you have opened that doesn&amp;rsquo;t exist (because it might have been caught by a popup-blocker). The same happened when trying the &lt;a href="http://code.google.com/webtoolkit/documentation/examples/kitchensink/demo.html"&gt;Kitchen Sink&lt;/a&gt; demo. Same reason, the javascript doesn&amp;rsquo;t check if a new window was really created.&lt;/p&gt;&lt;p&gt;I tried to run the demo in Firefox, and everything went fine. Since I always keep old versions of Internet Explorer aruond, I also tried it in IE 6, and it did work. &lt;/p&gt;&lt;p&gt;Not a very big issue, Google, but you should probably have catched the error in your framework when run in IE7.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114797566859729921?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114797566859729921/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114797566859729921' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114797566859729921'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114797566859729921'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/05/googles-new-java2ajax-kit.html' title='Google&apos;s new Java2Ajax kit '/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114797495717674445</id><published>2006-05-18T10:55:00.000-07:00</published><updated>2006-05-18T10:55:57.996-07:00</updated><title type='text'>New battery for my Tecra M4</title><content type='html'>&lt;p&gt;Today I finally recieved my new battery for my Toshiba Tecra M4. The battery replaces the dvd unit (which hasn&amp;rsquo;t been used much) and was easy to install.&lt;/p&gt;&lt;p&gt;Now my battery meter is telling me that I&amp;rsquo;ve got approximatly 9 hours of battery left. As you might have noticed before, I&amp;rsquo;ve done a few things to optimize my M4 to make it run cooler and&amp;nbsp;less noisy. I don&amp;rsquo;t think I&amp;rsquo;ll have the time to check out how long the batteries will last (I need to get some sleep as well), but I&amp;rsquo;ll see what happens in the next few days. &lt;/p&gt;&lt;p&gt;Next up is exchanging the built-in 5400&amp;nbsp;RPM harddrive with a 7200 RPM 100 GB&amp;nbsp; HD to improve boot time and try to further improve the performance of my Toshiba.&lt;/p&gt;&lt;p&gt;Btw, congratulations to &lt;a href="http://www.ericmackonline.com/"&gt;Eric Mack&lt;/a&gt; who&amp;nbsp;has&amp;nbsp;finally become a &lt;a href="http://www.ericmackonline.com/ica/blogs/emonline.nsf/dx/drum-roll-please-my-tablet-pc-announcement"&gt;YABHTU&lt;/a&gt;!&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114797495717674445?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114797495717674445/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114797495717674445' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114797495717674445'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114797495717674445'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/05/new-battery-for-my-tecra-m4.html' title='New battery for my Tecra M4'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114675033032069785</id><published>2006-05-04T06:39:00.000-07:00</published><updated>2006-05-04T06:55:25.883-07:00</updated><title type='text'>I broke my table - and my tablet survived</title><content type='html'>&lt;p&gt;A couple of hours ago I broke my office table. It's a table made of glass (although rather thick glass) and it literaly exploded in front of me. I was standing beside the table, so I wasn't hurt except for a small cut in my left thumb. &lt;/p&gt;&lt;p&gt;On my desk I had my beloved Toshiba Tecra M4 and a nice Powerbook (that I have to validate web pages in Safari). They both fell down, but none of them was hurt. My Tablet PC was caught hanging by the ethernet cable and my eargoogles cable. The only thing that took any damage was my mouse. It's full of scratches and cuts. &lt;/p&gt;&lt;p&gt;And I spent a couple of hours cleaning up. In the picture below I've managed to put the two computers on the nearest table (which is now my new table). &lt;/p&gt;&lt;p&gt;&lt;a href="http://photos1.blogger.com/blogger/1136/377/1600/table.jpg"&gt;&lt;img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/1136/377/320/table.jpg" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114675033032069785?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114675033032069785/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114675033032069785' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114675033032069785'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114675033032069785'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/05/i-broke-my-table-and-my-tablet.html' title='I broke my table - and my tablet survived'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114664402033654033</id><published>2006-05-03T01:13:00.000-07:00</published><updated>2006-05-03T01:13:40.343-07:00</updated><title type='text'>Update to the Fan Control Utility</title><content type='html'>&lt;p&gt;Just wanted to post a note about a very small update to the utility. Thanks to &lt;a href="http://www.blogger.com/profile/18883473"&gt;thebithead&lt;/a&gt;, I&amp;rsquo;ve changed the menu item for changing cooling method to &amp;ldquo;Cooling Method&amp;rdquo;. Not a big update.. :-)&lt;/p&gt;&lt;p&gt;The tool is updated and downloadable from &lt;a href="http://www.cochise.no/PwrCtrl.zip"&gt;here&lt;/a&gt;.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114664402033654033?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114664402033654033/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114664402033654033' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114664402033654033'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114664402033654033'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/05/update-to-fan-control-utility.html' title='Update to the Fan Control Utility'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114664148003778036</id><published>2006-05-03T00:31:00.000-07:00</published><updated>2006-05-03T00:36:16.010-07:00</updated><title type='text'>Programming Fonts</title><content type='html'>&lt;p&gt;There has been a couple of postings lately about programming fonts. I found a link to &lt;a href="http://keithdevens.com/wiki/ProgrammerFonts"&gt;this&lt;/a&gt; page with a list of recommended programming fonts, but none of the fonts suited me. I think they&amp;rsquo;re too small. I&amp;rsquo;ve been using a font called &lt;a href="http://www.gnome.org/fonts/"&gt;Bitstream Vera Sans Mono&lt;/a&gt; that I&amp;rsquo;ve been very happy with. Today &lt;a href="http://www.hanselman.com/blog/"&gt;Scott Hanselman&lt;/a&gt;&amp;nbsp;&lt;a href="http://www.hanselman.com/blog/ConsolasFontFamilyNowAvailableForDownload.aspx"&gt;blogged&lt;/a&gt; about a new font called &lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=22e69ae4-7e40-4807-8a86-b3d36fab68d3&amp;amp;displaylang=en"&gt;Consolas&lt;/a&gt;, which looks very nice. I&amp;rsquo;ve posted a picture to show the differences between the Bitstream Vera and the Consolas fonts:&lt;/p&gt;&lt;br /&gt;&lt;a href="http://photos1.blogger.com/blogger/1136/377/1600/fonts.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/1136/377/320/fonts.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;p&gt;The Consolas font is the font on the right hand side of the picture&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114664148003778036?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114664148003778036/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114664148003778036' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114664148003778036'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114664148003778036'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/05/programming-fonts.html' title='Programming Fonts'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114633267341767835</id><published>2006-04-29T10:39:00.000-07:00</published><updated>2006-04-29T10:44:33.430-07:00</updated><title type='text'>The fan/brightness controll utility</title><content type='html'>If you'd like to try out the fan and brightness utility, please download it &lt;a href="http://www.cochise.no/PwrCtrl.zip"&gt;here&lt;/a&gt;. The utility has the following features:&lt;br /&gt;&lt;br /&gt;* Change brightness in 8 steps&lt;br /&gt;* Change fan speed in three steps&lt;br /&gt;* Remembers settings (put it in your startup directory)&lt;br /&gt;* Remembers settings and switches between them when you change from AC to battery.&lt;br /&gt;&lt;br /&gt;Known issues:&lt;br /&gt;&lt;br /&gt;* When comming back from standby or hibernate, changing the fan speed wont work before you run the tpsmain.exe program.&lt;br /&gt;&lt;br /&gt;The program is supposed to replace the Toshiba Power Management software, and works great together with the &lt;a href="http://www.pbus-167.com/chc.htm"&gt;Notebook Hardware Control&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114633267341767835?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114633267341767835/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114633267341767835' title='73 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114633267341767835'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114633267341767835'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/04/fanbrightness-controll-utility.html' title='The fan/brightness controll utility'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>73</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114598273882527981</id><published>2006-04-25T09:32:00.000-07:00</published><updated>2006-04-25T09:32:18.946-07:00</updated><title type='text'>Do I want to release my little fan/brightness utility?</title><content type='html'>&lt;p&gt;&lt;a href="http://wickedstageact2.typepad.com/"&gt;Warner Crocker&lt;/a&gt; is asking me if I&amp;rsquo;d like to release the little utility I just blogged about how I wrote &lt;a href="http://chrfalch.blogspot.com/2006/04/small-utility-for-controlling-fan.html"&gt;here&lt;/a&gt;, &lt;a href="http://chrfalch.blogspot.com/2006/04/continuing-development-of-my-little_21.html"&gt;here&lt;/a&gt; and &lt;a href="http://chrfalch.blogspot.com/2006/04/finishing-of-fan-utility.html"&gt;here&lt;/a&gt;. The answer is yes. There are just a few issues I need to resolve before releasing it into the public (Whenever I return from suspend mode, calling the functions for setting the cooling method wont work, and I need to run tpsmain.exe to reset something. I&amp;rsquo;m looking into it, and will keep you all posted)&lt;/p&gt;&lt;p&gt;Remember that this tool is supposed to be used together with a&amp;nbsp;utility for controlling the processor/ speed/voltage (I&amp;rsquo;m using &lt;a href="http://www.pbus-167.com/chc.htm"&gt;Notebook Hardware Control&lt;/a&gt;). My little utility only replaces the code for automatically adjusting the brightness and cooling method when switching between battery and ac operation.&lt;/p&gt;&lt;p&gt;The picture I posted yesterday was of course from running on batteries. When running on AC the &amp;ldquo;battery optimized&amp;rdquo; fan speed makes the computer a bit hotter, the temperature lies between 50&amp;ndash;60 C, but always closer to 50 than 60. &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114598273882527981?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114598273882527981/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114598273882527981' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114598273882527981'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114598273882527981'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/04/do-i-want-to-release-my-little.html' title='Do I want to release my little fan/brightness utility?'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114588023849932849</id><published>2006-04-24T04:59:00.000-07:00</published><updated>2006-04-25T03:51:58.746-07:00</updated><title type='text'>Results?</title><content type='html'>&lt;p&gt;You're probably interested in hearing what the results are after running the Fan Utility for while. See the picture to show you that I managed to keep the computer quite cool and running for quite a while with the fan in battery mode and the processor in "slow motion". &lt;/p&gt;&lt;p&gt;&lt;a href="http://photos1.blogger.com/blogger/1136/377/1600/performance.png"&gt;&lt;img style="CURSOR: hand" alt="" src="http://photos1.blogger.com/blogger/1136/377/320/performance.png" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;&lt;p&gt;Yes, approx three hours of battery time, and a cool computer (around 40C). And all this with Notebook Hardware Control and my own custom fan control utility that also turns down the screen brightness.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114588023849932849?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114588023849932849/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114588023849932849' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114588023849932849'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114588023849932849'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/04/results.html' title='Results?'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114556073108524759</id><published>2006-04-23T12:18:00.000-07:00</published><updated>2006-04-23T02:26:44.566-07:00</updated><title type='text'>Finishing of the Fan utility</title><content type='html'>&lt;p&gt;From my last posts you&amp;rsquo;ve probably read that I managed to find out how to declare and use the APIs for getting and setting the cooling method on my Toshiba Tecra M4. &lt;/p&gt;&lt;p&gt;When I develop applications I always spend some time researching before I start to write the final program. I also throw away the code I write in the research phase so that I can start all over, believing that doing things twice increases the quality of my programs. &lt;/p&gt;&lt;p&gt;The initial design for my utility was a small program that would rest in the tray area letting me change the cooling method from a simple pop up menu. After some thinking I found out that I some additional features that would be nice to have:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Setting the brightness level of the screen (to save power when running on batteries)&lt;/li&gt;&lt;li&gt;Add functionality for automatically changing between settings when&amp;nbsp;using batteries and when running from an AC power source&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Getting and setting the brightness level was an easy task to accomplish since both the functions GetBrightness and SetBrightness were exported by the Toshiba DLL I was using. The interfaces for these functions were almost the same as for&amp;nbsp;getting/setting the cooling method.&lt;/p&gt;&lt;p&gt;Receiving notifications when switching power sources is easy to do in C#. I remembered reading an &lt;a href="http://www.codeproject.com/csharp/powerstatusnet.asp"&gt;article&lt;/a&gt; on &lt;a href="http://www.codeproject.com/"&gt;Codeproject.com&lt;/a&gt; about getting notifications about power source changes written by Al Gardner. The article how to use the SystemEvents.PowerModeChanged event and also described how to retrieve information about the current power source using PInvoke to call the Windows API GetSystemPowerStatus.&lt;/p&gt;&lt;p&gt;Creating a Tray Application in C# is simple, all you have to do is create an ordinary WinForms application, set the main form&amp;rsquo;s ShowInTaskBar property to false and its WindowState property to Minimised.&lt;/p&gt;&lt;p&gt;In addition I added a NotifyIcon component to display an icon in the tray area and a ContextMenu component with the menu options I needed (remember to set the NotifyIcon&amp;rsquo;s context menu property to point to the context menu you just created).&lt;/p&gt;&lt;p&gt;The rest was just a matter of connecting events to the functionality I had&amp;nbsp;previously discovered, and to write some code for reading/writing the settings for the application to/from the registry.&lt;/p&gt;&lt;p&gt;I&amp;rsquo;m currently testing the application on my Toshiba Tecra M4, and if all goes well I&amp;rsquo;ll post a copy of it here on my blog. &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114556073108524759?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114556073108524759/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114556073108524759' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114556073108524759'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114556073108524759'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/04/finishing-of-fan-utility.html' title='Finishing of the Fan utility'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114556071210106449</id><published>2006-04-21T12:18:00.000-07:00</published><updated>2006-04-23T02:27:09.620-07:00</updated><title type='text'>Continuing the development of my little utility</title><content type='html'>&lt;p&gt;Previously I &lt;a href="http://chrfalch.blogspot.com/2006/04/small-utility-for-controlling-fan.html"&gt;posted&lt;/a&gt;&amp;nbsp;an article&amp;nbsp;about the development of a little utility for controlling the fan on my Toshiba Tecra M4. The last thing I wrote was that I had tested the APIs for retrieving the current cooling method. Next up I had to find a way to set the cooling method. &lt;/p&gt;&lt;p&gt;The function SetCoolingMethod seemed to be a good starting point, and since I recently had some success using a pointer to a pointer to an integer (which in c# is declared as &lt;em&gt;ref IntPtr paramname&lt;/em&gt;), I tried this with the SetCoolingMethod function as well. I wrote the interfaces in my little test project, and fired it up from within the debugger. This time the program crashed with a null pointer exception. I tried several different ways of declaring the parameter, using integers, pointers to integers and the pointer to a pointer to an integer. &lt;/p&gt;&lt;p&gt;I did some research to see how the Toshiba Power Management software were using the function, and saw that it seemed to send two parameters to the function. I tried to pass two pointer-to-a-pointer-to-an-int parameters to the function, and this time it worked &amp;ndash; the fan suddenly stopped spinning like crazy when I fed it with the value 2 as the first parameter!&lt;/p&gt;&lt;p&gt;I now had a way of both getting and setting the cooling method, and was all set to go to build a real program that utilized this knowledge.&lt;/p&gt;&lt;p&gt;Stay tuned for my next post.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114556071210106449?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114556071210106449/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114556071210106449' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114556071210106449'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114556071210106449'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/04/continuing-development-of-my-little_21.html' title='Continuing the development of my little utility'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114555898494531333</id><published>2006-04-20T11:49:00.000-07:00</published><updated>2006-04-20T11:49:45.016-07:00</updated><title type='text'>Programming the Lego Mindstorms kit</title><content type='html'>&lt;p&gt;A couple of years ago (ok, eight years or so), I went to my local toy store and bought the Lego Mindstorms Robotics Invention kit for my kids (they were only three years old at the moment, but the guy behind the counter didn&amp;rsquo;t know :-). I built quite a few robots, among them were roverbots using infrared lights for prozimity detection and even a dragracer that changes gears when it reached a certain speed. It was fun!&lt;/p&gt;&lt;p&gt;I&amp;rsquo;ve been waiting for the next version of the Mindstorms kits, and really enjoyed an article I read at the MSDN &lt;a href="http://msdn.microsoft.com/coding4fun/"&gt;Coding for Fun site&lt;/a&gt;&amp;nbsp;about a &lt;a href="http://msdn.microsoft.com/coding4fun/lego/lego_intro/default.aspx"&gt;.Net SDK &lt;/a&gt;for communicating with the RCX. I found the &lt;a href="http://weblogs.asp.net/scottgu/archive/2006/04/20/443461.aspx"&gt;link&lt;/a&gt; over at Scott Guthries &lt;a href="http://weblogs.asp.net/scottgu/"&gt;blog&lt;/a&gt;.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114555898494531333?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114555898494531333/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114555898494531333' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114555898494531333'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114555898494531333'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/04/programming-lego-mindstorms-kit.html' title='Programming the Lego Mindstorms kit'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114555524143530266</id><published>2006-04-20T10:47:00.000-07:00</published><updated>2006-04-20T10:57:12.703-07:00</updated><title type='text'>A small utility for controlling the fan</title><content type='html'>&lt;p&gt;I&amp;rsquo;ve blogged about power management on my Toshiba Tecra M4 Tablet PC before, and have done a lot of thinking on how I could minimise fan noise and maximise the&amp;nbsp;battery lifetime. I&amp;rsquo;ve &lt;a href="http://chrfalch.blogspot.com/2006/03/toshiba-tecra-m4-power-management.html"&gt;blogged &lt;/a&gt;about my favourite program for undervolting and controlling processor speed, &lt;a href="http://www.pbus-167.com/chc.htm"&gt;Notebook Hardware Control&lt;/a&gt;&amp;nbsp;(which I can recommend), and I&amp;rsquo;ve blogged about discarding the Toshiba Power Management&amp;nbsp;program. &lt;/p&gt;&lt;p&gt;Lately I&amp;rsquo;ve investigated how I could control the fan speed on my computer to minimise the noise the fan is making (which &lt;a href=""&gt;a&lt;/a&gt; &lt;a href="http://www.ericmackonline.com/ica/blogs/emonline.nsf/dx/should-tablet-pcs-make-noise"&gt;lot&lt;/a&gt; &lt;a href="http://www.tabletpcbuzz.com/forum/topic.asp?TOPIC_ID=33188"&gt;of&lt;/a&gt; &lt;a href="http://www.notebookreview.com/default.asp?newsID=2474"&gt;people&lt;/a&gt; has complained about). I started to dig to see if I could find any tools to remedy this problem. I knew that I wouldn&amp;rsquo;t install the Toshiba Power Management software again, since it has a bad habbit of interfering with the Notebook Hardware Control.&lt;/p&gt;&lt;p&gt;I found some utilities that claimed to control the fan, but none of them worked on my Tecra M4. So I set out on the journey to create a new utility. First of all I started to search for some system utilities that could provide me with an interface to the functionality I was looking for. I took a sneak peek into the Toshiba Power Management software, and found out that it used some functions in a DLL called &lt;em&gt;TPeculiarity.dll&lt;/em&gt;. The dll exposes a few functions that seemed interesting for what I was looking for:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;GetCoolingMethod&lt;/li&gt;&lt;li&gt;SetCoolingMethod&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Of course there are no publicly available interfaces to these functions, so all we could do is guess. From previous experiences with APIs, I guessed that GetCoolingMethod would take a pointer to a pointer to an integer and fill it with the correct data on return. Using Visual Studio 2003 and C#, I could quickly create a small test project that verified that my assumptions were correct.&lt;/p&gt;&lt;p&gt;In my next post I&amp;rsquo;ll give you some more information on how I developed my utility!&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114555524143530266?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114555524143530266/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114555524143530266' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114555524143530266'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114555524143530266'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/04/small-utility-for-controlling-fan.html' title='A small utility for controlling the fan'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114545271898360621</id><published>2006-04-19T06:18:00.000-07:00</published><updated>2006-04-19T06:18:39.033-07:00</updated><title type='text'>A small IE7 request from a Tablet PC user</title><content type='html'>&lt;p&gt;I&amp;rsquo;ve been using IE7 (beta 1/2) for a couple of months now, and it has a lot of features that I really enjoy (and I&amp;rsquo;m not talking CTRL+Q). Among the nice things I like are the small things that makes my workday (and spare time) easier. As an example is the functionality that gives focus to a window where something&amp;nbsp;has&amp;nbsp;happened or where a new page&amp;nbsp;has been&amp;nbsp;loaded.&lt;/p&gt;&lt;p&gt;This led me to ask for the following feature: Why can&amp;rsquo;t the same happen with a newly opened page in a frame? &lt;/p&gt;&lt;p&gt;Here is my scenario: I&amp;rsquo;m sitting in my sofa reading all my feeds with &lt;a href="http://www.bloglines.com/"&gt;bloglines&lt;/a&gt;&amp;nbsp;in Tablet PC mode. Each time I click on a link in the left frame, the right/main frame changes it&amp;rsquo;s active/selected page. To start reading (which involves scrolling), I need to perform an additional click in the right frame to give it focus. Otherwise the Tablet PC button will scroll the contents in the left frame. This is really annoying, since I need to double click twice as many times as necessary.&lt;/p&gt;&lt;p&gt;Please&amp;hellip;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114545271898360621?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114545271898360621/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114545271898360621' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114545271898360621'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114545271898360621'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/04/small-ie7-request-from-tablet-pc-user.html' title='A small IE7 request from a Tablet PC user'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114422487963719672</id><published>2006-04-05T01:14:00.000-07:00</published><updated>2006-04-05T01:14:39.976-07:00</updated><title type='text'>PSP Development</title><content type='html'>&lt;p&gt;&lt;a href="http://www.hanselman.com/"&gt;Scott Hanselman&lt;/a&gt; posts a &lt;a href="http://www.hanselman.com/blog/Trackback.aspx?guid=75325860-392b-42c7-abfe-87cf25da9db9"&gt;great article&lt;/a&gt; about PSP development as an interview with his friend Doug Beck. The article talks about the constraints (and possibilities) of the PSP platform. &lt;/p&gt;&lt;p&gt;For developers like me that are&amp;nbsp;used to automatic memory management and almost unlimited memory on today&amp;rsquo;s platforms, the article brings back a lot of memories from building compilers and development tools for the PalmOS platform, embedded development in C, writing games in BASIC on my &lt;a href="http://www.old-computers.com/MUSEUM/computer.asp?c=117&amp;amp;st=1"&gt;Dragon 32&lt;/a&gt; etc. &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114422487963719672?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114422487963719672/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114422487963719672' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114422487963719672'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114422487963719672'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/04/psp-development.html' title='PSP Development'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114413521008936109</id><published>2006-04-04T00:20:00.000-07:00</published><updated>2006-04-04T05:26:05.083-07:00</updated><title type='text'>More on temperatures</title><content type='html'>&lt;p&gt;I previously wrote that I wasn&amp;rsquo;t using the &amp;ldquo;Dynamic Switching&amp;rdquo; scheme for setting processor speeds dependent on the processor load because I thought it made the computer running hotter. Again, by accident, I switched to &amp;ldquo;Dynamic Switching&amp;rdquo; mode, and presto, the temperature dropped to 42C, and it&amp;rsquo;s been there since! &lt;/p&gt;&lt;p&gt;As I write this, I&amp;rsquo;m doing development in C# (VS 2003 with &lt;a href="http://ankhsvn.tigris.org/"&gt;Ankh &lt;/a&gt;installed) and&amp;nbsp;Javascript, testing in both Firefox and Internet Explorer while running Microsoft Defender in the background! And the temperature is still 42. The fan is running, but only at semi-fast speed (ie. not too noisy). &lt;/p&gt;&lt;p&gt;&lt;strong&gt;&lt;em&gt;UPDATE&lt;/em&gt;&lt;/strong&gt;: And after a few hours the computer just turned black, and had to be rebooted. I&amp;rsquo;m still running&amp;nbsp;in Dynamic Switching mode, but I need to do some more testing with different voltages. I&amp;rsquo;ve now just turned all multipliers from 8 to twelve.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114413521008936109?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114413521008936109/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114413521008936109' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114413521008936109'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114413521008936109'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/04/more-on-temperatures.html' title='More on temperatures'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114383052264489973</id><published>2006-03-31T10:42:00.000-08:00</published><updated>2006-03-31T10:42:02.733-08:00</updated><title type='text'>Toshiba Tecra M4 Power Management</title><content type='html'>&lt;p&gt;By accident the preinstalled Toshiba Power Management stopped working. I&amp;rsquo;d experienced this once before, and it had something to do with the software not being able to read from the registry. This time I didn&amp;rsquo;t have time to fix the problem, so I decided to continue without it. I&amp;rsquo;m running the &lt;a href="http://www.pbus-167.com/chc.htm"&gt;Notebook Hardware Control&lt;/a&gt; as my tool of choice for undervolting&amp;nbsp;the processor on my Tecra M4. &lt;/p&gt;&lt;p&gt;I had previously been under the impression that I needed the Toshiba Software to control the fan on my laptop, but after a few hours I found out that because I&amp;rsquo;m &lt;a href="http://chrfalch.blogspot.com/2006/02/optimizing-my-tecra-m4.html"&gt;undervolting my (almost) stripped &lt;/a&gt;computer (running &lt;a href="http://www.grisoft.com/"&gt;AVG anti-virus&lt;/a&gt; software instead of the hungry Norton Suites and almost none of the preinstalled Toshiba utilities) the processor isn&amp;rsquo;t running hot anymore and the fan doesn&amp;rsquo;t kick in at it&amp;rsquo;s highest speeds. The temperature stays between 50&amp;ndash;52 and 58C. &lt;/p&gt;&lt;p&gt;I&amp;rsquo;ve updated the undervolting settings from last time I wrote about it. Now I&amp;rsquo;m running at 0.988V at full speed, and 0.716V at the lowest speed. I&amp;rsquo;ve also noticed that running in either &amp;ldquo;Performance&amp;rdquo;&amp;ndash; or &amp;ldquo;Max Battery&amp;rdquo; mode makes the processor running colder than when using the dynamic switching or battery optimized modes.&lt;/p&gt;&lt;p&gt;In addition, undervolting the computer gives me a bit more battery. I&amp;rsquo;m usually getting almost three hours on my Tecra now. It&amp;rsquo;s the best computer I&amp;rsquo;ve ever had. Honestly!&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114383052264489973?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114383052264489973/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114383052264489973' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114383052264489973'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114383052264489973'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/03/toshiba-tecra-m4-power-management.html' title='Toshiba Tecra M4 Power Management'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114382979665055725</id><published>2006-03-31T10:29:00.000-08:00</published><updated>2006-03-31T10:29:56.656-08:00</updated><title type='text'>What's an application?</title><content type='html'>&lt;p&gt;One of my daughters asked me a question that made me think the other day. She&amp;rsquo;s almost ten years old, and is very interested in technology. She&amp;rsquo;s using the computer in school, chatting with her friends using msn from home and creating homepages with some online tools she has found. &lt;/p&gt;&lt;p&gt;So, what was the question? Six months ago I introduced them to Microsoft Frontpage so that they could make their own homepage on the internet. When she found&amp;nbsp;an online service for creating and editing homepages that uses a lot of AJAX-based technologies, I reminded her that this was the same thing as we had been doing in Frontpage. She then asked me if Frontpage was an application on her computer or if it was an application on the internet. For her there wasn&amp;rsquo;t any difference between using an online, hosted&amp;nbsp;application to using a huge,&amp;nbsp;expensive and locally installed application like Frontpage. &lt;/p&gt;&lt;p&gt;So beware, Microsoft, young generations will abandon your applications without a thought. For them everything is an applicaiton &amp;ndash; wether it&amp;rsquo;s a local or remote application.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114382979665055725?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114382979665055725/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114382979665055725' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114382979665055725'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114382979665055725'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/03/whats-application.html' title='What&apos;s an application?'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114382940612766505</id><published>2006-03-31T10:23:00.000-08:00</published><updated>2006-03-31T10:23:26.136-08:00</updated><title type='text'>Long time </title><content type='html'>&lt;blockquote cite="about:blank"&gt;&lt;/blockquote&gt;&lt;p class="citation"&gt;&lt;cite cite="about:blank"&gt;&lt;a href=""&gt;&lt;/a&gt;&lt;/cite&gt;It&amp;rsquo;s been a long time since I&amp;rsquo;ve shared any of my rdn() thoughts with you. I&amp;rsquo;ve been very busy both at work and in my private life. We decided to buy ourselves a new appartment on a very short notice. Actually, I haven&amp;rsquo;t seen it yet(!) I put all the trust I had in the pictures of the appartment and my girlfriend&amp;rsquo;s judgement. But I&amp;rsquo;m really happy to be included in the circle of real estate owners again. &lt;/p&gt;&lt;p class="citation"&gt;Because I&amp;rsquo;m moving together with my girlfriend (who also happens to have&amp;nbsp;some children) we&amp;rsquo;ve also spent some time looking for a new car with enough seats. Enough seats for us means seven seats, so&amp;nbsp;we settled on a used Peugeot 807 with a&amp;nbsp;lot of extra equipment and the biggest diesel engine (2,2l).&lt;/p&gt;&lt;p class="citation"&gt;To be able to pay for all of this we had to find a bank to get ourselves a loan. Even though it&amp;rsquo;s possible to shop around for the best interest on the internet, we still had to show up in person with a few hundred signed papers to get our money. &lt;/p&gt;&lt;p class="citation"&gt;So all of this has taken a lot of my time. I hope to be back blogging very soon, even though we&amp;rsquo;re soon starting the process of moving the kitchen in the new appartement. And not to mention that we&amp;rsquo;re planning on rebuilding the bathroom.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114382940612766505?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114382940612766505/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114382940612766505' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114382940612766505'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114382940612766505'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/03/long-time.html' title='Long time '/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114233291685611031</id><published>2006-03-14T02:41:00.000-08:00</published><updated>2006-03-14T02:41:56.903-08:00</updated><title type='text'>Using my Tablet PC to order a new bed</title><content type='html'>&lt;p&gt;We&amp;rsquo;re currently upgrading some of the bedrooms in our apartment, and one of the things we&amp;rsquo;d like to do is to get one of those beds (I&amp;rsquo;m unsure what it&amp;rsquo;s called in English) that you can stack on top of each other so that three of our kids can sleep in the same room. This isn&amp;rsquo;t the usual IKEA bed, so I decided to make call a friend of mine that works as a furniture carpenter.&lt;/p&gt;&lt;p&gt;We agreed that I should make a sketch of what I needed and send to him. I picked up my Tablet PC and drew a sketch in &lt;a href="http://www.eecs.wsu.edu/paint.net/"&gt;Paint.Net&lt;/a&gt;. The sketch looked ok, so I sent it over to my friend. No need for a scanner or snail-mail here, just my trusty &amp;ldquo;old&amp;rdquo; Tecra M4.&lt;/p&gt;&lt;p&gt;Since I&amp;rsquo;m a bit picky, I must say that drawing with the pen feels a bit sluggish (I tried both Paint.NET and Photoshop).&amp;nbsp;I don&amp;rsquo;t think that the pen is as responsive or accurate as I&amp;rsquo;d like it to be. I also think that there is a lag problem whenb using the pen. This is not the lag that people are complaining about with the mouse pointer (since I&amp;rsquo;m constantly &lt;a href="http://www.laptopvideo2go.com/"&gt;upgrading my video drivers&lt;/a&gt;), it&amp;rsquo;s more of a pen-based problem.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114233291685611031?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114233291685611031/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114233291685611031' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114233291685611031'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114233291685611031'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/03/using-my-tablet-pc-to-order-new-bed.html' title='Using my Tablet PC to order a new bed'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114088824950807268</id><published>2006-02-25T09:24:00.000-08:00</published><updated>2006-02-25T09:28:48.623-08:00</updated><title type='text'>Cleaning out some dust!</title><content type='html'>&lt;p&gt;I&amp;rsquo;ve been irritated about some dust particles that had appeared between the screen protector and the screen itself on my Toshiba Tecra M4. I remember that I&amp;rsquo;d read something about this a while ago at the &lt;a href="http://www.tabletpcbuzz.com/forum"&gt;TabletPCBuzz.com&lt;/a&gt;. The only problem was that the forum&amp;rsquo;s search functionality is broken at the moment, so I couldn&amp;rsquo;t find the pictures that showed how to remove the protector and clean up the screen. &lt;/p&gt;&lt;p&gt;Since I thought that I already had read enough about the issue to perform the removal and cleaning,&amp;nbsp;I finally decided to take the chance on doing it without any references.&lt;/p&gt;&lt;p&gt;First I removed the two black plastic things covering up two of the six screws around the screen. Then I removed the four silver squares at the bottom of the screen. The removal was done with a very small screwdriver, and can be accomplished without leaving any marks on neither the plastic nor the squares (not to say that I didn&amp;rsquo;t leave any marks&amp;hellip;).&lt;/p&gt;&lt;p&gt;Then I unscrewed the six screws and started to gently peel my fingernails in to split the screen apart. I remember that I had read something about someone managing to break the screen protector by doing this to hard, so I payed special attention to be gentle&amp;hellip;&lt;/p&gt;&lt;p&gt;After managing to separate the screen and the protector, I used a cloth primarily targeted to clean glasses to remove the dust. This worked very well, and can absolutely be recommended. I did not use any liquids or solvents in the process, and the screen looks very clear and bright, with practically no dust at all anymore!&lt;/p&gt;&lt;p&gt;&lt;a href="http://photos1.blogger.com/blogger/1136/377/1600/P2250124.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/1136/377/320/P2250124.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;Separating the protector and the screen&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;&lt;/em&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href="http://photos1.blogger.com/blogger/1136/377/1600/P2250128.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/1136/377/320/P2250128.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;Cleaning up&lt;/em&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114088824950807268?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114088824950807268/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114088824950807268' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114088824950807268'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114088824950807268'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/02/cleaning-out-some-dust.html' title='Cleaning out some dust!'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114079543664039145</id><published>2006-02-24T07:37:00.000-08:00</published><updated>2006-02-24T07:37:16.686-08:00</updated><title type='text'>We're playing tonight</title><content type='html'>Just wanted to tell everyone that &lt;a href="http://www.cochise.no/"&gt;we&amp;rsquo;re&lt;/a&gt;&amp;nbsp;playing two gigs this weekend at the &lt;a href="http://www.clubbluemonk.no/" target="_blank"&gt;Blue Monk Club&lt;/a&gt;, tonight and tomorrow night. We&amp;rsquo;ll be playing with &lt;a href="http://www11.nrk.no/urort/user/?id=14444"&gt;March Brown&lt;/a&gt;. The concert starts at around 11:30 pm, hope to see you all there!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114079543664039145?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114079543664039145/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114079543664039145' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114079543664039145'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114079543664039145'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/02/were-playing-tonight.html' title='We&apos;re playing tonight'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114079046329216704</id><published>2006-02-24T05:51:00.000-08:00</published><updated>2006-02-24T07:44:36.973-08:00</updated><title type='text'>Ink Gestures - a short review</title><content type='html'>I read a &lt;a href="http://wickedstageact2.typepad.com/life_on_the_wicked_stage_/2006/02/inkgestures_11_.html"&gt;post &lt;/a&gt;from &lt;a href="http://wickedstageact2.typepad.com/"&gt;Warner Crocker&lt;/a&gt; about a small program called &lt;a href="http://www.jumpingminds.com/InkGestures/index.htm"&gt;Ink Gestures &lt;/a&gt;from a company called &lt;a href="http://www.jumpingminds.com/"&gt;Jumping Minds&lt;/a&gt;. Since I'm curious and interested in tools and utilities that helps me work more efficiently, I downloaded the tool to try it out (it costs $39, but a trial is available). The first thing I look for in Tablet PC utilities that uses some kind of text/gesture reckognition, is the support for Norwegian language (you may have read one of my &lt;a href="http://chrfalch.blogspot.com/2006/01/day-in-life-of-norwegian-tablet-pc.html"&gt;rants &lt;/a&gt;about this earlier). To my big surprise, Ink Gestures just worked! I pressed the "Start Gesturing" menu, and went through the quick tutorial before trying a few gestures. Without any problems, I was able to navigate, select and format my documents. Since I'm not using Micosoft Word a lot, chances are that I want be buying this utility, but I hope other developers will learn from Jumping Minds and create tools for us foreign Tablet PC users that just works!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114079046329216704?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.jumpingminds.com/InkGestures/index.htm' title='Ink Gestures - a short review'/><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114079046329216704/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114079046329216704' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114079046329216704'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114079046329216704'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/02/ink-gestures-small-review.html' title='Ink Gestures - a short review'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114069561659816242</id><published>2006-02-23T03:49:00.000-08:00</published><updated>2006-02-23T03:57:16.283-08:00</updated><title type='text'>Great article about themes in Office 2007</title><content type='html'>I was reading Jensen Harris' &lt;a href="http://blogs.msdn.com/jensenh/"&gt;blog&lt;/a&gt;, and saw that he posted an article written by Howard Cooperstein about the new Theme support in Office 2007.&lt;br /&gt;&lt;br /&gt;What I found interesting was the limitations they had put on themes. Allowing only two slots for fonts in a Theme is a great solution, the same goes to the way they're handling colors etc.&lt;br /&gt;&lt;br /&gt;I'm currently working on something similar in PDF, and the need for some limitations regarding defining templates was a great input for me and my team.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114069561659816242?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://blogs.msdn.com/jensenh/archive/2006/02/22/537054.aspx' title='Great article about themes in Office 2007'/><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114069561659816242/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114069561659816242' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114069561659816242'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114069561659816242'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/02/great-article-about-themes-in-office.html' title='Great article about themes in Office 2007'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-114068052819524513</id><published>2006-02-22T23:28:00.000-08:00</published><updated>2006-02-23T03:56:51.883-08:00</updated><title type='text'>Optimizing my Tecra M4</title><content type='html'>I've been very happy with my Toshiba Tecra M4. As many other M4-owners has noted, the computer runs a bit hot, leading to some noise from the fan. Last night I decided to see if I could get rid of it, and started up a small utility I've had running on my laptop for months called Notebook Hardware Control from &lt;a href="http://www.pbus-167.com/chc.htm"&gt;http://www.pbus-167.com/chc.htm&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The program has a lot a small tweaks and utilities, and among them are a concept called undervolting. This is basically about giving the processor less voltage without telling it to slow down. This saves energy, minimizes heat and could also possibly make the cpu last longer.&lt;br /&gt;&lt;br /&gt;I turned down the voltages for the speed multipliers a lot, all the way down to the following values:&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;Multiplier     Voltage&lt;br /&gt;6              0.732&lt;br /&gt;8              0.812&lt;br /&gt;9              0.956&lt;br /&gt;10             0.988&lt;br /&gt;11             1.020&lt;br /&gt;12             1.052&lt;br /&gt;13             1.084&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;This calmed down the fan a bit, making my Tecra a bit more silent.&lt;br /&gt;&lt;br /&gt;The next thing I did was to remove some system components that I noticed was stealing a lot of resources:&lt;br /&gt;&lt;br /&gt;&lt;li&gt;Swapping Norton Internet Security with &lt;a href="http://www.grisoft.com"&gt;AVG&lt;/a&gt;&lt;br /&gt;&lt;li&gt;Installing Windows Defender (for anti-spyware)&lt;br /&gt;&lt;li&gt;Removed a few services, especially those marked as &lt;a href="http://www.ss64.com/ntsyntax/services.html"&gt;resource hogs &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Ok, I don't have the Electric Blue theme anymore, but that doesn't matter. My Tablet feels a lot more snappy now, and that's the biggest point.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-114068052819524513?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/114068052819524513/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=114068052819524513' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114068052819524513'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/114068052819524513'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/02/optimizing-my-tecra-m4.html' title='Optimizing my Tecra M4'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-113985872929190980</id><published>2006-02-13T11:17:00.000-08:00</published><updated>2006-02-13T11:33:23.106-08:00</updated><title type='text'>My New Guitar!</title><content type='html'>&lt;a href="http://photos1.blogger.com/blogger/1136/377/1600/Les%20Paul%20Studio%2086%202%5B1%5D.jpg"&gt;&lt;img style="float:left;width:180;height:240; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/1136/377/320/Les%20Paul%20Studio%2086%202%5B1%5D.jpg" border="0" alt="" /&gt;&lt;/a&gt;I just realised an old dream... Having been a Fender Stratocaster man for almost 20 years, I finally decided to convert an become a Gibson-man. I got a tip from my brother's girlfriend &lt;a href="http://www11.nrk.no/urort/user/?id=36710"&gt;Marianne&lt;/a&gt; about where to go to look for a new guitar. &lt;br /&gt;&lt;br /&gt;After borrowing a beautifull black Gibson Les Paul 1986 Standard and bringing it to our thursday night rehearsal, I was sold. The guitar played nice and sounded wonderfull. I bought it first thing in the morning the day after!&lt;br /&gt;&lt;br /&gt;I'm sorry Jimi H. &lt;br /&gt;And please stop applauding, Jimi P.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-113985872929190980?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/113985872929190980/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=113985872929190980' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113985872929190980'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113985872929190980'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/02/my-new-guitar.html' title='My New Guitar!'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-113985801804976048</id><published>2006-02-13T11:13:00.001-08:00</published><updated>2006-02-13T11:13:38.063-08:00</updated><title type='text'>More On OneNote, Tablet PC, Video, And Auditions</title><content type='html'>Warner Crocker has posted a great story about how he's using the Tablet PC when auditioning actors. Great use of his Tablet PC!&lt;br /&gt;&lt;br /&gt;Read more here:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://wickedstageact2.typepad.com/life_on_the_wicked_stage_/2006/02/more_on_onenote.html"&gt;Life On the Wicked Stage: Act 2: More On OneNote, Tablet PC, Video, And Auditions&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-113985801804976048?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://wickedstageact2.typepad.com/life_on_the_wicked_stage_/2006/02/more_on_onenote.html' title='More On OneNote, Tablet PC, Video, And Auditions'/><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/113985801804976048/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=113985801804976048' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113985801804976048'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113985801804976048'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/02/more-on-onenote-tablet-pc-video-and_13.html' title='More On OneNote, Tablet PC, Video, And Auditions'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-113985801736759493</id><published>2006-02-13T11:13:00.000-08:00</published><updated>2006-02-13T11:13:37.433-08:00</updated><title type='text'>More On OneNote, Tablet PC, Video, And Auditions</title><content type='html'>Warner Crocker has posted a great story about how he's using the Tablet PC when auditioning actors. Great use of his Tablet PC!&lt;br /&gt;&lt;br /&gt;Read more here:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://wickedstageact2.typepad.com/life_on_the_wicked_stage_/2006/02/more_on_onenote.html"&gt;Life On the Wicked Stage: Act 2: More On OneNote, Tablet PC, Video, And Auditions&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-113985801736759493?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://wickedstageact2.typepad.com/life_on_the_wicked_stage_/2006/02/more_on_onenote.html' title='More On OneNote, Tablet PC, Video, And Auditions'/><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/113985801736759493/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=113985801736759493' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113985801736759493'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113985801736759493'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/02/more-on-onenote-tablet-pc-video-and.html' title='More On OneNote, Tablet PC, Video, And Auditions'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-113865203873976395</id><published>2006-01-30T12:13:00.000-08:00</published><updated>2006-01-30T12:13:58.746-08:00</updated><title type='text'>Why the DocuPen 800 would impact my digital lifestyle</title><content type='html'>&lt;p&gt;Rob Rushway is asking us &amp;ldquo;&lt;strong&gt;&lt;em&gt;How would a pen based scanner like the RC800 impact your digital lifestyle?&amp;rdquo;:&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://robbushway.blogspot.com/2006/01/win-your-own-docupen-rc800.html#links"&gt;CutMeLoose.com: Win your own DocuPen RC800&lt;/a&gt; &lt;/p&gt;&lt;p&gt;I couldn&amp;rsquo;t resist writing an answer, since this really is a tool that could help me. Here is why:&lt;/p&gt;&lt;p&gt;&amp;ldquo;I'm a single father (yes, we do exist) having the responsibility for my three childrens well-being every second week. I've got twin girls in fourth grade, and a five-year old boy in kindergarten. &lt;br /&gt;&lt;br /&gt;Having a full-time job as a software developer makes it really important for me to quickly be able to catch up with messages from the school and kindergarten. Each day I need to keep track of four different people's needs and schedules, and this can often be a problem when plans are changing or when they recieve papers from school with important messages I need to take into account when sorting out ours plans.&lt;br /&gt;&lt;br /&gt;My twin girls have different activities almost everyday, including football, band rehearsals, violin rehearsal, chess and dance lessons. This means that I need to keep track of what they are going to do each day and what type of clothes/equipment they need to cary out their activites.&lt;br /&gt;&lt;br /&gt;A lot of the information is given me through small notes that they drop on the kitchen table or that I find at the bottom of their bags. It would have been a tremendeous help for me to be able to scan these and add them to my outlook schedule or save them in OneNote.&amp;rdquo;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-113865203873976395?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/113865203873976395/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=113865203873976395' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113865203873976395'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113865203873976395'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/01/why-docupen-800-would-impact-my.html' title='Why the DocuPen 800 would impact my digital lifestyle'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-113865175416952684</id><published>2006-01-30T12:09:00.000-08:00</published><updated>2006-01-30T12:09:14.240-08:00</updated><title type='text'>MyScript Notes. A small test</title><content type='html'>&lt;p&gt;Having&amp;nbsp;&lt;a href="http://robbushway.blogspot.com/2006/01/myscript-notes.html#links"&gt;read&lt;/a&gt; that &lt;a href="http://www.visionobjects.com/products/application-software/myscript-notes/"&gt;MyScript Notes&lt;/a&gt; was supposed to support inking in Swedish, I decided to give it a try. After downloading the international version (96 megs!) I installed the product on my Toshiba Tecra M4. The product loads fast and looks as good as we&amp;rsquo;ve become used to for software products.&lt;/p&gt;&lt;p&gt;&amp;nbsp;Next up was testing the international ink support. Since &lt;a href="http://maps.google.com/maps?f=q&amp;amp;hl=en&amp;amp;q=norway&amp;amp;ll=62.206512,13.491211&amp;amp;spn=13.079275,44.736328"&gt;Sweden is very close to Norway&lt;/a&gt;&amp;nbsp;and our languages are very similar, I expected it to be easy to use it for Norwegian text recognition. But no. &lt;/p&gt;&lt;p&gt;First of all, the program had a very &amp;ldquo;manual&amp;rdquo; way of performing it&amp;rsquo;s text recognition. After writing in ink, you have to press a menu or a shortcut to start the recognition process. The recognition itself was hillarious, translating my ink to a very funny swedish sentence (hard to reproduce here, especially for english readers).&amp;nbsp;&lt;/p&gt;&lt;p&gt;Using&amp;nbsp;the program to make a foreign-language Tablet PC user&amp;rsquo;s life easier is not recommended. Adding Norwegian words to the built-in english dictionary in the OS itself works much better. &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-113865175416952684?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/113865175416952684/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=113865175416952684' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113865175416952684'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113865175416952684'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/01/myscript-notes-small-test.html' title='MyScript Notes. A small test'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-113864985654776575</id><published>2006-01-30T11:37:00.000-08:00</published><updated>2006-01-30T11:37:36.553-08:00</updated><title type='text'>jkOnTheRun: What would you change on your Tablet PC?</title><content type='html'>Here are my 50 cents on this one: &lt;blockquote cite="http://jkontherun.blogs.com/jkontherun/2006/01/what_would_you_.html"&gt;&lt;/blockquote&gt;&lt;p class="citation"&gt;&lt;cite cite="http://jkontherun.blogs.com/jkontherun/2006/01/what_would_you_.html"&gt;&lt;a href="http://jkontherun.blogs.com/jkontherun/2006/01/what_would_you_.html"&gt;jkOnTheRun: What would you change on your Tablet PC?&lt;/a&gt;&lt;/cite&gt;&lt;/p&gt;&lt;p class="citation"&gt;&lt;cite cite="http://jkontherun.blogs.com/jkontherun/2006/01/what_would_you_.html"&gt;&lt;/cite&gt;&lt;/p&gt;&lt;p&gt;You've probably guessed what I&amp;rsquo;d like to change, especially if you&amp;rsquo;ve read my earlier posts &lt;a href="http://chrfalch.blogspot.com/2006/01/issue-with-tablet-pcs.html"&gt;here&lt;/a&gt; and &lt;a href="http://chrfalch.blogspot.com/2006/01/day-in-life-of-norwegian-tablet-pc.html"&gt;here&lt;/a&gt;. Here&amp;rsquo;s what I&amp;rsquo;d like to see changed:&lt;/p&gt;&lt;p&gt;I like my Tablet PC to let me write text and have the computer recognize it in my native language. I&amp;rsquo;ve installed a lot of Norwegian words in my english dictionary (which helps a lot), but the lack of support for Norwegian characters in the TIP makes&amp;nbsp;this a bit cumbersome (in addition to the fact that every time I&amp;rsquo;m using the TIP I have to change the input language to english.) &lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-113864985654776575?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/113864985654776575/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=113864985654776575' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113864985654776575'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113864985654776575'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/01/jkontherun-what-would-you-change-on.html' title='jkOnTheRun: What would you change on your Tablet PC?'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-113838562572453305</id><published>2006-01-27T10:06:00.000-08:00</published><updated>2006-01-27T10:13:45.736-08:00</updated><title type='text'>Updates on using my Tablet PC when rehearsing</title><content type='html'>As someone might have noticed, I've been using my Tablet PC when rehearsing with my &lt;a href="http://www.cochise.no"&gt;band&lt;/a&gt;. I did, however, complain about some strange digital-sounding noise coming through my amplifier when the computer was connected with my &lt;a href="http://line6.com/podxtlive/"&gt;effects rig &lt;/a&gt;throgh USB.&lt;br /&gt;&lt;br /&gt;I spent some time searching for a solution, and found someone that suggested that I should unplug the power from my computer.&lt;br /&gt;&lt;br /&gt;Yesterday I tried this, and yes, it worked!! No hiss, no noise, no nothing! And I was able to program a new patch for the new song we were working when the other band members where having a break.&lt;br /&gt;&lt;br /&gt;To make life a bit more easy, I also created a new power-scheme in the Toshiba Power Management applet with the lowest brightness and CPU settings but without the "turn-off-the-computer-after-15-minutes" setting. This way I was able to keep the computer on during the rehearsal without having to tap the screen every 5 minutes to keep it on!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-113838562572453305?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/113838562572453305/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=113838562572453305' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113838562572453305'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113838562572453305'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/01/updates-on-using-my-tablet-pc-when.html' title='Updates on using my Tablet PC when rehearsing'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-113838356151242334</id><published>2006-01-27T09:33:00.000-08:00</published><updated>2006-01-27T10:28:38.363-08:00</updated><title type='text'>A day in the life of a Norwegian Tablet PC user</title><content type='html'>OK, I know that I've blogged about this &lt;a href="http://chrfalch.blogspot.com/2006/01/issue-with-tablet-pcs.html"&gt;before&lt;/a&gt;, but I'd like to do it again anyway.&lt;br /&gt;&lt;br /&gt;Instead of complaining and ranting about missing pieces in my Tablet PC, I've decided to write about how I use my Tablet PC and how the missing Norwegian text recognition impacts my day-to-day life.&lt;br /&gt;&lt;br /&gt;(Disclaimer: Since I've been overwhelmingly positive about my Tablet PC earlier, I'd like to point out that this is not a complaint about what I miss, but rather a description of an issue that I think needs to be fixed so that other foreigners could take advantage of the Tablet PC!)&lt;br /&gt;&lt;br /&gt;Each morning when I get to work, I carry with me my Toshiba Tecra M4. I put it up on my desk, turn it on and read my email just as an ordinary laptop-user. I check my &lt;a href="http://www.bloglines.com/public/chrfalch"&gt;blogroll &lt;/a&gt;on bloglines (remember that I &lt;a href="http://chrfalch.blogspot.com/2006/01/bloglines-vs-newsgator.html"&gt;tried&lt;/a&gt; &lt;a href="http://www.newsgator.co.uk"&gt;NewsGator&lt;/a&gt; but returned to &lt;a href="http://www.bloglines.com"&gt;Bloglines&lt;/a&gt;?).&lt;br /&gt;&lt;br /&gt;Since I work as a software developer, there are always a few meetings that I have to attend to. Design meetings, meetings where we discuss new ideas, meetings where we lay out the tasks to be done for the upcomming week etc. Meetings are one area where I use the Tablet PC functionality.&lt;br /&gt;&lt;br /&gt;I unplug my computer and rotate my screen while I walk into the meeting room. Seeing that I've got around 2 hours and 45 minutes left of my battery makes me relaxed and calm (my old Dell used to have around ten minutes of battery time..) Firmly seated I fire up &lt;a href="http://office.microsoft.com/en-us/FX010858031033.aspx"&gt;OneNote&lt;/a&gt; and open a new page. While the others sit down around the table, I spend a minute checking that the new page has been created with a stationary that has been configured to use English as the default language. Whenever I create a new category, I need to remember to change the default stationary in the new category so that it's in english. Because there are no text recognizers for the Norwegian language. Then I start to take notes in English. Good thing that I work in an international business..&lt;br /&gt;&lt;br /&gt;After the meetings are done, new code has been checked in and I've spend some time discussing different issues with my colleagues, I pick up my Toshiba and go home.&lt;br /&gt;&lt;br /&gt;After eating dinner I try to catch up with my blogroll. This is usually done lying on the sofa with the computer in Tablet PC modus. I double-click on Internet Explorer and point the pen to the address field. After I've clicked on the TIP icon so that the TIP is showing, I can change the language from Norwegian to English to be able to enter text (When using a Tablet PC configured with an input language with no text recognition, you have to change the language and wait for the UI to update. No instant click-and-type). Then I write down the address to Bloglines and press enter. From here on I have no more issues, since it's all about clicking some links and using the scrollbar.&lt;br /&gt;&lt;br /&gt;As you might see, I don't spend a lot of time having problems missing the Norwegian text recognition. But from my experiences it's the small things that makes the difference, and for new users to the Tablet PC, the workarounds that I've found might not be as accessible as they were for me (I mean - I'm a professional software developer, I should write my own recognizer!). So please Microsoft and Microsoft Vista developers; put some concern into the issue of foreign Tablet PC users... They might need it!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-113838356151242334?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/113838356151242334/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=113838356151242334' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113838356151242334'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113838356151242334'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/01/day-in-life-of-norwegian-tablet-pc.html' title='A day in the life of a Norwegian Tablet PC user'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-113800445389397141</id><published>2006-01-23T00:20:00.000-08:00</published><updated>2006-01-23T00:20:53.913-08:00</updated><title type='text'>Band Rehearsal and OneNote </title><content type='html'>&lt;p&gt;As you might know, I play in a &lt;a href="http://www.cochise.no/"&gt;band&lt;/a&gt;. Since I&amp;rsquo;m running on a tight schedule (who isn&amp;rsquo;t?), I don&amp;rsquo;t have too much time to rehearse. This means that when&amp;nbsp;I rehearse with the band, I need to be able to quickly remember a lot of songs and text to both play and sing backup-vocal. On yesterday&amp;rsquo;s rehearsal, I decided to try to use &lt;a href="http://office.microsoft.com/en-us/FX010858031033.aspx"&gt;OneNote&lt;/a&gt; to help me jot down chords and text. &lt;/p&gt;&lt;p&gt;This was an instant success! In addition to writing down chords, I was also able to record small parts that I play (and tend to forget between rehearsals). Using the built-in sound recording tool in OneNote really impressed the other members in the band. They kept on coming over to have a look at my Tablet and what I was doing.&lt;/p&gt;&lt;p&gt;To top it all up, I connected the Tablet PC via USB to my guitar effects processor, the &lt;a href="http://line6.com/podxtlive/"&gt;Line 6 POD XT Live&lt;/a&gt;. Using their editor, I could program the effects needed in the new songs we were rehearsing directly on the screen. This made the&amp;nbsp;task of setting up new patches, copying the base sounds that I could start to tweak etc. very easy. The only problem was that connecting the USB created a lot of interference sounds in my amplifier. I had to disconnect the USB cable when not editing, something that made this part of the success a bit tiresome. I&amp;rsquo;ll take a look at this problem soon and see what I can do.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-113800445389397141?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/113800445389397141/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=113800445389397141' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113800445389397141'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113800445389397141'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/01/band-rehearsal-and-onenote.html' title='Band Rehearsal and OneNote '/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-113770525248563223</id><published>2006-01-19T13:14:00.000-08:00</published><updated>2006-01-19T23:50:36.526-08:00</updated><title type='text'>Fingerprintreader Giveaway</title><content type='html'>&lt;p&gt;Rob Rushway is asking his readers what they struggle with most as mobile professionals: &lt;a href="http://robbushway.blogspot.com/2006/01/billionton-fingerprint-reader-giveaway.html"&gt;CutMeLoose.com: Billionton Fingerprint Reader giveaway - What do you struggle with most as a mobile professional?&lt;/a&gt; &lt;/p&gt;&lt;p&gt;First of all, I have to admit that I don't do a lot of travelling at the moment, so calling myself a mobile professional is an overstatement. And it also means that batteries wont be a big issue for me. (Even though my Tecra M4's batteries only lasts for approx. 2.5 hours) &lt;/p&gt;&lt;p&gt;The reason for writing is not that I want the fingerprint reader, it's because I've always had a strong interest for mobility, and have always used PDAs, laptops, smartphones etc. in my daily work. To be honest, I don't struggle too much at the moment. I carry my computer with me all the time, using almost standard software like Office, OneNote, Visual Studio etc. I'm satisfied doing all my .Net/Flash/Web development on my Tablet PC. &lt;/p&gt;&lt;p&gt;The Tablet PC is in fact the first computer I've had that doesn't irritate or frustrate me in any way. It's small enough, fast enough, bright enough - to make my mobile experience good enough!&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-113770525248563223?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/113770525248563223/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=113770525248563223' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113770525248563223'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113770525248563223'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/01/fingerprintreader-giveaway.html' title='Fingerprintreader Giveaway'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-113753082235194691</id><published>2006-01-17T12:47:00.000-08:00</published><updated>2006-01-17T12:47:02.356-08:00</updated><title type='text'>I've made a bet</title><content type='html'>&lt;p&gt;A couple of months ago I made a bet. The bet is about mobile phones, iPods and music. I&amp;rsquo;m betting that people will start listening to music on their mobile phones instead of their iPods. The only problem is that I said that this will happen during 2006. Actually, within October 2006. So to speed things up a bit, I thought that I could blog about it and try to find others that are blogging about similar issues.&lt;/p&gt;&lt;p&gt;The first one that caught my eye was this one from &lt;a href="http://www.eirikso.com/"&gt;eirikso.com&lt;/a&gt;:&lt;/p&gt;&lt;p class="citation"&gt;&lt;cite cite="http://www.eirikso.com/2006/01/17/the-apple-mobile-phone/"&gt;&lt;a href="http://www.eirikso.com/2006/01/17/the-apple-mobile-phone/"&gt;www.eirikso.com &amp;raquo; Blog Archive &amp;raquo; The Apple Mobile Phone&lt;/a&gt;&lt;/cite&gt;.&lt;/p&gt;&lt;p class="citation"&gt;Esentially, what he says is that he&amp;rsquo;s going to quit using his iPod and his digital camera when these technologies are implemented in a good-enough (as opposed to not-good-enough today) way.&lt;/p&gt;&lt;p class="citation"&gt;I think I&amp;rsquo;ve &lt;a href="http://chrfalch.blogspot.com/2006/01/new-year-has-begun.html"&gt;blogged about it&lt;/a&gt; before?&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-113753082235194691?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/113753082235194691/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=113753082235194691' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113753082235194691'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113753082235194691'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/01/ive-made-bet.html' title='I&apos;ve made a bet'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-113736123259580455</id><published>2006-01-15T13:40:00.000-08:00</published><updated>2006-01-15T13:43:07.720-08:00</updated><title type='text'>Scobleizer &gt;&gt; View any site on a cell phone</title><content type='html'>&lt;blockquote cite="http://scobleizer.wordpress.com/2006/01/14/view-any-site-on-a-cell-phone/"&gt;&lt;/blockquote&gt;&lt;p class="citation"&gt;&lt;cite cite="http://scobleizer.wordpress.com/2006/01/14/view-any-site-on-a-cell-phone/"&gt;I just read Robert&amp;rsquo;s posting on the MSN Mobile Search:&lt;/cite&gt;&lt;/p&gt;&lt;p class="citation"&gt;&lt;cite cite="http://scobleizer.wordpress.com/2006/01/14/view-any-site-on-a-cell-phone/"&gt;&lt;a href="http://scobleizer.wordpress.com/2006/01/14/view-any-site-on-a-cell-phone/trackback"&gt;Scobleizer - Microsoft Geek Blogger &amp;raquo; View any site on a cell phone&lt;/a&gt;&lt;/cite&gt;.&lt;/p&gt;&lt;p class="citation"&gt;Haven&amp;rsquo;t this been available as a service from &lt;a href="http://mobile.google.com/"&gt;Google&lt;/a&gt; for a very long time? When browsing the Web with my Qtek 8080, I always used the Google site. I usually start of by searching, but I see others have been &lt;a href="http://akhater.wordpress.com/2006/01/15/go-mobile-web-page-converters-ive-voted-google/trackback"&gt;blogging about it&lt;/a&gt;, posting links to the &lt;a href="http://www.google.com/gwt/n"&gt;Google Mobile Gateway&lt;/a&gt; as well.&amp;nbsp;&lt;/p&gt;&lt;p class="citation"&gt;Anything special with the MSN service? I always loved how Google Mobile let you remove pictures. Couldn&amp;rsquo;t see any simliar functionality in the MSN service?&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-113736123259580455?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/113736123259580455/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=113736123259580455' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113736123259580455'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113736123259580455'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/01/scobleizer-view-any-site-on-cell-phone.html' title='Scobleizer &gt;&gt; View any site on a cell phone'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-113735159367353905</id><published>2006-01-15T10:59:00.000-08:00</published><updated>2006-01-15T10:59:54.833-08:00</updated><title type='text'>An issue with Tablet PCs</title><content type='html'>&lt;p&gt;There&amp;rsquo;s a lot of blogging about Tablet PCs now with special focus on what&amp;rsquo;s happening at the &lt;a href="http://www.cesweb.org/default_flash.asp"&gt;CES&lt;/a&gt;. Toshiba&amp;nbsp;hit hard with its &lt;a href="http://www.whatisnew.com/blogs/dailynews/archive/2006/01/08/6356.aspx"&gt;Dual Core Tecra M400&lt;/a&gt; and a prototype of a Tablet PC with a detachable display. Tablet PC users gathered together and held a user meeting which was very interesting for those getting the chance to attend. (Read more and see some pictures) over at &lt;a href="http://jkontherun.blogs.com/jkontherun/2006/01/tablet_pc_users.html"&gt;JkOnTheRun&lt;/a&gt;. &lt;/p&gt;&lt;p&gt;Lets face it. Tablet PCs are here to stay.&amp;nbsp;The technology is working great, just look at&amp;nbsp;the built-in text recognition and&amp;nbsp;the new batteries&amp;nbsp;that are coming that will last for a long time.&amp;nbsp;Tablet PC integration&amp;nbsp;in software is almost there&amp;nbsp;and there are lots of small utilities you can use to fix stuff that isn&amp;rsquo;t as streamlined as you&amp;rsquo;d like it to be (read Paul Thurrot&amp;rsquo;s &lt;a href="http://www.winsupersite.com/reviews/google_pack.asp"&gt;review&lt;/a&gt; about the new Google Pack to get a hint of what we&amp;rsquo;d come accustomed to expect from our software)&lt;/p&gt;&lt;p&gt;What I miss the most, is localized text recognition. This is of course not an issue for people living in the UK/US, but for me it is. And I think its important for Tablet PC users in other small countries as well. So please, Tablet PC team, include some kind of support for recognizing text in other languages than English, German, Italian etc. &lt;/p&gt;&lt;p&gt;When I show off my Tablet PC to Norwegians, they get really impressed with the possibilities of recognized text and the obvious advantages of the pen interface in certain situations. It&amp;rsquo;s always tough to have to tell them that the only small disadvantage of the system is that it doesn&amp;rsquo;t recognize Norwegian handwriting&amp;hellip;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-113735159367353905?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/113735159367353905/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=113735159367353905' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113735159367353905'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113735159367353905'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/01/issue-with-tablet-pcs.html' title='An issue with Tablet PCs'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-113649255055641730</id><published>2006-01-05T12:22:00.000-08:00</published><updated>2006-01-05T12:22:30.570-08:00</updated><title type='text'>Toshiba Tecra M400!</title><content type='html'>&lt;p class="citation"&gt;There are some information about a new Toshiba Tecra M400 comming out next month. 5+ hours of battery time sounds like heaven to me: &lt;cite cite="http://tabletpcbuzz.com/forum/topic.asp?TOPIC_ID=31751"&gt;Dr.Jerry&amp;nbsp;in the &lt;a href="http://tabletpcbuzz.com/forum/topic.asp?TOPIC_ID=31751"&gt;Tablet PC Buzz.com - Forum&lt;/a&gt;&lt;/cite&gt;.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-113649255055641730?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/113649255055641730/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=113649255055641730' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113649255055641730'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113649255055641730'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/01/toshiba-tecra-m400.html' title='Toshiba Tecra M400!'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-113649140699234411</id><published>2006-01-05T12:03:00.000-08:00</published><updated>2006-01-05T12:03:27.036-08:00</updated><title type='text'>More Predictions for 2006</title><content type='html'>&lt;p&gt;&lt;a href="http://dondodge.typepad.com/"&gt;Don Dogde&lt;/a&gt; is writing about &lt;a href="http://dondodge.typepad.com/the_next_big_thing/2006/01/the_next_big_th.html"&gt;the next big thing in 2006&lt;/a&gt;. Allthough his not writing directly about the convergence of devices like I did, he&amp;rsquo;s suggesting that mobile search is going to be big. He is also writing about VoIP, which I think will be a big hit when the inclusion of WiFi in cell phones goes mainstream. &lt;/p&gt;&lt;p&gt;I&amp;rsquo;m really looking forward to the new line of phones comming out this spring with WiFi, 3G, GPS, FM-Radio etc. etc. It&amp;rsquo;s going to be fun to get my hands on one.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-113649140699234411?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/113649140699234411/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=113649140699234411' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113649140699234411'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113649140699234411'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/01/more-predictions-for-2006.html' title='More Predictions for 2006'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-113647305025813692</id><published>2006-01-05T06:57:00.000-08:00</published><updated>2006-01-05T06:57:30.320-08:00</updated><title type='text'>Bloglines vs. Newsgator</title><content type='html'>&lt;p&gt;After one week using Newsgator I have finally decided to switch back to Bloglines. The main reasons are:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Speed &amp;ndash; Newsgator isn&amp;rsquo;t using frames, so loading each page also reloads the structure of my feeds. Bloglines uses framesets and doesn&amp;rsquo;t need a whole lot of refreshing to work.&lt;/li&gt;&lt;li&gt;Missing functionality &amp;ndash; Newsgator&amp;rsquo;s clippings doesn&amp;rsquo;t work in the UK version (where I&amp;rsquo;m registered), and although I found a posting about this in one of the forums, nothing has been done to fix the problem. Clipping IS working in Bloglines.&lt;/li&gt;&lt;li&gt;Text size &amp;ndash; Newsgator has a default text size that is unchangable. This makes reading my blogs tiring for my eyes. Bloglines lets me use my browser to change the text size.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-113647305025813692?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/113647305025813692/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=113647305025813692' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113647305025813692'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113647305025813692'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/01/bloglines-vs-newsgator.html' title='Bloglines vs. Newsgator'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-113644821813777936</id><published>2006-01-05T00:03:00.000-08:00</published><updated>2006-01-05T06:58:26.910-08:00</updated><title type='text'>Mobility, Mobility and Mobility</title><content type='html'>&lt;p&gt;The CES has just started. New technology has been launched and important keynotes has been held. This is a picture from The Engadget showing Bill Gates in front of something he thinks is important this year:&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://www.engadget.com/media/2006/1/gates13.jpg" border="0" /&gt;&lt;/p&gt;&lt;p&gt;I agree with him. But you probably knew that already.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-113644821813777936?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/113644821813777936/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=113644821813777936' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113644821813777936'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113644821813777936'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/01/mobility-mobility-and-mobility.html' title='Mobility, Mobility and Mobility'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-113614675580529211</id><published>2006-01-01T12:19:00.000-08:00</published><updated>2006-01-01T12:19:17.246-08:00</updated><title type='text'>Predictions for 2006</title><content type='html'>&lt;p&gt;Ok, after I blogged about my predictions for 2006, everybody else started doing the same. This is what &lt;cite cite="http://engadget.com/2006/01/01/predictions-for-2006/"&gt;&lt;a href="http://engadget.com/2006/01/01/predictions-for-2006/"&gt;Engadget&lt;/a&gt;&lt;/cite&gt;&amp;nbsp;thinks:&lt;/p&gt;&lt;p class="citation"&gt;&lt;cite cite="http://engadget.com/2006/01/01/predictions-for-2006/"&gt;We'll spare you our best guesses as to what the future holds for the world of consumer electronics, though we do have some burning questions: will HD DVD or Blu-ray win the war? Which next-gen console will come out on top?&lt;/cite&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-113614675580529211?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/113614675580529211/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=113614675580529211' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113614675580529211'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113614675580529211'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/01/predictions-for-2006.html' title='Predictions for 2006'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-113613090481868894</id><published>2006-01-01T07:55:00.000-08:00</published><updated>2006-01-01T09:00:52.750-08:00</updated><title type='text'>2006 - The Year of Mobility</title><content type='html'>&lt;p&gt;A new year has begun, and it'll hopefully bring us lots of new experiences and happy moments. My predictions for the new year is that it will become the year of mobility and convergence.&lt;/p&gt;&lt;p&gt;Take a look at how people are using their cell phones now compared to only a couple of years ago. Taking pictures, sending MMS messages, adding entries to calendars, updaring todo-lists and listening to music are all activities that are becomming more and more common as these functions get more and more accessible. &lt;/p&gt;&lt;p&gt;Lets start with digital pictures. A cheap digital camera like the &lt;a href="http://www.amazon.com/gp/product/B0007RALH8/qid=1136132072/sr=8-1/ref=pd_bbs_1/103-4424615-8206214?n=507846&amp;amp;s=photo&amp;amp;v=glance"&gt;Kodak Easyshare C300&lt;/a&gt;&amp;nbsp;costs $99 and gives you a quality of 3.2 MP which should be sufficient to make acceptable prints. Paying $99 for a cell phone gives you a phone with a 1.5 MP camera (which will probably increase to around 3 MP during 2006), full PDA functionality (PIM), and an mp3&amp;ndash;player. &lt;/p&gt;&lt;p&gt;Listening to music is easy, buying a cell phone with a big memory card is becoming more and more usual, and buying extended memory is&amp;nbsp;cheap (I just bought a new&amp;nbsp;MMC mobile card with 1 GB for&amp;nbsp;around $80), giving you enough space to carry with you a subset of your music collection. Uploading mp3 files to your phone is also becoming more and more easy using Bluetooth or a USB cable.&lt;/p&gt;&lt;p&gt;So why will we stop using our iPods or digital cameras? They still provide superior quality over a cell phone, and is a specialized device created to solve a single and specific task. &lt;/p&gt;&lt;p&gt;First and foremost I think&amp;nbsp;its a single-device issue. We don&amp;rsquo;t want to carry with us (nor remember to bring with us) three different devices. Next, when quality reaches an acceptable level (which is just around the corner for digital pictures on cell phones, and today for lsitening to music), early adopters will see the benefits of only having to carry with them one device. &lt;/p&gt;&lt;p&gt;A gadget like the cell phone is also a very strong bearer of identity, and buying a new&amp;nbsp;phone once a&amp;nbsp;year&amp;nbsp;is&amp;nbsp;not uncommon. So when you&amp;rsquo;re in the market for a new phone you will also look for models that signals something about you as a person. Being a music lover will probably make you buy a new model that is capable of playing your music. Just as owning an iPod was signaling&amp;nbsp;both passion for music and giving you a credibility, I think owning a new hybrid phone capable of replacing your ipod and even take accetable pictures will probably become very interesting.&lt;/p&gt;&lt;p&gt;I&amp;rsquo;d like to point out that &lt;a href="http://www.sonyericsson.com/k750/"&gt;2 MP digital cameras&lt;/a&gt; on cell phones are available today. The term &lt;a href="http://www.sonyericsson.com/walkmanphone/"&gt;Walkmanphone&lt;/a&gt; is already used extensivly by cell phone manufacterers when advertising new models. New innovations in world of mobile memory coupled with cheap mp3&amp;ndash;player-embedded chips&amp;nbsp;will drive the development of new models that will be capable of replacing our existing devices. &lt;/p&gt;&lt;p&gt;To sumarize: for how long do we think that owning an iPod or Nano will be cool&amp;hellip;? I know that some of you will disagree to this, but these are my predictions for the new year.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-113613090481868894?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/113613090481868894/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=113613090481868894' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113613090481868894'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113613090481868894'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2006/01/new-year-has-begun.html' title='2006 - The Year of Mobility'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-113605594674563406</id><published>2005-12-31T10:59:00.000-08:00</published><updated>2005-12-31T11:05:46.756-08:00</updated><title type='text'>Happy New Year!</title><content type='html'>We're preparing a nice dinner, watching some cartoons on the tv and enjoying the sounds coming from our children playing.&lt;br /&gt;&lt;br /&gt;Just wanted to take the opportunity to wish everyone a happy new year. Hope that 2006 will bring good times and happy moments for you all!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-113605594674563406?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/113605594674563406/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=113605594674563406' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113605594674563406'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113605594674563406'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2005/12/happy-new-year.html' title='Happy New Year!'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6714064.post-113594592342903906</id><published>2005-12-30T04:18:00.000-08:00</published><updated>2005-12-30T08:11:44.820-08:00</updated><title type='text'>Windows Presentation Layer</title><content type='html'>Just read an &lt;a href="http://msdn.microsoft.com/msdnmag/issues/06/01/WindowsWorkflowFoundation/default.aspx"&gt;excellent article&lt;/a&gt; about the new Windows Presentation Layer in MSDN Magazine(read an introduction &lt;a href="http://msdn.microsoft.com/windowsvista/default.aspx?pull=/library/en-us/dnlong/html/introdecctp.asp"&gt;here&lt;/a&gt;) which was very interesting. I've seen some demonstrations of the tecnology earlier on, and read some blog postings about it without really becoming a believer. I even saw a &lt;a href="http://channel9.msdn.com/ShowPost.aspx?PostID=116394"&gt;demonstration of Sparkle&lt;/a&gt; on channel9 which impressed me a lot, especially in the UI departement.&lt;br /&gt;&lt;br /&gt;The thing that got me started downloading the SDKs and development tools was the way you can focus on what the application should do and not how it should do it. While reading the article I could see that a lot of the problems and challenges I've met as a Windows developer in the past 15 years would easily be solved using WPF and the declarative model its using.&lt;br /&gt;&lt;br /&gt;The ability to bind controls to objects, declare templates and styles coupled with the dynamic scaling of the user interfaces should be able to solve almost any problem I've been exposed to UI wise.&lt;br /&gt;&lt;br /&gt;The only challenge left is to create a near-perfect model of the domain we're solving problems for :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6714064-113594592342903906?l=chrfalch.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://chrfalch.blogspot.com/feeds/113594592342903906/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=6714064&amp;postID=113594592342903906' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113594592342903906'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6714064/posts/default/113594592342903906'/><link rel='alternate' type='text/html' href='http://chrfalch.blogspot.com/2005/12/windows-presentation-layer.html' title='Windows Presentation Layer'/><author><name>Christian F.</name><uri>http://www.blogger.com/profile/02353730979008422628</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://3.bp.blogspot.com/-ZeGtLe1ROKY/TYG0YHmLdpI/AAAAAAAAAQ0/NcfTMoBdsDk/s220/IMG_6963.jpg'/></author><thr:total>0</thr:total></entry></feed>
