<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Inside and Outside stuff</title>
	<atom:link href="http://gsander.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://gsander.wordpress.com</link>
	<description>Indoor and Outdoor things passing through my life</description>
	<lastBuildDate>Tue, 10 Jan 2012 08:14:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='gsander.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Inside and Outside stuff</title>
		<link>http://gsander.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://gsander.wordpress.com/osd.xml" title="Inside and Outside stuff" />
	<atom:link rel='hub' href='http://gsander.wordpress.com/?pushpress=hub'/>
		<item>
		<title>How to monitor broadband uptime</title>
		<link>http://gsander.wordpress.com/2012/01/10/how-to-monitor-broadband-uptime/</link>
		<comments>http://gsander.wordpress.com/2012/01/10/how-to-monitor-broadband-uptime/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 07:30:09 +0000</pubDate>
		<dc:creator>gsander</dc:creator>
				<category><![CDATA[Sysadmin]]></category>

		<guid isPermaLink="false">http://gsander.wordpress.com/?p=88</guid>
		<description><![CDATA[After moving to a house a few years back we ended up in a situation where ADSL was the only option (aside of mobile broadband, which is not really a realistic option if you plan to do a fair amount of computer work from home) available to us. However, the nearest phone station turned out [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gsander.wordpress.com&amp;blog=903291&amp;post=88&amp;subd=gsander&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After moving to a house a few years back we ended up in a situation where ADSL was the only option (aside of mobile broadband, which is not really a realistic option if you plan to do a fair amount of computer work from home) available to us. However, the nearest phone station turned out to be close to 4 kilometers away, which according to the broadband provider is a lot, maybe even approaching the distance where ADSL is usable.</p>
<p>Except that they failed to mention this when we informed them about the move from hyper-connected downtown to the suburb we now live in&#8230;</p>
<p>After well over a year of poor broadband speeds I got them (the ISP in question is Glocalnet, subsidiary of Telenor, btw) to acknowledge the problem, and even give us a refund for the months we&#8217;ve been paying for a 24 Mbit service, even though actual speed never gets above 5 Mbit.</p>
<p>Fast forwarding a couple of years, we&#8217;ve been paying less per month than before, but the quality of the ADSL connection is still poor, with the connection yoyo-ing several times per day. A couple of weeks back I finally had it and told them to fix the problem or stop charging us for a service they can&#8217;t deliver. A few days later an SMS arrived stating &#8220;your technical problem has been resolved&#8221; .</p>
<p>So, to the point of this blog post. How can I monitor they have actually fixed the problem and now provide a stable broadband service to us?</p>
<p>I ended up using a two-tiered approach:</p>
<p><strong>1. External monitoring service</strong><br />
Using a free, third party server monitoring service to ensure there is connectivity from Internet to my home network. As the broadband outages we had experienced were typically quite short (on the order of a few minutes each), I needed a service that would ping a suitable computer in my home network at frequent intervals. Turns out there are many good free monitoring services (moni.tor.us etc), but they all (?) offer 20 or 30 minutes as shortest ping interval.</p>
<p>I finally found <a href="http://www.pingdom.com">Pingdom</a>, which offer you a free account from which you can monitor ONE server, with a shortest ping interval of 1 minute. Perfect. Their web site is slick and no-nonsense, they even have a very efficient and easy-to-use iPhone app. Great.</p>
<p>Only caveat is that you need an always-on computer at home, in order for Pingdom to have something to check connectivity to. Assuming that&#8217;s in place, you get stats like the following:</p>
<div><a href="http://gsander.files.wordpress.com/2012/01/uptime-report-1.jpg"><img class="alignnone size-medium wp-image-89" title="Pingdome uptime report" src="http://gsander.files.wordpress.com/2012/01/uptime-report-1.jpg?w=300&#038;h=295" alt="" width="300" height="295" /></a></div>
<p><strong>2. Ping from internal network to Internet</strong><br />
In order to minimize the number of false positives I decided to also check connectivity from the home network to a suitable site on the Internet. Once again, this assumes there is an always-turned-on computer in your home network. I use a Linux virtual machine that is always running anyway, looking after various other stuff.</p>
<p>A small script pings www.google.com once every minute and outputs the result into a text file. If Pingdom indicate a broadband connectivity outage, I can then go into the text file to verify that this was really the case (ruling out problems with Pingdom&#8217;s servers/service). The script looks like the following, paths might need some editing in other environments.</p>
<blockquote><p>echo &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &gt;&gt; /home/goran/pinglog_google.txt<br />
date &gt;&gt; /home/goran/pinglog_google.txt<br />
ping -D -c 2 www.google.com &gt;&gt; /home/goran/pinglog_google.txt</p></blockquote>
<p>Add to this a crontab (run crontab -e) entry for running the above once every minute:</p>
<blockquote><p># ping Google once every minute to make sure broadband connection is up<br />
*/1 * * * * /home/goran/ping_google.sh</p></blockquote>
<p>&#8230;and that&#8217;s about it. Keeping fingers crossed I won&#8217;t have to use this data against the ISP &#8211; nonetheless good to have it, just in case.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gsander.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gsander.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gsander.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gsander.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gsander.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gsander.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gsander.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gsander.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gsander.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gsander.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gsander.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gsander.wordpress.com/88/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gsander.wordpress.com/88/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gsander.wordpress.com/88/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gsander.wordpress.com&amp;blog=903291&amp;post=88&amp;subd=gsander&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gsander.wordpress.com/2012/01/10/how-to-monitor-broadband-uptime/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8d02f64f8575e0343147f2419002399?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gsander</media:title>
		</media:content>

		<media:content url="http://gsander.files.wordpress.com/2012/01/uptime-report-1.jpg?w=300" medium="image">
			<media:title type="html">Pingdome uptime report</media:title>
		</media:content>
	</item>
		<item>
		<title>tmux for bubba2</title>
		<link>http://gsander.wordpress.com/2011/09/17/tmux-for-bubba2/</link>
		<comments>http://gsander.wordpress.com/2011/09/17/tmux-for-bubba2/#comments</comments>
		<pubDate>Sat, 17 Sep 2011 21:17:18 +0000</pubDate>
		<dc:creator>gsander</dc:creator>
				<category><![CDATA[Bubba]]></category>

		<guid isPermaLink="false">http://gsander.wordpress.com/?p=79</guid>
		<description><![CDATA[There are various replacements for the traditional screen command in Linux, Byobu and tmux being two good ones. Byobu is good, but after trying tmux on various Linux machines I really wanted it also on the bubba2. As tmux doesn&#8217;t seems to be in the bubba2 or etch repositories, the next option is to build [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gsander.wordpress.com&amp;blog=903291&amp;post=79&amp;subd=gsander&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There are various replacements for the traditional screen command in Linux, <a href="https://launchpad.net/byobu">Byobu</a> and <a href="http://tmux.sourceforge.net/">tmux</a> being two good ones. Byobu is good, but after trying tmux on various Linux machines I really wanted it also on the bubba2.</p>
<p>As tmux doesn&#8217;t seems to be in the bubba2 or etch repositories, the next option is to build it from source. Below follow some ideas for doing this.</p>
<p>Note: you may need to install/upgrade gcc and other tools to complete the steps below, if you have a standard, out-of-the-box bubba2 system.</p>
<ol>
<li><strong>Switch to su and create a directory for source &amp; resulting binaries</strong><br />
su<br />
mkdir ~/project<br />
cd ~/project</li>
<li><strong>Compile proper libevent version</strong><br />
<em>tmux needs a more recent version of <a title="libevent" href="http://monkey.org/~provos/libevent/" target="_blank">libevent</a> than installed as part of bubba2 standard setup. First remove current libevent, then compile the new one:</em><br />
apt-get remove libevent1<br />
mkdir ~/project/libevent<br />
cd ~/project/libevent<br />
wget http://monkey.org/~provos/libevent-1.4.14b-stable.tar.gz<br />
gunzip libevent-1.4.14b-stable.tar.gz<br />
tar xvf libevent-1.4.14b-stable.tar<br />
cd libevent-1.4.14b-stable<br />
./configure<br />
make<br />
make install</li>
<li><strong>Register the new libevent</strong><br />
Edit /etc/ld.so.conf.d/powerpc-linux-gnu.conf, e.g. by &#8220;vim /etc/ld.so.conf.d/powerpc-linux-gnu.conf&#8221;, add the line &#8220;/usr/local/lib/&#8221; (no quotes) at the end.</li>
<li><strong>Reload the new libevent</strong><br />
Simply run &#8220;ldconfig&#8221;.</li>
<li><strong>Compile and install tmux</strong><br />
mkdir ~/project/tmux<br />
cd ~/project/tmux<br />
wget http://downloads.sourceforge.net/project/tmux/tmux/tmux-1.5/tmux-1.5.tar.gz<br />
gunzip http://downloads.sourceforge.net/project/tmux/tmux/tmux-1.5/tmux-1.5.tar.gz<br />
tar xvf http://downloads.sourceforge.net/project/tmux/tmux/tmux-1.5/tmux-1.5.tar<br />
cd tmux-1.5<br />
./configure<br />
make<br />
make install</li>
<li><strong>Configure tmux and start using it</strong><br />
First, exit from superuser mode by typing &#8220;exit&#8221;. Then, you probably want to customize tmux, try googling &#8220;tmux config file&#8221; or similar for samples. I currently use the following:# Make it use C-a, similar to screen..<br />
unbind C-b<br />
unbind l<br />
set -g prefix C-a<br />
bind-key C-a last-window<br />
# key bindings for splitting<br />
unbind %<br />
bind | split-window -h<br />
bind h split-window -h<br />
unbind &#8216;&#8221;&#8216;<br />
bind &#8211; split-window -v<br />
bind v split-window -v# Reload key<br />
bind r source-file ~/.tmux.conf#set -g default-terminal &#8220;screen-256color&#8221;<br />
set -g default-terminal &#8220;xterm&#8221;<br />
set -g history-limit 4096<br />
# Terminal emulator window title<br />
set -g set-titles on<br />
set -g set-titles-string &#8216;#S:#I.#P #W&#8217;# THEME<br />
set -g status-bg black<br />
set -g status-fg white<br />
set -g status-interval 60<br />
set -g status-left-length 30<br />
set -g status-left &#8216;#[fg=green](#S) #(whoami)@#H#[default]&#8216;<br />
# set -g status-right &#8216;#[fg=yellow]#(cut -d &#8221; &#8221; -f 1-3 /proc/loadavg)#[default] #[fg=blue]%H:%M#[default]&#8216;<br />
set -g status-right-length 75<br />
set -g status-right &#8216;#[fg=red]Up #(uptime | cut -f 4-5 -d &#8221; &#8221; | cut -f 1 -d &#8220;,&#8221;) #[fg=black]#[fg=yellow]#(cut -d &#8221; &#8221; -f 1-4 /proc/loadavg) #[fg=cyan,bold]%Y-%m-%d %H:%M:%<br />
S#[default]&#8216;</li>
<li><strong>Start using tmux</strong><br />
&#8220;tmux&#8221; starts tmux. Now you can create new windows/panes, and kill the sessions whenever you want. When you reconnect to the bubba2 over ssh, just type tmux attach and you can continue where you left off.</li>
</ol>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gsander.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gsander.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gsander.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gsander.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gsander.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gsander.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gsander.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gsander.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gsander.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gsander.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gsander.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gsander.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gsander.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gsander.wordpress.com/79/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gsander.wordpress.com&amp;blog=903291&amp;post=79&amp;subd=gsander&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gsander.wordpress.com/2011/09/17/tmux-for-bubba2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8d02f64f8575e0343147f2419002399?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gsander</media:title>
		</media:content>
	</item>
		<item>
		<title>Dell&#8217;s WinXP installer messes up OSX partitions when using Boot Camp</title>
		<link>http://gsander.wordpress.com/2010/10/07/winxp-installer-messes-up-osx-partitions-when-using-boot-camp/</link>
		<comments>http://gsander.wordpress.com/2010/10/07/winxp-installer-messes-up-osx-partitions-when-using-boot-camp/#comments</comments>
		<pubDate>Thu, 07 Oct 2010 21:48:29 +0000</pubDate>
		<dc:creator>gsander</dc:creator>
				<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://gsander.wordpress.com/?p=72</guid>
		<description><![CDATA[A few days ago I decided to install WinXP on my Intel based iMac, using Boot Camp. Boot Camp assistant worked great, it created a new Boot Camp partition on the hard drive just as planned with a 32 GB partition. Popping in a Dell WinXP SP2 CD (from a now long gone computer) as instructed, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gsander.wordpress.com&amp;blog=903291&amp;post=72&amp;subd=gsander&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A few days ago I decided to install WinXP on my Intel based iMac, using Boot Camp.</p>
<p>Boot Camp assistant worked great, it created a new Boot Camp partition on the hard drive just as planned with a 32 GB partition. Popping in a Dell WinXP SP2 CD (from a now long gone computer) as instructed, but when prompted to select where to install XP the Boot Camp partition was gone. In fact, so was the OSX partition&#8230;<br />
The weird thing was that the XP installer suggested I should install it to a 131 GByte partition on the disk &#8211; where did it get that from?</p>
<p>Luckily I have a nightly <a href="http://www.bombich.com/">Carbon Copy Cloner</a> job scheduled for the iMac, so restoring the OSX disk was pretty straightforward (even though it took some 5-6 hours to restore 500 GB of data).</p>
<p>Tried the same procedure twice more. Once with the same result, and once I the OSX partition was actually intact. But XP still suggested I&#8217;d install it to the non-existing 131 GB partition.</p>
<p>Fourth time I tried another XP disc, and this time also slipstreamed it with SP3 using <a href="http://www.nliteos.com/">nLite</a> (awesome product!). And now it worked flawlessly.</p>
<p>After doing some research it seems that some people are having trouble using Dell XP CDs with Boot Camp. Not sure why, but using that other, generic XP CD made the problem disappear. Or if it was the SP3 slipstreaming &#8211; either way it now works. I guess you could argue that the Dell CD was intended to be used with Dell machines only, and in this case that  turns out to be true.. Anyway, with the problems sorted out, dual booting works great!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gsander.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gsander.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gsander.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gsander.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gsander.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gsander.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gsander.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gsander.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gsander.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gsander.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gsander.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gsander.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gsander.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gsander.wordpress.com/72/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gsander.wordpress.com&amp;blog=903291&amp;post=72&amp;subd=gsander&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gsander.wordpress.com/2010/10/07/winxp-installer-messes-up-osx-partitions-when-using-boot-camp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8d02f64f8575e0343147f2419002399?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gsander</media:title>
		</media:content>
	</item>
		<item>
		<title>Dell XPS M1330 &#8211; end of story</title>
		<link>http://gsander.wordpress.com/2010/04/14/dell-xps-m1330-end-of-story/</link>
		<comments>http://gsander.wordpress.com/2010/04/14/dell-xps-m1330-end-of-story/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 19:47:44 +0000</pubDate>
		<dc:creator>gsander</dc:creator>
				<category><![CDATA[Computers & geek stuff]]></category>

		<guid isPermaLink="false">http://gsander.wordpress.com/?p=67</guid>
		<description><![CDATA[Long overdue, here is the final chapter in the warranty story going on with Dell. They indeed repaired the laptop &#8211; at least in part. The graphics now works as it should, but the computer is still unstable and hangs way too often to be useful, even with fresh installations of Vista. Loosing work because [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gsander.wordpress.com&amp;blog=903291&amp;post=67&amp;subd=gsander&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Long overdue, here is the final chapter in the warranty story going on with Dell.</p>
<p>They indeed repaired the laptop &#8211; at least in part. The graphics now works as it should, but the computer is still unstable and hangs way too often to be useful, even with fresh installations of Vista. Loosing work because the computer hangs at random times (several times per hour) just isn&#8217;t an option&#8230; No idea what&#8217;s causing it &#8211; feels like it may be poor thermal design/overheating. But that&#8217;s just a guess.</p>
<p>Nice of Dell to repair the broken GPU, but too bad they didn&#8217;t make the laptop usable again.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gsander.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gsander.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gsander.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gsander.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gsander.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gsander.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gsander.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gsander.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gsander.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gsander.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gsander.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gsander.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gsander.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gsander.wordpress.com/67/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gsander.wordpress.com&amp;blog=903291&amp;post=67&amp;subd=gsander&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gsander.wordpress.com/2010/04/14/dell-xps-m1330-end-of-story/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8d02f64f8575e0343147f2419002399?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gsander</media:title>
		</media:content>
	</item>
		<item>
		<title>Dell XPS M1330 NVIDIA troubles&#8230; progress!</title>
		<link>http://gsander.wordpress.com/2010/02/24/dell-xps-m1330-nvidia-troubles-progress/</link>
		<comments>http://gsander.wordpress.com/2010/02/24/dell-xps-m1330-nvidia-troubles-progress/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 16:07:30 +0000</pubDate>
		<dc:creator>gsander</dc:creator>
				<category><![CDATA[Computers & geek stuff]]></category>
		<category><![CDATA[dell]]></category>

		<guid isPermaLink="false">http://gsander.wordpress.com/2010/02/24/dell-xps-m1330-nvidia-troubles-progress/</guid>
		<description><![CDATA[Turns out Dell&#8217;s tech support wasn&#8217;t the way to go. After being told the laptop was 2 months out of warranty I had a chat with the sales guy who sold us the laptop two years ago. Friday last week he promised to look into the case and get back by Tuesday this week latest. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gsander.wordpress.com&amp;blog=903291&amp;post=66&amp;subd=gsander&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Turns out Dell&#8217;s tech support wasn&#8217;t the way to go.<br />
After being told the laptop was 2 months out of warranty I had a chat with the sales guy who sold us the laptop two years ago. Friday last week he promised to look into the case and get back by Tuesday this week latest. That he did, with the good news that Dell would repair the laptop without cost to me. </p>
<p>Now that&#8217;s good support! Let&#8217;s just hope that is the end of the story. </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gsander.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gsander.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gsander.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gsander.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gsander.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gsander.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gsander.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gsander.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gsander.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gsander.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gsander.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gsander.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gsander.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gsander.wordpress.com/66/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gsander.wordpress.com&amp;blog=903291&amp;post=66&amp;subd=gsander&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gsander.wordpress.com/2010/02/24/dell-xps-m1330-nvidia-troubles-progress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8d02f64f8575e0343147f2419002399?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gsander</media:title>
		</media:content>
	</item>
		<item>
		<title>Dell XPS M1330 &#8211; Nvidia GPU failing</title>
		<link>http://gsander.wordpress.com/2010/02/16/dell-xps-m1330-nvidia-gpu-failinguit/</link>
		<comments>http://gsander.wordpress.com/2010/02/16/dell-xps-m1330-nvidia-gpu-failinguit/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 09:14:50 +0000</pubDate>
		<dc:creator>gsander</dc:creator>
				<category><![CDATA[Computers & geek stuff]]></category>
		<category><![CDATA[dell]]></category>

		<guid isPermaLink="false">http://gsander.wordpress.com/?p=59</guid>
		<description><![CDATA[Been using a Dell XPS M1330 at work from December 2007 until last fall (October 2009). It  worked well until it in September 2009 started to act suspiciously, crashing from time to time. Problems escalating and in October it died. The symptoms were thin verticals colored lines that successively grew more intensive until the screen [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gsander.wordpress.com&amp;blog=903291&amp;post=59&amp;subd=gsander&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Been using a Dell XPS M1330 at work from December 2007 until last fall (October 2009). It  worked well until it in September 2009 started to act suspiciously, crashing from time to time. Problems escalating and in October it died. The symptoms were thin verticals colored lines that successively grew more intensive until the screen was all white.</p>
<p>Called Dell support who said &#8220;sorry &#8211; you had a one-year warranty &#8211; it expired in December 2008&#8243;. Frustrated with a month of crashing Vista I upgraded to a MacBook Pro (great machine btw).  The Dell laptop found a resting place in a drawer.</p>
<p>I&#8217;ve kept the laptop in good order, not banged it around too much, always upgraded with latest BIOS and Vista updates etc.</p>
<p><strong>You would think that&#8217;s the end of the story&#8230; Not so.</strong></p>
<p>A few days ago I stumbled upon a forum post where people were upset about Dell&#8217;s poor attitude towards users having problems with their GPUs in certain Dell laptop models. Turns out their problems were the same as I experienced on my M1330 (which has a 128 MB NVIDIA GeForce 8400M GS). Also seems Dell has been aware of the problems for quite some time, but not issued a recall or even a warning to customers who had bought the affected models.</p>
<p>A quick <a href="http://www.google.com/search?q=dell+nvidia+problems" target="_blank">google search</a> reveals the problem seems to be quite well known, there are also <a href="http://www.youtube.com/watch?v=b2o_CaSqKvE" target="_blank">videos online</a> showing what the problem looks like.</p>
<p>Btw, a way of testing whether it&#8217;s the GPU or display that&#8217;s causing the problem is to hold down the &#8220;D&#8221; key while pressing the power button. The display should now cycle between various solid colors (red, green, blue etc) before continuing to boot in graphical mode (which will fail if the GPU is broken). But if you see the solid colors ok, your display is fine.</p>
<p><strong>So is this an isolated problem for Dell only? Of course not:</strong></p>
<p>Dell <a href="http://en.community.dell.com/blogs/direct2dell/archive/2008/07/25/nvidia-gpu-update-for-dell-laptop-owners.aspx" target="_blank">has acknowledged</a> there are issues with the Nvidia GPU and offer a 12 month extended warranty to cover for those affected.</p>
<p>HP is also affected, a <a href="http://forums13.itrc.hp.com/service/forums/bizsupport/questionanswer.do?admit=109447627+1266309461799+28353475&amp;threadId=1274587" target="_blank">very long thread</a> in their forum shows HP users are also upset. It seems they have informed their customers though, at least <a href="http://news.cnet.com/8301-13924_3-10000910-64.html" target="_blank">according to CNet</a> and <a href="http://www.engadget.com/2008/07/31/figuring-out-which-nvidia-gpus-are-defective-its-a-lot/" target="_blank">Engadget</a>.</p>
<p>Same thing for Sony, their take is to offer a <a href="http://www.engadget.com/2009/08/11/sony-finally-admits-nvidia-chips-are-borking-its-laptops-offers/" target="_blank">good and relevant extended warranty</a>: &#8220;<span style="font-family:georgia;font-size:14px;color:#444444;">Sony is offering to repair yours for free within four years of the purchase date, irrespective of warranty status. <span style="color:#000000;font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;font-size:13px;">&#8221; </span></span></p>
<p>Apple finally is not immune either, but they also offer a <a href="http://support.apple.com/kb/TS2377" target="_blank">good extended warranty</a>: &#8220;If the NVIDIA graphics processor in your MacBook Pro has failed, or fails within three years of the original date of purchase, a repair will be done free of charge, even if your MacBook Pro is out of warranty.&#8221;</p>
<p><strong>Here is where I am starting to get really upset.</strong></p>
<p><em>I was told by Dell support in October that the laptop was out of warranty and they wouldn&#8217;t repair it. They told me nothing of extended warranty to cover for defective GPUs.</em></p>
<p><em>Six months later (=now) I find out that I was in fact eligible for the extended warranty back in Octobert, but now Dell tells me it&#8217;s too late &#8211; &#8220;You are two months past the warranty period&#8221;.</em></p>
<div id="_mcePaste">Let&#8217;s see where this goes &#8211; I&#8217;ll be pushing to get the GPU fixed. Will be interesting to see what Dell&#8217;s position on this is, I&#8217;ll post updates here &#8211; whether it&#8217;s good news or bad.</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gsander.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gsander.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gsander.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gsander.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gsander.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gsander.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gsander.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gsander.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gsander.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gsander.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gsander.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gsander.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gsander.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gsander.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gsander.wordpress.com&amp;blog=903291&amp;post=59&amp;subd=gsander&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gsander.wordpress.com/2010/02/16/dell-xps-m1330-nvidia-gpu-failinguit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8d02f64f8575e0343147f2419002399?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gsander</media:title>
		</media:content>
	</item>
		<item>
		<title>Wiring the house, part 3: Planning the 1-wire sensor network</title>
		<link>http://gsander.wordpress.com/2009/09/02/wiring-the-house-part-3-planning-the-1-wire-sensor-network/</link>
		<comments>http://gsander.wordpress.com/2009/09/02/wiring-the-house-part-3-planning-the-1-wire-sensor-network/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 20:29:54 +0000</pubDate>
		<dc:creator>gsander</dc:creator>
				<category><![CDATA[1-wire]]></category>
		<category><![CDATA[Bubba]]></category>
		<category><![CDATA[Energy saving]]></category>
		<category><![CDATA[Home automation]]></category>

		<guid isPermaLink="false">http://gsander.wordpress.com/?p=49</guid>
		<description><![CDATA[When ordering the needed hardware new possibilities came to mind, as they so often do when you are browsing catalogs of companies selling cool gadgets… The first version of the 1-wire network will look something like this, possibly with some of the sensors furthest away from the server installed at a later time. Some of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gsander.wordpress.com&amp;blog=903291&amp;post=49&amp;subd=gsander&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When ordering the needed hardware new possibilities came to mind, as they so often do when you are browsing catalogs of companies selling cool gadgets…</p>
<p>The first version of the 1-wire network will look something like this, possibly with some of the sensors furthest away from the server installed at a later time. Some of these sensors are after all pretty expensive (just the humidity sensor, <a href="http://sensing.honeywell.com/index.cfm/ci_id/140570/la_id/1/document/1/re_id/0" target="_blank">HIH-4000-001</a>, got it from <a href="http://search.digikey.com/scripts/DkSearch/dksus.dll?lang=en&amp;site=US&amp;WT.z_homepage_link=hp_go_button&amp;KeyWords=480-2905-ND&amp;x=18&amp;y=22" target="_blank">Digikey</a>, that is attached to the <a href="http://www.maxim-ic.com/quick_view2.cfm?qv_pk=2919" target="_blank">DS2438</a> AD converter cost around €20). Getting the all the cables in place have also turned out to be a bit tricky, the tubing in the walls back in –65 just weren’t made with cat-6 networks, phone lines and 1-wire networks in mind…</p>
<p><a href="http://gsander.files.wordpress.com/2009/09/sp531wirenetwork.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="SP53 1-wire network" src="http://gsander.files.wordpress.com/2009/09/sp531wirenetwork_thumb.jpg?w=546&#038;h=365" border="0" alt="SP53 1-wire network" width="546" height="365" /></a></p>
<p>The Linux server will run either <a href="http://sourceforge.net/projects/owfs/files/temploggerd/" target="_blank">temploggerd</a> and <a href="http://www.owfs.org/" target="_blank">owfs</a> (if I can get it to work on the small Bubba Linux server that I am using, so far it compiles ok but doesn’t seem to respond properly to the sensors), or <a href="http://www.klein.com/thermd/" target="_blank">thermd</a>.</p>
<p>I verified thermd runs (it does work as expected but it takes 15-20 seconds or so to update the graphs) on the <a href="Bubba server" target="_blank">Bubba server</a> as long as you install the perl runtimes and quite a few Perl packages, but as owfs offers a better client-server approach it would be the preferred solution.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gsander.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gsander.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gsander.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gsander.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gsander.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gsander.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gsander.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gsander.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gsander.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gsander.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gsander.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gsander.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gsander.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gsander.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gsander.wordpress.com&amp;blog=903291&amp;post=49&amp;subd=gsander&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gsander.wordpress.com/2009/09/02/wiring-the-house-part-3-planning-the-1-wire-sensor-network/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8d02f64f8575e0343147f2419002399?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gsander</media:title>
		</media:content>

		<media:content url="http://gsander.files.wordpress.com/2009/09/sp531wirenetwork_thumb.jpg" medium="image">
			<media:title type="html">SP53 1-wire network</media:title>
		</media:content>
	</item>
		<item>
		<title>Wiring the house, part 2: Buying 1-wire sensors and accessories</title>
		<link>http://gsander.wordpress.com/2009/08/25/wiring-the-house-part-2-buying-1-wire-sensors-and-accessories/</link>
		<comments>http://gsander.wordpress.com/2009/08/25/wiring-the-house-part-2-buying-1-wire-sensors-and-accessories/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 21:21:02 +0000</pubDate>
		<dc:creator>gsander</dc:creator>
				<category><![CDATA[1-wire]]></category>
		<category><![CDATA[Home automation]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gsander.wordpress.com/?p=32</guid>
		<description><![CDATA[So, having moved from a flat to a house a couple of months back it was time to do some actual work on a home monitoring system. First task: to find a good source for the needed 1-wire sensors and other electronics and hardware. Some digging around, comparing a lot of prices resulted in the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gsander.wordpress.com&amp;blog=903291&amp;post=32&amp;subd=gsander&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So, having moved from a flat to a house a couple of months back it was time to do some actual work on a home monitoring system.</p>
<p>First task: to find a good source for the needed 1-wire sensors and other electronics and hardware.<br />
Some digging around, comparing a lot of prices resulted in the matrix below.<br />
I then ended up buying my 1-wire products and components from Homechip and Hobby-boards, with some additional components from Electrokit.</p>
<p>Please note that prices and other aspects of the stores are expected to change, the data below represent a snapshot as of August 2009. They should in any case provide some starting points for your own 1-wire online shopping adventures.</p>
<table width="483" border="1" cellspacing="0" cellpadding="2">
<tbody>
<tr>
<td valign="top" width="95"><strong><span style="font-size:x-small;"><span style="font-size:x-small;">Vendor</span></span></strong></td>
<td valign="top" width="47"><strong><span style="font-size:x-small;"><span style="font-size:x-small;">Country</span></span></strong></td>
<td valign="top" width="339"><strong><span style="font-size:x-small;"><span style="font-size:x-small;">Comment</span></span></strong></td>
</tr>
<tr>
<td valign="top" width="95"><a href="http://www.homechip.com" target="_blank"><span style="font-size:x-small;">Homechip</span></a></td>
<td valign="top" width="47"><span style="font-size:x-small;">UK</span></td>
<td valign="top" width="339"><span style="font-size:x-small;">Good prices and fast, affordable delivery across Europe, they don’t have quite the selection of 1-wire products as for example Hobby-Boards or DigiKey (who are outstanding when it comes to components).<br />
But with Homechip offering the core component I needed while also being European the first batch of 1-wire sensors were bought from them. Might try other providers later.A good thing about Homechip is that they carry the </span><a href="http://www.homechip.com/catalog/product_info.php?cPath=27&amp;products_id=110" target="_blank"><span style="font-size:x-small;">T-sense</span></a><span style="font-size:x-small;"> (made by IButtonLink) at an affordable price. VERY convenient temperature sensor! Ok, a bit more expensive than buying the components, but oh so convenient..<br />
Low shipping costs also to rest of Europe outside of UK.</span></td>
</tr>
<tr>
<td valign="top" width="95"><a href="http://www.hobby-boards.com" target="_blank"><span style="font-size:x-small;">Hobby-Boards</span></a></td>
<td valign="top" width="47"><span style="font-size:x-small;">US</span></td>
<td valign="top" width="339"><span style="font-size:x-small;">Nice store with some assembled and ready-to-go 1-wire sensor modules, such as the </span><a href="http://www.hobby-boards.com/catalog/product_info.php?cPath=24&amp;products_id=1554" target="_blank"><span style="font-size:x-small;">8 channel relay board</span></a><span style="font-size:x-small;"> or the nice little DS2423-based </span><a href="http://www.hobby-boards.com/catalog/product_info.php?cPath=24&amp;products_id=42" target="_blank"><span style="font-size:x-small;">dual counter</span></a><span style="font-size:x-small;"><span style="font-size:x-small;">(Note: Homechip carries a similar counter).A GREAT thing about Hobby-Boards is that they offer both schematics and PCB layout for free on their web! This gives some very good inspiration for those of us who like to build things from scratch but have spent the last fifteen years doing other things than designing electronic circuits.Reasonable prices but longer/more expensive shipping if you are in Europe.</span></span>&nbsp;</td>
</tr>
<tr>
<td valign="top" width="95"><a href="http://www.embeddeddatasystems.com" target="_blank"><span style="font-size:x-small;">Embedded Data Systems</span></a></td>
<td valign="top" width="47"><span style="font-size:x-small;">US</span></td>
<td valign="top" width="339"><span style="font-size:x-small;">This company among other things makes the HA7Net, which is an Ethernet equipped 1-wire master controller with some real intelligence in it. It contains a web server, upgradable firmware, various tools for reading/writing/maintaining a 1-wire network. The HA7Net also has three 1-wire ports, making it dead simple to create a star-formed 1-wire network.The HA7Net acts as the 1-wire centre point in my network, it is then read by various other software on the internal TCP/IP network. </span></td>
</tr>
<tr>
<td valign="top" width="95"><a href="http://www.temperatur.nu" target="_blank"><span style="font-size:x-small;">Temperatur.nu</span></a></td>
<td valign="top" width="47"><span style="font-size:x-small;">Sweden</span></td>
<td valign="top" width="339"><span style="font-size:x-small;">temperatur.nu contains both temperatures across Sweden updated by people’s personal computer connected weather stations, as well as an online shop and a good forum for Swedes interested in home and weather monitoring systems. Quite a few good 1-wire related threads in the forums.The store has a fair number of components as well as pre-assembled sensor modules. Prices are a bit high compared to for example Homechip but if you are in Sweden and need fast delivery it may be worth it.<br />
The store also has various home automation products, such as radio controlled 220V switches. </span></td>
</tr>
<tr>
<td valign="top" width="95"></td>
<td valign="top" width="47"></td>
<td valign="top" width="339"></td>
</tr>
<tr>
<td valign="top" width="95"><a href="http://www.ibuttonlink.com" target="_blank"><span style="font-size:x-small;">IbuttonLink</span></a></td>
<td valign="top" width="47"><span style="font-size:x-small;">US</span></td>
<td valign="top" width="339"><span style="font-size:xx-small;">Makers of some good 1-wire products, such as the </span><a href="http://www.ibuttonlink.com/linkusb.aspx" target="_blank"><span style="font-size:xx-small;">LinkUSB</span></a><span style="font-size:xx-small;"> 1-wire interface, which can be used instead of the standard </span><a href="http://datasheets.maxim-ic.com/en/ds/DS9490-DS9490R.pdf" target="_blank"><span style="font-size:xx-small;">DS9490R</span></a><span style="font-size:xx-small;"> from Maxim. </span><span style="font-size:xx-small;">They also make the very convenient </span><a href="http://www.ibuttonlink.com/t-sense.aspx" target="_blank"><span style="font-size:xx-small;">T-Sense</span></a><span style="font-size:xx-small;"> temperature sensor, but as this is available from HomeChip at the same or even better price (given the current USD to EUR exchange rate), I’ve got my T-Sensors from Homechip. </span></td>
</tr>
<tr>
<td valign="top" width="95"><a href="http://www.1-wire.de/" target="_blank"><span style="font-size:x-small;">1.wire shop</span></a></td>
<td valign="top" width="47"><span style="font-size:x-small;">Germany</span></td>
<td valign="top" width="339"><span style="font-size:xx-small;">Expensive German online store</span></td>
</tr>
<tr>
<td valign="top" width="95"><a href="http://www.fuchs-shop.com" target="_blank"><span style="font-size:x-small;">Fuchs Shop</span></a></td>
<td valign="top" width="47"><span style="font-size:x-small;">Germany</span></td>
<td valign="top" width="339"><span style="font-size:xx-small;">Expensive German online store</span></td>
</tr>
<tr>
<td valign="top" width="95"></td>
<td valign="top" width="47"></td>
<td valign="top" width="339"></td>
</tr>
<tr>
<td valign="top" width="95"><a href="http://www.sparkfun.com" target="_blank"><span style="font-size:x-small;">SparkFun</span></a></td>
<td valign="top" width="47"><span style="font-size:x-small;">US</span></td>
<td valign="top" width="339"><span style="font-size:xx-small;">GREAT company with a fantastic amount of cool gadgets and electronics kits in the store, usually with very affordable prices. If you like fiddling around with electronics and microcontrollers you’ll love SparkFun. </span><span style="font-size:xx-small;">SparkFun offer free schematics for many of their kits, they also have good tutorials and forums. Great site!</span></td>
</tr>
<tr>
<td valign="top" width="95"><a href="http://www.digikey.com" target="_blank"><span style="font-size:xx-small;">Digikey</span></a></td>
<td valign="top" width="47"><span style="font-size:xx-small;"><span style="text-decoration:line-through;">US</span><br />
<em>Intl</em></span></td>
<td valign="top" width="339"><span style="font-size:xx-small;">Giant retailer of electronics components. More than 1900 employees, more than 450.000 products in stock. If you need an electronics component, Digikey is likely to have it, and at a good price. </span><span style="text-decoration:line-through;"><span style="font-size:xx-small;">Based in US means longer delivery and higher shipping costs though.<br />
</span></span><em><span style="font-size:xx-small;">Edit: Turns out Digikey has <a href="http://dkc1.digikey.com/us/en/mkt/International.html" target="_blank">a great international service</a> as well! </span><span style="font-size:xx-small;">For their Swedish customers they even offer <a href="http://dkc1.digikey.com/se/en/mkt/Terms_FreeShipHP.html" target="_blank">free shipping</a> on orders of more than €65, which is pretty easy to reach when looking through their catalog&#8230;</span></em><span style="text-decoration:line-through;"><span style="font-size:xx-small;"><br />
</span></span></td>
</tr>
<tr>
<td valign="top" width="95"><a href="www.electrokit.se" target="_blank"><span style="font-size:x-small;">Electrokit</span></a></td>
<td valign="top" width="47"><span style="font-size:x-small;">Sweden</span></td>
<td valign="top" width="339"><span style="font-size:xx-small;">Probably Sweden’s best online store for electronics components and Arduino microcontrollers. Good prices, very affordable shipping costs.</span></td>
</tr>
<tr>
<td valign="top" width="95"><a href="http://www.lawicel-shop.se" target="_blank"><span style="font-size:x-small;">Lawicel-shop</span></a></td>
<td valign="top" width="47"><span style="font-size:x-small;">Sweden</span></td>
<td valign="top" width="339"><span style="font-size:xx-small;">Sells various embedded systems products, including Arduino boards. Seem to be more expensive than Electrokit.</span></td>
</tr>
<tr>
<td valign="top" width="95"><a href="http://www.maplin.co.uk" target="_blank"><span style="font-size:x-small;">Maplin</span></a></td>
<td valign="top" width="47"><span style="font-size:x-small;">UK</span></td>
<td valign="top" width="339"><span style="font-size:xx-small;">Sells all sorts of electronics and components. Might be worth considering for UK people.</span></td>
</tr>
<tr>
<td valign="top" width="95"><a href="http://www.energibutiken.se"><span style="font-size:xx-small;">Energibutiken</span></a></td>
<td valign="top" width="47"><span style="font-size:xx-small;">Sweden</span></td>
<td valign="top" width="339"><span style="font-size:xx-small;">Online store with a small but fairly good selection of products relating to energy monitoring. They among other things have an interesting </span><a href="http://www.energibutiken.se/catalog/product_info.php?products_id=123&amp;osCsid=3d4vjnnns4amj8eggpau9nblc3" target="_blank"><span style="font-size:xx-small;">data logger</span></a><span style="font-size:x-small;"><span style="font-size:xx-small;"> for those who don’t want to be bothered by running a server for their 1-wire projects.</span> </span></td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gsander.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gsander.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gsander.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gsander.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gsander.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gsander.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gsander.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gsander.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gsander.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gsander.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gsander.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gsander.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gsander.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gsander.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gsander.wordpress.com&amp;blog=903291&amp;post=32&amp;subd=gsander&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gsander.wordpress.com/2009/08/25/wiring-the-house-part-2-buying-1-wire-sensors-and-accessories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8d02f64f8575e0343147f2419002399?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gsander</media:title>
		</media:content>
	</item>
		<item>
		<title>Syncing Firefox sessions across computer and platforms</title>
		<link>http://gsander.wordpress.com/2009/08/21/syncing-firefox-sessions-across-computer-and-platforms/</link>
		<comments>http://gsander.wordpress.com/2009/08/21/syncing-firefox-sessions-across-computer-and-platforms/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 10:07:12 +0000</pubDate>
		<dc:creator>gsander</dc:creator>
				<category><![CDATA[Computers & geek stuff]]></category>

		<guid isPermaLink="false">http://gsander.wordpress.com/?p=18</guid>
		<description><![CDATA[I regularly use 3-4 different computers, from time to time also guest operating systems running in virtual machines. For years I have been thinking it would be great if you could bring your current Firefox status with you to a different computer, for example between a Mac and PC. After recently actually looking into this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gsander.wordpress.com&amp;blog=903291&amp;post=18&amp;subd=gsander&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I regularly use 3-4 different computers, from time to time also guest operating systems running in virtual machines. For years I have been thinking it would be great if you could bring your current Firefox status with you to a different computer, for example between a Mac and PC.</p>
<p>After recently actually looking into this topic I found the new <a href="http://labs.mozilla.com/weave/" target="_blank">Mozilla Weave</a> Firefox extension. It is in beta and have some bugs, but is very promising even in its current state. However, it doesn&#8217;t sync sessions.</p>
<p>I recently also started using the nice <a href="https://www.getdropbox.com/referrals/NTE1MTEzNjE5" target="_blank">Dropbox</a> service for file syncing. Dropbox has both Windows and Mac clients and works fully transparently: any file you put in the dedicated Dropbox folder on your local computer is automatically synced to the Dropbox service and from there propagated out to your other computers where you have Dropbox installed and running. As you get 2 GB of free storage that is more than plenty for storing session information.</p>
<p>Only thing missing now is to find where Firefox&#8217; sessions files are stored. As I am using the excellent <a href="https://addons.mozilla.org/en-US/firefox/addon/2324" target="_blank">Session Manager</a> Firefox extension, a quick look in the Advanced tab of its options dialog revealed that you can indeed specify where Session Manager&#8217;s session files should be stored. Change this to your local Dropbox folder and you are set! As soon as you save a session in Session Manager it will be almost instantly available on your other computers. To use them on these other computers you use the &#8220;Load session&#8230;&#8221; command in Session Manager&#8217;s menu, which in turn is found in Firefox&#8217; Tools menu.</p>
<p>Have been using this setup for some weeks now, works flawlessly.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gsander.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gsander.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gsander.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gsander.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gsander.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gsander.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gsander.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gsander.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gsander.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gsander.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gsander.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gsander.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gsander.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gsander.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gsander.wordpress.com&amp;blog=903291&amp;post=18&amp;subd=gsander&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gsander.wordpress.com/2009/08/21/syncing-firefox-sessions-across-computer-and-platforms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8d02f64f8575e0343147f2419002399?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gsander</media:title>
		</media:content>
	</item>
		<item>
		<title>Wiring the house</title>
		<link>http://gsander.wordpress.com/2009/08/18/wiring-the-house/</link>
		<comments>http://gsander.wordpress.com/2009/08/18/wiring-the-house/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 13:55:05 +0000</pubDate>
		<dc:creator>gsander</dc:creator>
				<category><![CDATA[1-wire]]></category>
		<category><![CDATA[Energy saving]]></category>
		<category><![CDATA[Home automation]]></category>

		<guid isPermaLink="false">http://gsander.wordpress.com/?p=15</guid>
		<description><![CDATA[Moving to a house from an apartment made me realize you have new things to consider. - How much money is spent on heating? - We have a 45-year old, huge waterboiler in the basement, how much does it cost to keep it running? Would we save money by replacing it with a modern one? [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gsander.wordpress.com&amp;blog=903291&amp;post=15&amp;subd=gsander&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Moving to a house from an apartment made me realize you have new things to consider.</p>
<p>- How much money is spent on heating?</p>
<p>- We have a 45-year old, huge waterboiler in the basement, how much does it cost to keep it running? Would we save money by replacing it with a modern one?</p>
<p>- It is said that return-on-investment on air-air heatpumps is quite short, around 18 months is often mentioned. But before installing such a pump to reduce the need for electrical heating it would be great to have a system in place measuring how much electricity is used for electrical heating before and after the pump is installed, and how much energy the pump itself uses.</p>
<p>- How do you measure the above, collect the data and present it in a good way?</p>
<p>- After installing radio controlled switches across the house, how do you control them in a good way? The included remote works ok, but a computer interface is really what is needed to create more advanced lightning setups.</p>
<p>In the coming posts I&#8217;ll sum up the experiences made in planning, building, configuring and running the above services. Having searched the net for information and experiences from others I have found some, but not a whole lot. Hopefully my findings will help others with similar plans and ideas.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gsander.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gsander.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gsander.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gsander.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gsander.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gsander.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gsander.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gsander.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gsander.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gsander.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gsander.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gsander.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gsander.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gsander.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gsander.wordpress.com&amp;blog=903291&amp;post=15&amp;subd=gsander&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gsander.wordpress.com/2009/08/18/wiring-the-house/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b8d02f64f8575e0343147f2419002399?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gsander</media:title>
		</media:content>
	</item>
	</channel>
</rss>
