<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" gd:etag="W/&quot;CkQERH89fyp7ImA9WhdSGU0.&quot;"><id>tag:blogger.com,1999:blog-2717152688431579504</id><updated>2011-07-29T02:45:05.167+02:00</updated><category term="mobile" /><category term="icq" /><category term="yahoo" /><category term="moderaterna" /><category term="parlano" /><category term="perl" /><category term="im" /><category term="piracy" /><category term="sip" /><category term="aspire" /><category term="procurve" /><category term="atx" /><category term="ocs" /><category term="eu" /><category term="msn" /><category term="the pirate bay" /><category term="aim" /><category term="power supply" /><category term="chat" /><category term="fon" /><category term="musik" /><category term="windows" /><category term="fildelning" /><category term="lcs" /><category term="fair use" /><category term="ericsson" /><category term="toshiba" /><category term="dual boot" /><category term="karl sigfrid" /><category term="hardware" /><category term="linux" /><category term="net::telnet" /><category term="reform" /><category term="wifi" /><category term="l300d 13j" /><category term="aol" /><category term="politics" /><category term="broadband" /><category term="copying" /><category term="music" /><category term="hotspots" /><category term="simple" /><category term="instant messaging" /><category term="computers" /><category term="networking" /><category term="intrepid" /><category term="copyright" /><category term="image search" /><category term="fredrik reinfeld" /><category term="wireless" /><category term="drm" /><category term="search" /><category term="marketing" /><category term="microsoft" /><category term="mp3" /><category term="downloading" /><category term="ubuntu" /><category term="switches" /><category term="nedladdning" /><category term="acer" /><category term="satellite" /><category term="johan bergendahl" /><category term="vista" /><category term="hp" /><category term="google" /><category term="orphan works" /><title>Entering the Future</title><subtitle type="html">My blog about computers, internet and the future.</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://enteringthefuture.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://enteringthefuture.blogspot.com/" /><author><name>Hans Persson</name><uri>http://www.blogger.com/profile/00056334737313092043</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://www.lysator.liu.se/~unicorn/images/hp-20030222-ja-medium.jpg" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>10</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/EnteringTheFuture" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="enteringthefuture" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;C0cCRn0yfCp7ImA9Wx9bFUg.&quot;"><id>tag:blogger.com,1999:blog-2717152688431579504.post-325527030661350682</id><published>2011-02-24T13:14:00.004+01:00</published><updated>2011-02-24T13:37:47.394+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-02-24T13:37:47.394+01:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="procurve" /><category scheme="http://www.blogger.com/atom/ns#" term="hp" /><category scheme="http://www.blogger.com/atom/ns#" term="net::telnet" /><category scheme="http://www.blogger.com/atom/ns#" term="perl" /><category scheme="http://www.blogger.com/atom/ns#" term="switches" /><category scheme="http://www.blogger.com/atom/ns#" term="networking" /><title>Connecting to HP ProCurve switches from Perl</title><content type="html">I recently needed to get various information out of our switches, but didn't feel like manually logging into each one to get it. I tried to google up something that did it for me and failed, so I rolled my own script to connect to a number of HP ProCurve switches and get information from them using the Perl module Net::Telnet.&lt;br /&gt;&lt;br /&gt;This is a simple example of how it can be done, hopefully to the help of the next person googling this. The below script makes various assumptions that are probably wrong for your network, like that all switches are reachable via domain names like sw12345.mgmt.&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;pre&gt;#!/usr/bin/perl&lt;br /&gt;&lt;br /&gt;use strict;&lt;br /&gt;use warnings;&lt;br /&gt;use diagnostics;&lt;br /&gt;use Net::Telnet;&lt;br /&gt;&lt;br /&gt;my $swpw     = "hackmenot";  # Assumes same password for all switches.&lt;br /&gt;my @switches = ("sw12345", "sw12346", "sw12347", "sw12348");&lt;br /&gt;&lt;br /&gt;# Firmware versions that don't have the "Press any key" prompt.&lt;br /&gt;my %nopress = (&lt;br /&gt;    "K.14.47" =&gt; 1,&lt;br /&gt;    "W.14.49" =&gt; 1,&lt;br /&gt;);&lt;br /&gt;&lt;br /&gt;foreach my $sw (@switches) {&lt;br /&gt;    my ($model, $version, $string, $trunks) = &amp;get_information($sw);&lt;br /&gt;    printf "%s: %s (%s)\n    loop-protect: %s\n    trunks:       %s\n\n",&lt;br /&gt;        $sw, $model, $version, $string, $trunks;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;sub get_information {&lt;br /&gt;    my ($switch) = @_;&lt;br /&gt;&lt;br /&gt;    my @output;&lt;br /&gt;&lt;br /&gt;    my $session = new Net::Telnet(Timeout    =&gt; 5,&lt;br /&gt;                                  Telnetmode =&gt; 0,&lt;br /&gt;                                  Prompt     =&gt; '/'.$switch.'.*?# /',&lt;br /&gt;                                  Dump_log   =&gt; "/tmp/procurve.txt",  # Debug log.&lt;br /&gt;                                  Host       =&gt; "$switch.mgmt"&lt;br /&gt;        );&lt;br /&gt;&lt;br /&gt;    # Figure out what model the switch is. To make this more exciting, HP has &lt;br /&gt;    # varied the output between different versions.&lt;br /&gt;    my ($prematch, $match) = $session-&gt;waitfor('/ProCurve.*?Switch.*\n/');&lt;br /&gt;    my $model = $match;&lt;br /&gt;    $model =~ s/[\r\n]//g;&lt;br /&gt;    $model =~ s/ProCurve //i;&lt;br /&gt;    $model =~ s/\s*J\d+[AB]\s*//i;&lt;br /&gt;    $model =~ s/\s*Switch\s*//i;&lt;br /&gt;&lt;br /&gt;    ($prematch, $match) = &lt;br /&gt;        $session-&gt;waitfor('/(Firmware|Software) revision.*\n/');&lt;br /&gt;    $match =~ m/(Software|Firmware) revision (.*)/i;&lt;br /&gt;    my $version = $2 || "";&lt;br /&gt;    $version =~ s/[\r\n]//g;&lt;br /&gt;&lt;br /&gt;    # Some versions of the firmware don't have this prompt.&lt;br /&gt;    if (!$nopress{$version}) {&lt;br /&gt;        $session-&gt;waitfor('/Press any key to continue/');&lt;br /&gt;        $session-&gt;print("");&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    $session-&gt;waitfor('/Password: /');&lt;br /&gt;    $session-&gt;print($swpw);&lt;br /&gt;    &lt;br /&gt;    $session-&gt;waitfor('/'.$switch.'.*?# /');&lt;br /&gt;    &lt;br /&gt;    # Avoid the "more" prompt for long output.&lt;br /&gt;    @output = $session-&gt;cmd(String =&gt; "terminal length 1000");&lt;br /&gt;&lt;br /&gt;    # List the configuration to see what ports have loop-protect set.&lt;br /&gt;    @output = $session-&gt;cmd(String =&gt; "show running");&lt;br /&gt;    @output = grep(/loop-protect/, @output);&lt;br /&gt;    my $loop = join(", ", @output) || "";&lt;br /&gt;    $loop =~ s/[\r\n]//g;&lt;br /&gt;    $loop =~ s/loop-protect\s*//i;&lt;br /&gt;&lt;br /&gt;    # Check what ports are used for trunks.&lt;br /&gt;    @output = $session-&gt;cmd(String =&gt; "show trunks");&lt;br /&gt;    @output = grep(/Trk/, @output);&lt;br /&gt;    my $trunks = &lt;br /&gt;        join(" ", map { $_ =~ m/\s+(\d+)\s.*\s(Trk\d+)\s/ &amp;&amp; $1 } @output);&lt;br /&gt;&lt;br /&gt;    $session-&gt;close;&lt;br /&gt;    &lt;br /&gt;    return ($model, $version, $loop, $trunks);&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2717152688431579504-325527030661350682?l=enteringthefuture.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/EnteringTheFuture/~4/Of1PG0qefto" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://enteringthefuture.blogspot.com/feeds/325527030661350682/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2717152688431579504&amp;postID=325527030661350682" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2717152688431579504/posts/default/325527030661350682?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2717152688431579504/posts/default/325527030661350682?v=2" /><link rel="alternate" type="text/html" href="http://enteringthefuture.blogspot.com/2011/02/connecting-to-hp-procurve-switches-from.html" title="Connecting to HP ProCurve switches from Perl" /><author><name>Hans Persson</name><uri>http://www.blogger.com/profile/00056334737313092043</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://www.lysator.liu.se/~unicorn/images/hp-20030222-ja-medium.jpg" /></author><thr:total>1</thr:total></entry><entry gd:etag="W/&quot;A04NSX49eCp7ImA9WxBUFk4.&quot;"><id>tag:blogger.com,1999:blog-2717152688431579504.post-3617063009094169524</id><published>2009-10-15T18:00:00.011+02:00</published><updated>2010-03-03T19:13:18.060+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-03-03T19:13:18.060+01:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="linux" /><category scheme="http://www.blogger.com/atom/ns#" term="acer" /><category scheme="http://www.blogger.com/atom/ns#" term="aspire" /><category scheme="http://www.blogger.com/atom/ns#" term="ubuntu" /><title>Acer Aspire One and Ubuntu Linux</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_2uxFDIrDoag/StdQon6ijRI/AAAAAAAABAM/GDt2ingimQI/s1600-h/aspire.jpg"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;width: 200px; height: 156px;" src="http://2.bp.blogspot.com/_2uxFDIrDoag/StdQon6ijRI/AAAAAAAABAM/GDt2ingimQI/s200/aspire.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5392867737638964498" /&gt;&lt;/a&gt;I just bought an Acer Aspire One Pro A531H N270 netbook and immediately went on to install Ubuntu Linux (Jaunty Jackalope) on it (while keeping the original Windows XP installation available through dual boot). On the whole this was painless but there are a couple of snags.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Installation:&lt;/b&gt; I used the &lt;a href="http://unetbootin.sourceforge.net/"&gt;UNetbootin&lt;/a&gt; tool to create a bootable SD card to perform the installation, and this was painless. Normally I install from CD, but since the Aspire doesn't have one and I don't own a USB one, this was not an option.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Screen:&lt;/b&gt; Crisp and sharp, and with the right resolution immediately.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Webcam:&lt;/b&gt; Works fine out of the box. However, getting the microphone to work seems to &lt;a href="https://help.ubuntu.com/community/AspireOne"&gt;require some manual installation&lt;/a&gt; that I haven't bothered with yet since I don't normally use my computers for anything that requires a microphone. &lt;b&gt;Update:&lt;/b&gt; After upgrading to 9.10, the microphone works without any special tricks.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Sound:&lt;/b&gt; Works fine, but I wouldn't mind the volume going a bit higher. &lt;b&gt;Update:&lt;/b&gt; It would be nice with a hardware volume control. &lt;br /&gt;&lt;br /&gt;&lt;b&gt;Network:&lt;/b&gt; The wired network worked fine immediately. The wireless didn't, but the instructions in &lt;a href="http://ubuntuforums.org/showpost.php?p=7615508&amp;postcount=2"&gt;this post&lt;/a&gt; fixed it, and I have since then had no problems with it.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;SD card reader:&lt;/b&gt; There are two. The left one works fine, detecting cards inserted on the fly. I haven't tried the right-hand one.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Touchpad:&lt;/b&gt; Works fine. Ubuntu had sideways scrolling disabled by default, but that's just a matter of changing a checkbox in the settings.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;External display:&lt;/b&gt; I haven't tried this connection yet. &lt;b&gt;Update:&lt;/b&gt; I've tried once to get it to work and failed using Ubuntu 9.04. After a reboot to Windows XP it worked fine, so it seems like a software issue. Pressing Fn-F5 in Ubuntu did nothing at all.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Suspend:&lt;/b&gt; Works fine.&lt;br /&gt;&lt;br /&gt;I've only used this machine for a few hours yet, but so far it feels nice and I don't have any real quibbles about it. &lt;b&gt;Update:&lt;/b&gt; A few months later, and I'm still happy with the machine.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Update:&lt;/b&gt; The update to Ubuntu Karmic Koala was painless.&lt;br /&gt;&lt;br /&gt;&lt;small&gt;Andra bloggar om: &lt;a href="http://bloggar.se/om/acer" rel="tag"&gt;acer&lt;/a&gt;, &lt;a href="http://bloggar.se/om/aspire" rel="tag"&gt;aspire&lt;/a&gt;, &lt;a href="http://bloggar.se/om/ubuntu" rel="tag"&gt;ubuntu&lt;/a&gt;, &lt;a href="http://bloggar.se/om/linux" rel="tag"&gt;linux&lt;/a&gt;&lt;br/&gt;&lt;img id="image329" src="http://familjen-persson.se/bilder/ikoner/technorati.gif" alt="Technorati" /&gt; Technorati tags: &lt;a href="http://www.technorati.com/tags/acer" rel="tag"&gt;acer&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/aspire" rel="tag"&gt;aspire&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/ubuntu" rel="tag"&gt;ubuntu&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/linux" rel="tag"&gt;linux&lt;/a&gt;&lt;br/&gt;&lt;a href="http://intressant.se/intressant/"&gt;intressant.se&lt;/a&gt;&lt;/small&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2717152688431579504-3617063009094169524?l=enteringthefuture.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/EnteringTheFuture/~4/d13s0dxzRGo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://enteringthefuture.blogspot.com/feeds/3617063009094169524/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2717152688431579504&amp;postID=3617063009094169524" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2717152688431579504/posts/default/3617063009094169524?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2717152688431579504/posts/default/3617063009094169524?v=2" /><link rel="alternate" type="text/html" href="http://enteringthefuture.blogspot.com/2009/10/acer-aspire-one-and-ubuntu-linux.html" title="Acer Aspire One and Ubuntu Linux" /><author><name>Hans Persson</name><uri>http://www.blogger.com/profile/00056334737313092043</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://www.lysator.liu.se/~unicorn/images/hp-20030222-ja-medium.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_2uxFDIrDoag/StdQon6ijRI/AAAAAAAABAM/GDt2ingimQI/s72-c/aspire.jpg" height="72" width="72" /><thr:total>1</thr:total></entry><entry gd:etag="W/&quot;DEcFR384eSp7ImA9WxVSEkg.&quot;"><id>tag:blogger.com,1999:blog-2717152688431579504.post-2792470966880978809</id><published>2009-01-06T16:09:00.004+01:00</published><updated>2009-01-06T16:33:36.131+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-01-06T16:33:36.131+01:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="dual boot" /><category scheme="http://www.blogger.com/atom/ns#" term="satellite" /><category scheme="http://www.blogger.com/atom/ns#" term="linux" /><category scheme="http://www.blogger.com/atom/ns#" term="l300d 13j" /><category scheme="http://www.blogger.com/atom/ns#" term="vista" /><category scheme="http://www.blogger.com/atom/ns#" term="windows" /><category scheme="http://www.blogger.com/atom/ns#" term="intrepid" /><category scheme="http://www.blogger.com/atom/ns#" term="toshiba" /><category scheme="http://www.blogger.com/atom/ns#" term="ubuntu" /><title>Dual booting Ubuntu Linux and Windows Vista on a Toshiba Satellite L300D 13J</title><content type="html">&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_2uxFDIrDoag/SWN0rLvl9eI/AAAAAAAAA2A/BWohOAPIHtM/s1600-h/SatelliteL300.jpg"&gt;&lt;img style="float:right; margin:0 0 10px 10px;cursor:pointer; cursor:hand;width: 140px; height: 140px;" src="http://3.bp.blogspot.com/_2uxFDIrDoag/SWN0rLvl9eI/AAAAAAAAA2A/BWohOAPIHtM/s200/SatelliteL300.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5288198672698701282" /&gt;&lt;/a&gt;For christmas last year we got ourselves a Toshiba Satellite L300D 13J laptop. The idea was mostly to get the kids off Camilla's company laptop. The reason I got this particular model was that it was available locally for a reasonable sum and filled the requirements we had, not that it was very much better than anything else. As far as I could tell, most of the machines in a given price bracket were pretty much the same.&lt;br /&gt;&lt;br /&gt;It turns out that it's impossible to get a laptop over the counter here without paying the Microsoft tax, and to make it worse you get stuck with Vista. Since our kids occasionally want to play Windows stuff I wanted to leave Vista on the machine, but still install &lt;a href="http://www.ubuntu.com/"&gt;Ubuntu Linux&lt;/a&gt; 8.10 (Intrepid Ibex) on it as well. I thought that this was something that about a million people would have done before so that information about how to do it would be all over the internet, but that turned out not to be so. One of the places I found that had something was &lt;a href="http://apcmag.com/how_to_dualboot_vista_with_linux_vista_installed_first.htm"&gt;this&lt;/a&gt;, but it wasn't very useful for me since it assumed that you had real Vista installation media.&lt;br /&gt;&lt;br /&gt;The machine we got was kind of preinstalled with Vista and we got no CD or DVD with the OS. Instead, when you first boot the machine, it performs various post-installation tasks and then offers to burn a restore DVD, so I let it do this.&lt;br /&gt;&lt;br /&gt;Since I now had a disk that could take me back to where I started, I felt a little braver. I put in a Ubuntu installation CD and booted from that. It booted happily and showed me the partitioning tool. This showed that the disk already had more than one partition. Apparently, about half the disk was used by some mystery partition that I assume is where the Vista installation came from. The other half of the disk contained the actual Vista installation and user files. Thus, a normal user will only get half the disk space they paid for. I didn't feel like messing too much with the partitioning, so I simply let Ubuntu shrink the Vista partition to about half its original size (i.e. a quarter of the total of the disk). I then proceeded to install Ubuntu on the new free disk space that I had just created. The installation process was totally painless.&lt;br /&gt;&lt;br /&gt;After finishing the Ubuntu installation, I rebooted to Vista. It said something about the system changing and then started something that looked like the same initialization process that happened the first time I started the machine. True enough, I had to redo all the settings I had done previously. Since I never created any files I don't know it it would have wiped those as well, but at least any settings seemed to be lost. It seems like a good idea to do this after a good backup or even better on an unused machine.&lt;br /&gt;&lt;br /&gt;Once Vista was happy again (including after a reboot), I restarted the machine again and started up Ubuntu. This also came up without any problems, including working wifi and webcam.&lt;br /&gt;&lt;br /&gt;&lt;small&gt;Andra bloggar om: &lt;a href="http://bloggar.se/om/ubuntu" rel="tag"&gt;ubuntu&lt;/a&gt;, &lt;a href="http://bloggar.se/om/linux" rel="tag"&gt;linux&lt;/a&gt;, &lt;a href="http://bloggar.se/om/windows" rel="tag"&gt;windows&lt;/a&gt;, &lt;a href="http://bloggar.se/om/vista" rel="tag"&gt;vista&lt;/a&gt;, &lt;a href="http://bloggar.se/om/dual+boot" rel="tag"&gt;dual boot&lt;/a&gt;, &lt;a href="http://bloggar.se/om/intrepid" rel="tag"&gt;intrepid&lt;/a&gt;, &lt;a href="http://bloggar.se/om/toshiba" rel="tag"&gt;toshiba&lt;/a&gt;, &lt;a href="http://bloggar.se/om/satellite" rel="tag"&gt;satellite&lt;/a&gt;, &lt;a href="http://bloggar.se/om/l300d+13j" rel="tag"&gt;l300d 13j&lt;/a&gt;&lt;br/&gt;&lt;img id="image329" src="http://familjen-persson.se/bilder/ikoner/technorati.gif" alt="Technorati" /&gt; Technorati tags: &lt;a href="http://www.technorati.com/tags/ubuntu" rel="tag"&gt;ubuntu&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/linux" rel="tag"&gt;linux&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/windows" rel="tag"&gt;windows&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/vista" rel="tag"&gt;vista&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/dual boot" rel="tag"&gt;dual boot&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/intrepid" rel="tag"&gt;intrepid&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/toshiba" rel="tag"&gt;toshiba&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/satellite" rel="tag"&gt;satellite&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/l300d 13j" rel="tag"&gt;l300d 13j&lt;/a&gt;&lt;br/&gt;&lt;a href="http://intressant.se/intressant/"&gt;intressant.se&lt;/a&gt;&lt;/small&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2717152688431579504-2792470966880978809?l=enteringthefuture.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/EnteringTheFuture/~4/kvA8RznjmKU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://enteringthefuture.blogspot.com/feeds/2792470966880978809/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2717152688431579504&amp;postID=2792470966880978809" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2717152688431579504/posts/default/2792470966880978809?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2717152688431579504/posts/default/2792470966880978809?v=2" /><link rel="alternate" type="text/html" href="http://enteringthefuture.blogspot.com/2009/01/dual-booting-ubuntu-linux-and-windows.html" title="Dual booting Ubuntu Linux and Windows Vista on a Toshiba Satellite L300D 13J" /><author><name>Hans Persson</name><uri>http://www.blogger.com/profile/00056334737313092043</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://www.lysator.liu.se/~unicorn/images/hp-20030222-ja-medium.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_2uxFDIrDoag/SWN0rLvl9eI/AAAAAAAAA2A/BWohOAPIHtM/s72-c/SatelliteL300.jpg" height="72" width="72" /><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;A0UBSH07cSp7ImA9WxZWEk4.&quot;"><id>tag:blogger.com,1999:blog-2717152688431579504.post-5512824549328945708</id><published>2008-03-11T13:15:00.004+01:00</published><updated>2008-03-11T13:40:59.309+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-03-11T13:40:59.309+01:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="mobile" /><category scheme="http://www.blogger.com/atom/ns#" term="hotspots" /><category scheme="http://www.blogger.com/atom/ns#" term="ericsson" /><category scheme="http://www.blogger.com/atom/ns#" term="broadband" /><category scheme="http://www.blogger.com/atom/ns#" term="fon" /><category scheme="http://www.blogger.com/atom/ns#" term="wireless" /><category scheme="http://www.blogger.com/atom/ns#" term="wifi" /><category scheme="http://www.blogger.com/atom/ns#" term="johan bergendahl" /><title>Wireless hotspots: hot or not?</title><content type="html">Ericsson's marketing manager Johan Bergendahl &lt;a href="http://www.idg.se/2.1085/1.149788"&gt;predicts&lt;/a&gt; &lt;a href="http://computersweden.idg.se/2.2683/1.149788"&gt;that&lt;/a&gt; wireless hotspots will be the telephone booths of the broadband age, i.e. something that will soon be hard to find. Instead he believes in mobile broadband.&lt;br /&gt;&lt;br /&gt;For those that need access to broadband absolutely anywhere there isn't much to choose from apart from telephony-based broadband. I think, however, that wireless hotspots will be around for a long time yet.&lt;br /&gt;&lt;br /&gt;The important difference, and the reason that Ericsson have the opinion that they do, is that mobile broadband always costs money for the one using it. A wireless hotspot doesn't have to be free either, but it can be. My take on this is that it will be more and more common for stores, cafes, malls and other places that people come to will offer wireless connections to everyone in range. I would be surprised if it isn't soon considered rude if a store &lt;i&gt;doesn't&lt;/i&gt; offer network connectivity to people in it. Likewise, services like &lt;a href="http://www.fon.com/en/"&gt;Fon&lt;/a&gt; will offer wireless connectivity to people in exchange for them offering their own connectivity to others.&lt;br /&gt;&lt;br /&gt;&lt;small&gt;Andra bloggar om: &lt;a href="http://bloggar.se/om/ericsson" rel="tag"&gt;ericsson&lt;/a&gt;, &lt;a href="http://bloggar.se/om/johan+bergendahl" rel="tag"&gt;johan bergendahl&lt;/a&gt;, &lt;a href="http://bloggar.se/om/mobile" rel="tag"&gt;mobile&lt;/a&gt;, &lt;a href="http://bloggar.se/om/broadband" rel="tag"&gt;broadband&lt;/a&gt;, &lt;a href="http://bloggar.se/om/wireless" rel="tag"&gt;wireless&lt;/a&gt;, &lt;a href="http://bloggar.se/om/hotspots" rel="tag"&gt;hotspots&lt;/a&gt;, &lt;a href="http://bloggar.se/om/wifi" rel="tag"&gt;wifi&lt;/a&gt;, &lt;a href="http://bloggar.se/om/fon" rel="tag"&gt;fon&lt;/a&gt;&lt;br/&gt;&lt;img id="image329" src="http://familjen-persson.se/bilder/ikoner/technorati.gif" alt="Technorati" /&gt; Technorati tags: &lt;a href="http://www.technorati.com/tags/ericsson" rel="tag"&gt;ericsson&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/johan bergendahl" rel="tag"&gt;johan bergendahl&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/mobile" rel="tag"&gt;mobile&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/broadband" rel="tag"&gt;broadband&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/wireless" rel="tag"&gt;wireless&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/hotspots" rel="tag"&gt;hotspots&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/wifi" rel="tag"&gt;wifi&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/fon" rel="tag"&gt;fon&lt;/a&gt;&lt;br/&gt;&lt;a href="http://intressant.se/intressant/"&gt;intressant.se&lt;/a&gt;&lt;/small&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2717152688431579504-5512824549328945708?l=enteringthefuture.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/EnteringTheFuture/~4/h1nDaQU1Pbw" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://enteringthefuture.blogspot.com/feeds/5512824549328945708/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2717152688431579504&amp;postID=5512824549328945708" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2717152688431579504/posts/default/5512824549328945708?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2717152688431579504/posts/default/5512824549328945708?v=2" /><link rel="alternate" type="text/html" href="http://enteringthefuture.blogspot.com/2008/03/wireless-hotspots-hot-or-not.html" title="Wireless hotspots: hot or not?" /><author><name>Hans Persson</name><uri>http://www.blogger.com/profile/00056334737313092043</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://www.lysator.liu.se/~unicorn/images/hp-20030222-ja-medium.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;CEcARnsycSp7ImA9WB9QEU4.&quot;"><id>tag:blogger.com,1999:blog-2717152688431579504.post-5566220316512718978</id><published>2007-10-23T11:19:00.000+02:00</published><updated>2007-10-23T11:34:07.599+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-10-23T11:34:07.599+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="drm" /><category scheme="http://www.blogger.com/atom/ns#" term="piracy" /><category scheme="http://www.blogger.com/atom/ns#" term="marketing" /><category scheme="http://www.blogger.com/atom/ns#" term="mp3" /><category scheme="http://www.blogger.com/atom/ns#" term="music" /><title>How not to sell music</title><content type="html">Once again, the music industry &lt;a href="http://www.dn.se/DNet/jsp/polopoly.jsp?d=678&amp;a=707737&amp;rss=1399"&gt;demonstrates&lt;/a&gt; that it has no clue what to do when it comes to handling digital music. They are now selling music on USB sticks instead of as CDs, hoping to replace the ailing single format. To do this, they are replacing a £2.99 format with a £4.99 format. If this would work, it would mean that customer would be swimming in USB-sticks with no apparent use, since the music would be transfered to a storage disk for easy access as soon as you bring it home, just like a CD gets ripped once and then archived in the basement. &lt;br /&gt;&lt;br /&gt;Not only is it idiotic from an environment to make customers buy electronics they don't need more than once, it is also idiotic from the music industry's survival perspectice to try to replace a dying format with another one that is more expensive. &lt;br /&gt;&lt;br /&gt;A digital music track costs next to nothing to store since they are only bits on a disk. Customers expect the price for digital music to be significantly lower than the old formats where records had to be pressed, covers printed, albums distributed, store inventory kept, and so on. Today, the only thing that is needed to market music is a web site where you can buy mp3s online, and the costs for "producing" an mp3 like this are of course infinitesimal compared to old-style records. The natural thing would be for prices to reflect this. If they don't, customers will move over to getting their music via illegal downloads which are already easily available and cheap. It's as simple as that. The music industry has to add value to an existing service that is free. The only way I can see that happening is for them to drop prices to about $1/album or $.1/track and providing fast, rock-solid downloads with no customer-unfriendly DRM. &lt;br /&gt;&lt;br /&gt;&lt;small&gt;Andra bloggar om: &lt;a href="http://bloggar.se/om/music" rel="tag"&gt;music&lt;/a&gt;, &lt;a href="http://bloggar.se/om/marketing" rel="tag"&gt;marketing&lt;/a&gt;, &lt;a href="http://bloggar.se/om/piracy" rel="tag"&gt;piracy&lt;/a&gt;, &lt;a href="http://bloggar.se/om/drm" rel="tag"&gt;drm&lt;/a&gt;, &lt;a href="http://bloggar.se/om/mp3" rel="tag"&gt;mp3&lt;/a&gt;&lt;br/&gt;&lt;img id="image329" src="http://freehogg.wordpress.com/files/2006/04/technorati.gif" alt="Technorati" /&gt; Technorati tags: &lt;a href="http://www.technorati.com/tags/music" rel="tag"&gt;music&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/marketing" rel="tag"&gt;marketing&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/piracy" rel="tag"&gt;piracy&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/drm" rel="tag"&gt;drm&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/mp3" rel="tag"&gt;mp3&lt;/a&gt;&lt;/small&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2717152688431579504-5566220316512718978?l=enteringthefuture.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/EnteringTheFuture/~4/6YvuJ5J2nQU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://enteringthefuture.blogspot.com/feeds/5566220316512718978/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2717152688431579504&amp;postID=5566220316512718978" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2717152688431579504/posts/default/5566220316512718978?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2717152688431579504/posts/default/5566220316512718978?v=2" /><link rel="alternate" type="text/html" href="http://enteringthefuture.blogspot.com/2007/10/how-not-to-sell-music.html" title="How not to sell music" /><author><name>Hans Persson</name><uri>http://www.blogger.com/profile/00056334737313092043</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://www.lysator.liu.se/~unicorn/images/hp-20030222-ja-medium.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;C08ERHk7eCp7ImA9WB5bFEs.&quot;"><id>tag:blogger.com,1999:blog-2717152688431579504.post-5457701617057184795</id><published>2007-08-30T09:27:00.000+02:00</published><updated>2007-08-30T10:16:45.700+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-08-30T10:16:45.700+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="parlano" /><category scheme="http://www.blogger.com/atom/ns#" term="aol" /><category scheme="http://www.blogger.com/atom/ns#" term="msn" /><category scheme="http://www.blogger.com/atom/ns#" term="aim" /><category scheme="http://www.blogger.com/atom/ns#" term="im" /><category scheme="http://www.blogger.com/atom/ns#" term="icq" /><category scheme="http://www.blogger.com/atom/ns#" term="lcs" /><category scheme="http://www.blogger.com/atom/ns#" term="ocs" /><category scheme="http://www.blogger.com/atom/ns#" term="sip" /><category scheme="http://www.blogger.com/atom/ns#" term="yahoo" /><category scheme="http://www.blogger.com/atom/ns#" term="simple" /><category scheme="http://www.blogger.com/atom/ns#" term="chat" /><category scheme="http://www.blogger.com/atom/ns#" term="microsoft" /><category scheme="http://www.blogger.com/atom/ns#" term="instant messaging" /><title>Microsoft buys persistent IMs</title><content type="html">Microsoft &lt;a href="http://computersweden.idg.se/2.2683/1.118522"&gt;has&lt;/a&gt; &lt;a href="http://www.idg.se/2.1085/1.118522"&gt;acquired&lt;/a&gt; a company called &lt;a href="http://www.parlano.com/"&gt;Parlano&lt;/a&gt; which creates whan they call a persistent chat. For some time now, Microsoft has produced Office Communications Server (previously known as Live Communications Server, LCS). This is a &lt;a href="http://en.wikipedia.org/wiki/SIP"&gt;SIP&lt;/a&gt;-based system that allows users to (among other things) send IMs to each other, just like can be done using for instance MSN or ICQ. Indeed, the OCS/LCS client can also talk to MSN servers.&lt;br /&gt;&lt;br /&gt;The SIP protocol allows both person-to-person communication and conferencing. I'm not sure whether OCS/LCS actually supports IM conferencing (what most people would call a chat room), but there are no technical obstacles.&lt;br /&gt;&lt;br /&gt;What Parlano makes is a system that allows people who have been offline to read up on a conversation when they reconnect. You know, the kind of thing that &lt;a href="http://www.icq.com/"&gt;ICQ&lt;/a&gt; users take for granted. The difference is that the Parlano system handles multi-person chats, and also that it handles multiple protocols. According to a &lt;a href="http://www.parlano.com/asp/products/mindalign_mobile.asp"&gt;Parlano product page&lt;/a&gt;, apart from LCS it will also handle AOL, Yahoo, and MSN. I can't find any mentions of SIP on the Parlano page, so I don't know whether their system uses that or some other homebrew solution to talk to LCS. Since this is Microsoft, I wouldn't be surprised if this was a non-standards-based solution. Rather the opposite, actually.&lt;br /&gt;&lt;br /&gt;&lt;small&gt;Andra bloggar om: &lt;a href="http://bloggar.se/om/microsoft" rel="tag"&gt;microsoft&lt;/a&gt;, &lt;a href="http://bloggar.se/om/parlano" rel="tag"&gt;parlano&lt;/a&gt;, &lt;a href="http://bloggar.se/om/im" rel="tag"&gt;im&lt;/a&gt;, &lt;a href="http://bloggar.se/om/sip" rel="tag"&gt;sip&lt;/a&gt;, &lt;a href="http://bloggar.se/om/chat" rel="tag"&gt;chat&lt;/a&gt;, &lt;a href="http://bloggar.se/om/ocs" rel="tag"&gt;ocs&lt;/a&gt;, &lt;a href="http://bloggar.se/om/lcs" rel="tag"&gt;lcs&lt;/a&gt;, &lt;a href="http://bloggar.se/om/msn" rel="tag"&gt;msn&lt;/a&gt;, &lt;a href="http://bloggar.se/om/icq" rel="tag"&gt;icq&lt;/a&gt;, &lt;a href="http://bloggar.se/om/yahoo" rel="tag"&gt;yahoo&lt;/a&gt;, &lt;a href="http://bloggar.se/om/aol" rel="tag"&gt;aol&lt;/a&gt;, &lt;a href="http://bloggar.se/om/aim" rel="tag"&gt;aim&lt;/a&gt;, &lt;a href="http://bloggar.se/om/simple" rel="tag"&gt;simple&lt;/a&gt;, &lt;a href="http://bloggar.se/om/instant+messaging" rel="tag"&gt;instant messaging&lt;/a&gt;&lt;br/&gt;&lt;img id="image329" src="http://freehogg.wordpress.com/files/2006/04/technorati.gif" alt="Technorati" /&gt; Technorati tags: &lt;a href="http://www.technorati.com/tags/microsoft" rel="tag"&gt;microsoft&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/parlano" rel="tag"&gt;parlano&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/im" rel="tag"&gt;im&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/sip" rel="tag"&gt;sip&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/chat" rel="tag"&gt;chat&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/ocs" rel="tag"&gt;ocs&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/lcs" rel="tag"&gt;lcs&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/msn" rel="tag"&gt;msn&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/icq" rel="tag"&gt;icq&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/yahoo" rel="tag"&gt;yahoo&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/aol" rel="tag"&gt;aol&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/aim" rel="tag"&gt;aim&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/simple" rel="tag"&gt;simple&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/instant messaging" rel="tag"&gt;instant messaging&lt;/a&gt;&lt;/small&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2717152688431579504-5457701617057184795?l=enteringthefuture.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/EnteringTheFuture/~4/ZUTm2T21Tbg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://enteringthefuture.blogspot.com/feeds/5457701617057184795/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2717152688431579504&amp;postID=5457701617057184795" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2717152688431579504/posts/default/5457701617057184795?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2717152688431579504/posts/default/5457701617057184795?v=2" /><link rel="alternate" type="text/html" href="http://enteringthefuture.blogspot.com/2007/08/microsoft-buys-persistent-ims.html" title="Microsoft buys persistent IMs" /><author><name>Hans Persson</name><uri>http://www.blogger.com/profile/00056334737313092043</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://www.lysator.liu.se/~unicorn/images/hp-20030222-ja-medium.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;CU4FQX49eyp7ImA9WB5bEk8.&quot;"><id>tag:blogger.com,1999:blog-2717152688431579504.post-4067012772500144752</id><published>2007-08-27T15:50:00.000+02:00</published><updated>2007-08-27T16:11:50.063+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-08-27T16:11:50.063+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="atx" /><category scheme="http://www.blogger.com/atom/ns#" term="computers" /><category scheme="http://www.blogger.com/atom/ns#" term="hardware" /><category scheme="http://www.blogger.com/atom/ns#" term="power supply" /><title>The insanity of ATX power supplies</title><content type="html">On Friday, the power supply for my work station gave up with a fizzle. This morning, a new power supply was delivered to me and I started mounting it. Doing anything hardware-related in a modern PC is painful, but this seemed unusually stupid.&lt;br /&gt;&lt;br /&gt;The power supply in itself is mounted in the chassis with four screws, all of them easily accessible from the back of the computer. So far, so good. In the other end of the power supply, inside the computer, a tangled octopus of cables sprouts. Most of them are equipped with multiple connectors along the length of the cable. Lots of these cables are strapped to the chassis in hard-to-reach places or pulled through tiny holes that are hard to reach, and that force you to wiggle those damn connectors long and well before being able to pry the cables out.&lt;br /&gt;&lt;br /&gt;One good thing should be noted: all the cables have different connectors that can't be forced into the wrong socket, and the connectors are not symmetrical to the only way the connectors fit is the right way.&lt;br /&gt;&lt;br /&gt;A bad thing was that it wasn't possible to get the old power supply out or the new one in without using force to bend a couple of the petals of the huge cooler thingy that is attached to the CPU.&lt;br /&gt;&lt;br /&gt;The old power supply has the following stuff coming out of it:&lt;ul&gt;&lt;br /&gt;&lt;li&gt;Big cable for the motherboard.&lt;br /&gt;&lt;li&gt;Smallish cable also for the motherboard, but in a different place.&lt;br /&gt;&lt;li&gt;Another pretty big cable that I don't know what it's for.&lt;br /&gt;&lt;li&gt;Very small cable which is actually labled(!): "PSU FAN MONITER CONNECTOR" (sic!).&lt;br /&gt;&lt;li&gt;Cable with two SATA disk power connectors.&lt;br /&gt;&lt;li&gt;Cable with two regular hard disk power connectors.&lt;br /&gt;&lt;li&gt;Cable with two regular hard disk power connectors and a floppy power connector.&lt;br /&gt;&lt;li&gt;Cable with three regular hard disk power connectors and a floppy power connector.&lt;br /&gt;&lt;li&gt;Cable with two regular hard disk power connectors, but labeled "FAN ONLY".&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;Not surprisingly, my work station does not actually have nine hard disks or other media devices, and neither does it have two floppy drives. There are several meters of cables here that won't ever be used.&lt;br /&gt;&lt;br /&gt;I wonder how long it will be until someone comes up with the idea that a power supply only needs one cable, connected to the chassis. The cables can then be integrated in the chassis, with small cables sticking out in drive bays, close to the motherboard power connector, etc. Having to subdue an octopus just to exchange a computer component feels unneccessary.&lt;br /&gt;&lt;br /&gt;&lt;small&gt;Andra bloggar om: &lt;a href="http://bloggar.se/om/computers" rel="tag"&gt;computers&lt;/a&gt;, &lt;a href="http://bloggar.se/om/hardware" rel="tag"&gt;hardware&lt;/a&gt;, &lt;a href="http://bloggar.se/om/atx" rel="tag"&gt;atx&lt;/a&gt;, &lt;a href="http://bloggar.se/om/power+supply" rel="tag"&gt;power supply&lt;/a&gt;&lt;br/&gt;&lt;img id="image329" src="http://freehogg.wordpress.com/files/2006/04/technorati.gif" alt="Technorati" /&gt; Technorati tags: &lt;a href="http://www.technorati.com/tags/computers" rel="tag"&gt;computers&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/hardware" rel="tag"&gt;hardware&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/atx" rel="tag"&gt;atx&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/power supply" rel="tag"&gt;power supply&lt;/a&gt;&lt;/small&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2717152688431579504-4067012772500144752?l=enteringthefuture.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/EnteringTheFuture/~4/0V2G3Doy_rw" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://enteringthefuture.blogspot.com/feeds/4067012772500144752/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2717152688431579504&amp;postID=4067012772500144752" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2717152688431579504/posts/default/4067012772500144752?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2717152688431579504/posts/default/4067012772500144752?v=2" /><link rel="alternate" type="text/html" href="http://enteringthefuture.blogspot.com/2007/08/insanity-of-atx-power-supplies.html" title="The insanity of ATX power supplies" /><author><name>Hans Persson</name><uri>http://www.blogger.com/profile/00056334737313092043</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://www.lysator.liu.se/~unicorn/images/hp-20030222-ja-medium.jpg" /></author><thr:total>1</thr:total></entry><entry gd:etag="W/&quot;CUICRng6fip7ImA9WB5UEE0.&quot;"><id>tag:blogger.com,1999:blog-2717152688431579504.post-7012650622716645596</id><published>2007-08-13T12:48:00.000+02:00</published><updated>2007-08-13T13:12:47.616+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-08-13T13:12:47.616+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="drm" /><category scheme="http://www.blogger.com/atom/ns#" term="downloading" /><category scheme="http://www.blogger.com/atom/ns#" term="fredrik reinfeld" /><category scheme="http://www.blogger.com/atom/ns#" term="musik" /><category scheme="http://www.blogger.com/atom/ns#" term="moderaterna" /><category scheme="http://www.blogger.com/atom/ns#" term="fildelning" /><category scheme="http://www.blogger.com/atom/ns#" term="karl sigfrid" /><category scheme="http://www.blogger.com/atom/ns#" term="copying" /><category scheme="http://www.blogger.com/atom/ns#" term="copyright" /><category scheme="http://www.blogger.com/atom/ns#" term="eu" /><category scheme="http://www.blogger.com/atom/ns#" term="piracy" /><category scheme="http://www.blogger.com/atom/ns#" term="the pirate bay" /><category scheme="http://www.blogger.com/atom/ns#" term="music" /><category scheme="http://www.blogger.com/atom/ns#" term="nedladdning" /><category scheme="http://www.blogger.com/atom/ns#" term="politics" /><title>Music downloading is here to stay</title><content type="html">According to a &lt;a href="http://computersweden.idg.se/2.2683/1.115249"&gt;new survey&lt;/a&gt;, pirating is up in Sweden. 43% now claim to have downloaded music illegally, up from 36% last year. One of the most common reasons given for people downloading music illegally instead of buying it online is said to be DRM.&lt;br /&gt;&lt;br /&gt;Meanwhile, Karl Sigfrid (a member of parliament for right-wing party Moderaterna) &lt;a href="http://computersweden.idg.se/2.2683/1.115819"&gt;has&lt;/a&gt; &lt;a href="http://www.dn.se/DNet/jsp/polopoly.jsp?d=572&amp;a=678598"&gt;asked&lt;/a&gt; prime minister Fredrik Reinfeldt (also from Moderaterna) why the party is not adhering to its election-time promise of not hounding down an entire generation for copying. Neither the prime minister nor the minister of justice has deigned to comment. &lt;br /&gt;&lt;br /&gt;The background to all this a proposed law that would require ISPs to give out personal data about downloaders. Sigfrid claims that Reinfeldt can't support this, since that would contradict his statements before the election. The EU's general lawyer has stated that ISPs don't need to give out this information unless local law requires them to, so there is nothing in the EU body of law that requires this change.&lt;br /&gt;&lt;br /&gt;Sigfrid compares the police bust of &lt;a href="http://thepiratebay.org/"&gt;The Pirate Bay&lt;/a&gt; with the copying of cassette tapes that was widespread 20 years ago, when double tape recorders were common. At that time, no one tried to make the police stop Sony from making double tape recorders. Today, only a few people are protesting when the police do exactly that; stop The Pirate Bay from providing tools for copying music. In both cases, music copying is wide-spread. The difference is in the reactions from the music industry and how the government has reacted to music industry lobbying.&lt;br /&gt;&lt;br /&gt;Of course, there is no way back once the genie is out of the bottle. There is already a generation out there that are used to being able to download music from the net. They won't accept having that possibility taken away. They may accept having to pay for the service, as long as the service is better that copying, but downloading of music is here to stay. Music publishers will have to learn to live with that and make sure that their customers can buy their music in a simple, efficient, and DRM-free way. The alternative is illegal downloading, and that's free.&lt;br /&gt;&lt;br /&gt;&lt;small&gt;Andra bloggar om: &lt;a href="http://bloggar.se/om/music" rel="tag"&gt;music&lt;/a&gt;, &lt;a href="http://bloggar.se/om/musik" rel="tag"&gt;musik&lt;/a&gt;, &lt;a href="http://bloggar.se/om/downloading" rel="tag"&gt;downloading&lt;/a&gt;, &lt;a href="http://bloggar.se/om/copying" rel="tag"&gt;copying&lt;/a&gt;, &lt;a href="http://bloggar.se/om/piracy" rel="tag"&gt;piracy&lt;/a&gt;, &lt;a href="http://bloggar.se/om/copyright" rel="tag"&gt;copyright&lt;/a&gt;, &lt;a href="http://bloggar.se/om/nedladdning" rel="tag"&gt;nedladdning&lt;/a&gt;, &lt;a href="http://bloggar.se/om/fildelning" rel="tag"&gt;fildelning&lt;/a&gt;, &lt;a href="http://bloggar.se/om/the+pirate+bay" rel="tag"&gt;the pirate bay&lt;/a&gt;, &lt;a href="http://bloggar.se/om/eu" rel="tag"&gt;eu&lt;/a&gt;, &lt;a href="http://bloggar.se/om/moderaterna" rel="tag"&gt;moderaterna&lt;/a&gt;, &lt;a href="http://bloggar.se/om/karl+sigfrid" rel="tag"&gt;karl sigfrid&lt;/a&gt;, &lt;a href="http://bloggar.se/om/fredrik+reinfeld" rel="tag"&gt;fredrik reinfeld&lt;/a&gt;, &lt;a href="http://bloggar.se/om/politics" rel="tag"&gt;politics&lt;/a&gt;, &lt;a href="http://bloggar.se/om/drm" rel="tag"&gt;drm&lt;/a&gt;&lt;br/&gt;&lt;img id="image329" src="http://freehogg.wordpress.com/files/2006/04/technorati.gif" alt="Technorati" /&gt; Technorati tags: &lt;a href="http://www.technorati.com/tags/music" rel="tag"&gt;music&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/musik" rel="tag"&gt;musik&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/downloading" rel="tag"&gt;downloading&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/copying" rel="tag"&gt;copying&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/piracy" rel="tag"&gt;piracy&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/copyright" rel="tag"&gt;copyright&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/nedladdning" rel="tag"&gt;nedladdning&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/fildelning" rel="tag"&gt;fildelning&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/the pirate bay" rel="tag"&gt;the pirate bay&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/eu" rel="tag"&gt;eu&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/moderaterna" rel="tag"&gt;moderaterna&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/karl sigfrid" rel="tag"&gt;karl sigfrid&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/fredrik reinfeld" rel="tag"&gt;fredrik reinfeld&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/politics" rel="tag"&gt;politics&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/drm" rel="tag"&gt;drm&lt;/a&gt;&lt;/small&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2717152688431579504-7012650622716645596?l=enteringthefuture.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/EnteringTheFuture/~4/12YH-9iIfuE" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://enteringthefuture.blogspot.com/feeds/7012650622716645596/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2717152688431579504&amp;postID=7012650622716645596" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2717152688431579504/posts/default/7012650622716645596?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2717152688431579504/posts/default/7012650622716645596?v=2" /><link rel="alternate" type="text/html" href="http://enteringthefuture.blogspot.com/2007/08/music-downloading-is-here-to-stay.html" title="Music downloading is here to stay" /><author><name>Hans Persson</name><uri>http://www.blogger.com/profile/00056334737313092043</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://www.lysator.liu.se/~unicorn/images/hp-20030222-ja-medium.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;C08FSH8ycSp7ImA9WBFaGEk.&quot;"><id>tag:blogger.com,1999:blog-2717152688431579504.post-6611564732209186095</id><published>2007-05-22T15:12:00.000+02:00</published><updated>2007-05-22T15:50:19.199+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-05-22T15:50:19.199+02:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="copyright" /><category scheme="http://www.blogger.com/atom/ns#" term="image search" /><category scheme="http://www.blogger.com/atom/ns#" term="search" /><category scheme="http://www.blogger.com/atom/ns#" term="reform" /><category scheme="http://www.blogger.com/atom/ns#" term="orphan works" /><category scheme="http://www.blogger.com/atom/ns#" term="google" /><category scheme="http://www.blogger.com/atom/ns#" term="fair use" /><title>Google, fair use, and the future of copyright</title><content type="html">I'm happy to see that a court of appeals recently &lt;a href="http://feeds.feedburner.com/~r/boingboing/iBag/~3/117436232/imagesearch_isnt_a_c.html"&gt;ruled&lt;/a&gt; that Google's use of thumbnail images in its image search is not a copyright violation. A different ruling would have made it impossible to create an image search tool as we are already &lt;a href="http://images.google.com/images?hl=en&amp;q=entering+the+future&amp;btnG=Search+Images&amp;gbv=2"&gt;used to having it&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;I'm old enough on the internet to remember how the world wide web was like before Google, before Altavista, before Metacrawler. Finding something you didn't already know where it was located was basically impossible.You could stumble upon something useful by sheer dumb luck, just like clicking &lt;a href="http://www.blogger.com/next-blog?navBar=true"&gt;next blog&lt;/a&gt; on BlogSpot occasionally turns up something useful. The problem is that the chance of this being both useful and relevant to the problem at hand is infinitesimal at best. &lt;br /&gt;&lt;br /&gt;If the previous ruling had been allowed to stand we had probably been forced back to a world without image search (at least as the American search engines are concerned). As usual, it all comes down to copyright and fair use. To me, there's no question that it's fair use when Google displays a thumbnail an inch wide of a book cover scan found on another site or a photograph someone posted. In the case of the book cover scan, I can't see any problems with reposting a full-size scan either, since all that does is market the book anyway. There's still a somewhat sliding scale here. There are, for instance, lots of sites distributing clip art and icons. These are images that probably aren't even as large as Google's thumb nails to begin with. Is it still fair use to display them as search hits? My answer would be yes: both since this is still free marketing for whomever posted the images to begin with and since making special allowances for very small images would simply not be worth the trouble (so what's "very small", exactly?).&lt;br /&gt;&lt;br /&gt;I'm worried by the current trend curtailing fair use and increasing copyright reach. Personally, I'd like to see a reform that drastically shortens the length of copyright to a few years after publication. Even today, there are very few works that actually bring in any money after that time. By recognizing that, we would enrich the common culture available to everyone a lot without hurting short-term sales. I would also like to see blanket rules for "orphan works" (meaning works where the copyright holder can't be identified or located). It should be possible to reuse this kind of work without (as today), waiting until 70 years have passed after the author's death (or, for anonymous works, after publication).&lt;br /&gt;&lt;br /&gt;&lt;small&gt;Andra bloggar om: &lt;a href="http://bloggar.se/om/image+search" rel="tag"&gt;image search&lt;/a&gt;, &lt;a href="http://bloggar.se/om/search" rel="tag"&gt;search&lt;/a&gt;, &lt;a href="http://bloggar.se/om/google" rel="tag"&gt;google&lt;/a&gt;, &lt;a href="http://bloggar.se/om/copyright" rel="tag"&gt;copyright&lt;/a&gt;, &lt;a href="http://bloggar.se/om/orphan+works" rel="tag"&gt;orphan works&lt;/a&gt;, &lt;a href="http://bloggar.se/om/fair+use" rel="tag"&gt;fair use&lt;/a&gt;, &lt;a href="http://bloggar.se/om/reform" rel="tag"&gt;reform&lt;/a&gt;&lt;br/&gt;&lt;img id="image329" src="http://freehogg.wordpress.com/files/2006/04/technorati.gif" alt="Technorati" /&gt; Technorati tags: &lt;a href="http://www.technorati.com/tags/image search" rel="tag"&gt;image search&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/search" rel="tag"&gt;search&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/google" rel="tag"&gt;google&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/copyright" rel="tag"&gt;copyright&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/orphan works" rel="tag"&gt;orphan works&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/fair use" rel="tag"&gt;fair use&lt;/a&gt;, &lt;a href="http://www.technorati.com/tags/reform" rel="tag"&gt;reform&lt;/a&gt;&lt;/small&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2717152688431579504-6611564732209186095?l=enteringthefuture.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/EnteringTheFuture/~4/H8uenRDn7Lc" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://enteringthefuture.blogspot.com/feeds/6611564732209186095/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2717152688431579504&amp;postID=6611564732209186095" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2717152688431579504/posts/default/6611564732209186095?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2717152688431579504/posts/default/6611564732209186095?v=2" /><link rel="alternate" type="text/html" href="http://enteringthefuture.blogspot.com/2007/05/google-fair-use-and-future-of-copyright.html" title="Google, fair use, and the future of copyright" /><author><name>Hans Persson</name><uri>http://www.blogger.com/profile/00056334737313092043</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://www.lysator.liu.se/~unicorn/images/hp-20030222-ja-medium.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;Ck8CSHk_eyp7ImA9WBFUFkw.&quot;"><id>tag:blogger.com,1999:blog-2717152688431579504.post-936044163480661627</id><published>2007-04-26T09:08:00.000+02:00</published><updated>2007-04-26T20:07:49.743+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2007-04-26T20:07:49.743+02:00</app:edited><title>So what's this here, then?</title><content type="html">I already have &lt;a href="http://pinkunicornblog.blogspot.com/"&gt;a blog&lt;/a&gt;, but it's mostly about books and furthermore it's in Swedish. I've now decided to try to keep my other blog somewhat more focused on books by at least keeping the computer stuff out of it by putting it here instead. &lt;br /&gt;&lt;br /&gt;I'll also take this opportunity to try my hand at blogging in English instead of Swedish. It will make my potential readership much larger, but of course it also increases the number of competitors I get.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2717152688431579504-936044163480661627?l=enteringthefuture.blogspot.com' alt='' /&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/EnteringTheFuture/~4/1uvFfvwfr30" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://enteringthefuture.blogspot.com/feeds/936044163480661627/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=2717152688431579504&amp;postID=936044163480661627" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2717152688431579504/posts/default/936044163480661627?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2717152688431579504/posts/default/936044163480661627?v=2" /><link rel="alternate" type="text/html" href="http://enteringthefuture.blogspot.com/2007/04/so-whats-this-here-then.html" title="So what's this here, then?" /><author><name>Hans Persson</name><uri>http://www.blogger.com/profile/00056334737313092043</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="25" height="32" src="http://www.lysator.liu.se/~unicorn/images/hp-20030222-ja-medium.jpg" /></author><thr:total>0</thr:total></entry></feed>

