mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
700 lines
38 KiB
HTML
700 lines
38 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>sjs: Getting to know Vista</title>
|
|
|
|
<link rel="openid.server" href="http://web.archive.org/web/20081121202139/http://www.myopenid.com/server" />
|
|
<link rel="openid.delegate" href="http://web.archive.org/web/20081121202139/http://sami-samhuri.myopenid.com/" />
|
|
<meta http-equiv="X-XRDS-Location" content="http://sami-samhuri.myopenid.com/xrds" />
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
<link rel="alternate" type="application/rss+xml" title="RSS" href="http://web.archive.org/web/20081121202139/http://feeds.feedburner.com/sjs" />
|
|
|
|
|
|
<script src="http://web.archive.org/web/20081121202139js_/http://sami.samhuri.net/javascripts/prototype.js" type="text/javascript"></script>
|
|
|
|
<link href="http://web.archive.org/web/20081121202139cs_/http://sami.samhuri.net/stylesheets/application.css" rel="stylesheet" type="text/css" />
|
|
</head>
|
|
<body>
|
|
<!-- BEGIN WAYBACK TOOLBAR INSERT -->
|
|
|
|
<script type="text/javascript" src="http://staticweb.archive.org/js/disclaim-element.js" ></script>
|
|
<script type="text/javascript" src="http://staticweb.archive.org/js/graph-calc.js" ></script>
|
|
<script type="text/javascript" src="http://staticweb.archive.org/jflot/jquery.min.js" ></script>
|
|
<script type="text/javascript">
|
|
//<![CDATA[
|
|
var firstDate = 820454400000;
|
|
var lastDate = 1325375999999;
|
|
var wbPrefix = "http://web.archive.org/web/";
|
|
var wbCurrentUrl = "http:\/\/sami.samhuri.net\/2007\/4\/17\/getting-to-know-vista";
|
|
|
|
var curYear = -1;
|
|
var curMonth = -1;
|
|
var yearCount = 16;
|
|
var firstYear = 1996;
|
|
var imgWidth=400;
|
|
var yearImgWidth = 25;
|
|
var monthImgWidth = 2;
|
|
var trackerVal = "none";
|
|
var displayDay = "21";
|
|
var displayMonth = "Nov";
|
|
var displayYear = "2008";
|
|
var prettyMonths = ["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];
|
|
|
|
function showTrackers(val) {
|
|
if(val == trackerVal) {
|
|
return;
|
|
}
|
|
if(val == "inline") {
|
|
document.getElementById("displayYearEl").style.color = "#ec008c";
|
|
document.getElementById("displayMonthEl").style.color = "#ec008c";
|
|
document.getElementById("displayDayEl").style.color = "#ec008c";
|
|
} else {
|
|
document.getElementById("displayYearEl").innerHTML = displayYear;
|
|
document.getElementById("displayYearEl").style.color = "#ff0";
|
|
document.getElementById("displayMonthEl").innerHTML = displayMonth;
|
|
document.getElementById("displayMonthEl").style.color = "#ff0";
|
|
document.getElementById("displayDayEl").innerHTML = displayDay;
|
|
document.getElementById("displayDayEl").style.color = "#ff0";
|
|
}
|
|
document.getElementById("wbMouseTrackYearImg").style.display = val;
|
|
document.getElementById("wbMouseTrackMonthImg").style.display = val;
|
|
trackerVal = val;
|
|
}
|
|
function getElementX2(obj) {
|
|
var thing = jQuery(obj);
|
|
if((thing == undefined)
|
|
|| (typeof thing == "undefined")
|
|
|| (typeof thing.offset == "undefined")) {
|
|
return getElementX(obj);
|
|
}
|
|
return Math.round(thing.offset().left);
|
|
}
|
|
function trackMouseMove(event,element) {
|
|
|
|
var eventX = getEventX(event);
|
|
var elementX = getElementX2(element);
|
|
var xOff = eventX - elementX;
|
|
if(xOff < 0) {
|
|
xOff = 0;
|
|
} else if(xOff > imgWidth) {
|
|
xOff = imgWidth;
|
|
}
|
|
var monthOff = xOff % yearImgWidth;
|
|
|
|
var year = Math.floor(xOff / yearImgWidth);
|
|
var yearStart = year * yearImgWidth;
|
|
var monthOfYear = Math.floor(monthOff / monthImgWidth);
|
|
if(monthOfYear > 11) {
|
|
monthOfYear = 11;
|
|
}
|
|
// 1 extra border pixel at the left edge of the year:
|
|
var month = (year * 12) + monthOfYear;
|
|
var day = 1;
|
|
if(monthOff % 2 == 1) {
|
|
day = 15;
|
|
}
|
|
var dateString =
|
|
zeroPad(year + firstYear) +
|
|
zeroPad(monthOfYear+1,2) +
|
|
zeroPad(day,2) + "000000";
|
|
|
|
var monthString = prettyMonths[monthOfYear];
|
|
document.getElementById("displayYearEl").innerHTML = year + 1996;
|
|
document.getElementById("displayMonthEl").innerHTML = monthString;
|
|
// looks too jarring when it changes..
|
|
//document.getElementById("displayDayEl").innerHTML = zeroPad(day,2);
|
|
|
|
var url = wbPrefix + dateString + '/' + wbCurrentUrl;
|
|
document.getElementById('wm-graph-anchor').href = url;
|
|
|
|
//document.getElementById("wmtbURL").value="evX("+eventX+") elX("+elementX+") xO("+xOff+") y("+year+") m("+month+") monthOff("+monthOff+") DS("+dateString+") Moy("+monthOfYear+") ms("+monthString+")";
|
|
if(curYear != year) {
|
|
var yrOff = year * yearImgWidth;
|
|
document.getElementById("wbMouseTrackYearImg").style.left = yrOff + "px";
|
|
curYear = year;
|
|
}
|
|
if(curMonth != month) {
|
|
var mtOff = year + (month * monthImgWidth) + 1;
|
|
document.getElementById("wbMouseTrackMonthImg").style.left = mtOff + "px";
|
|
curMonth = month;
|
|
}
|
|
}
|
|
//]]>
|
|
</script>
|
|
|
|
<style type="text/css">body{margin-top:0!important;padding-top:0!important;min-width:800px!important;}#wm-ipp a:hover{text-decoration:underline!important;}</style>
|
|
<div id="wm-ipp" style="display:none; position:relative;padding:0 5px;min-height:70px;min-width:800px; z-index:9000;">
|
|
<div id="wm-ipp-inside" style="position:fixed;padding:0!important;margin:0!important;width:97%;min-width:780px;border:5px solid #000;border-top:none;background-image:url(http://staticweb.archive.org/images/toolbar/wm_tb_bk_trns.png);text-align:center;-moz-box-shadow:1px 1px 3px #333;-webkit-box-shadow:1px 1px 3px #333;box-shadow:1px 1px 3px #333;font-size:11px!important;font-family:'Lucida Grande','Arial',sans-serif!important;">
|
|
<table style="border-collapse:collapse;margin:0;padding:0;width:100%;"><tbody><tr>
|
|
<td style="padding:10px;vertical-align:top;min-width:110px;">
|
|
<a href="http://wayback.archive.org/web/" title="Wayback Machine home page" style="background-color:transparent;border:none;"><img src="http://staticweb.archive.org/images/toolbar/wayback-toolbar-logo.png" alt="Wayback Machine" width="110" height="39" border="0"/></a>
|
|
</td>
|
|
<td style="padding:0!important;text-align:center;vertical-align:top;width:100%;">
|
|
|
|
<table style="border-collapse:collapse;margin:0 auto;padding:0;width:570px;"><tbody><tr>
|
|
<td style="padding:3px 0;" colspan="2">
|
|
<form target="_top" method="get" action="http://wayback.archive.org/web/form-submit.jsp" name="wmtb" id="wmtb" style="margin:0!important;padding:0!important;"><input type="text" name="url" id="wmtbURL" value="http://sami.samhuri.net/2007/4/17/getting-to-know-vista" style="width:400px;font-size:11px;font-family:'Lucida Grande','Arial',sans-serif;" onfocus="javascript:this.focus();this.select();" /><input type="hidden" name="type" value="replay" /><input type="hidden" name="date" value="20081121202139" /><input type="submit" value="Go" style="font-size:11px;font-family:'Lucida Grande','Arial',sans-serif;margin-left:5px;" /><span id="wm_tb_options" style="display:block;"></span></form>
|
|
</td>
|
|
<td style="vertical-align:bottom;padding:5px 0 0 0!important;" rowspan="2">
|
|
<table style="border-collapse:collapse;width:110px;color:#99a;font-family:'Helvetica','Lucida Grande','Arial',sans-serif;"><tbody>
|
|
|
|
<!-- NEXT/PREV MONTH NAV AND MONTH INDICATOR -->
|
|
<tr style="width:110px;height:16px;font-size:10px!important;">
|
|
<td style="padding-right:9px;font-size:11px!important;font-weight:bold;text-transform:uppercase;text-align:right;white-space:nowrap;overflow:visible;" nowrap="nowrap">
|
|
|
|
<a href="http://web.archive.org/web/20080305111128/http://sami.samhuri.net/2007/4/17/getting-to-know-vista" style="text-decoration:none;color:#33f;font-weight:bold;background-color:transparent;border:none;" title="5 Mar 2008"><strong>MAR</strong></a>
|
|
|
|
</td>
|
|
<td id="displayMonthEl" style="background:#000;color:#ff0;font-size:11px!important;font-weight:bold;text-transform:uppercase;width:34px;height:15px;padding-top:1px;text-align:center;" title="You are here: 20:21:39 Nov 21, 2008">NOV</td>
|
|
<td style="padding-left:9px;font-size:11px!important;font-weight:bold;text-transform:uppercase;white-space:nowrap;overflow:visible;" nowrap="nowrap">
|
|
|
|
Dec
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<!-- NEXT/PREV CAPTURE NAV AND DAY OF MONTH INDICATOR -->
|
|
<tr>
|
|
<td style="padding-right:9px;white-space:nowrap;overflow:visible;text-align:right!important;vertical-align:middle!important;" nowrap="nowrap">
|
|
|
|
<a href="http://web.archive.org/web/20080305111128/http://sami.samhuri.net/2007/4/17/getting-to-know-vista" title="11:11:28 Mar 5, 2008" style="background-color:transparent;border:none;"><img src="http://staticweb.archive.org/images/toolbar/wm_tb_prv_on.png" alt="Previous capture" width="14" height="16" border="0" /></a>
|
|
|
|
</td>
|
|
<td id="displayDayEl" style="background:#000;color:#ff0;width:34px;height:24px;padding:2px 0 0 0;text-align:center;font-size:24px;font-weight: bold;" title="You are here: 20:21:39 Nov 21, 2008">21</td>
|
|
<td style="padding-left:9px;white-space:nowrap;overflow:visible;text-align:left!important;vertical-align:middle!important;" nowrap="nowrap">
|
|
|
|
<img src="http://staticweb.archive.org/images/toolbar/wm_tb_nxt_off.png" alt="Next capture" width="14" height="16" border="0"/>
|
|
|
|
</td>
|
|
</tr>
|
|
|
|
<!-- NEXT/PREV YEAR NAV AND YEAR INDICATOR -->
|
|
<tr style="width:110px;height:13px;font-size:9px!important;">
|
|
<td style="padding-right:9px;font-size:11px!important;font-weight: bold;text-align:right;white-space:nowrap;overflow:visible;" nowrap="nowrap">
|
|
|
|
2007
|
|
|
|
</td>
|
|
<td id="displayYearEl" style="background:#000;color:#ff0;font-size:11px!important;font-weight: bold;padding-top:1px;width:34px;height:13px;text-align:center;" title="You are here: 20:21:39 Nov 21, 2008">2008</td>
|
|
<td style="padding-left:9px;font-size:11px!important;font-weight: bold;white-space:nowrap;overflow:visible;" nowrap="nowrap">
|
|
|
|
2009
|
|
|
|
</td>
|
|
</tr>
|
|
</tbody></table>
|
|
</td>
|
|
|
|
</tr>
|
|
<tr>
|
|
<td style="vertical-align:middle;padding:0!important;">
|
|
<a href="http://wayback.archive.org/web/20081121202139*/http://sami.samhuri.net/2007/4/17/getting-to-know-vista" style="color:#33f;font-size:11px;font-weight:bold;background-color:transparent;border:none;" title="See a list of every capture for this URL"><strong>3 captures</strong></a>
|
|
<div style="margin:0!important;padding:0!important;color:#666;font-size:9px;padding-top:2px!important;white-space:nowrap;" title="Timespan for captures of this URL">1 Jan 08 - 21 Nov 08</div>
|
|
</td>
|
|
<td style="padding:0!important;">
|
|
<a style="position:relative; white-space:nowrap; width:400px;height:27px;" href="" id="wm-graph-anchor">
|
|
<div id="wm-ipp-sparkline" style="position:relative; white-space:nowrap; width:400px;height:27px;background-color:#fff;cursor:pointer;border-right:1px solid #ccc;" title="Explore captures for this URL">
|
|
<img id="sparklineImgId" style="position:absolute; z-index:9012; top:0px; left:0px;"
|
|
onmouseover="showTrackers('inline');"
|
|
onmouseout="showTrackers('none');"
|
|
onmousemove="trackMouseMove(event,this)"
|
|
alt="sparklines"
|
|
width="400"
|
|
height="27"
|
|
border="0"
|
|
src="http://wayback.archive.org/jsp/graph.jsp?graphdata=400_27_1996:-1:000000000000_1997:-1:000000000000_1998:-1:000000000000_1999:-1:000000000000_2000:-1:000000000000_2001:-1:000000000000_2002:-1:000000000000_2003:-1:000000000000_2004:-1:000000000000_2005:-1:000000000000_2006:-1:000000000000_2007:-1:000000000000_2008:10:101000000010_2009:-1:000000000000_2010:-1:000000000000_2011:-1:000000000000"></img>
|
|
<img id="wbMouseTrackYearImg"
|
|
style="display:none; position:absolute; z-index:9010;"
|
|
width="25"
|
|
height="27"
|
|
border="0"
|
|
src="http://staticweb.archive.org/images/toolbar/transp-yellow-pixel.png"></img>
|
|
<img id="wbMouseTrackMonthImg"
|
|
style="display:none; position:absolute; z-index:9011; "
|
|
width="2"
|
|
height="27"
|
|
border="0"
|
|
src="http://staticweb.archive.org/images/toolbar/transp-red-pixel.png"></img>
|
|
</div>
|
|
</a>
|
|
|
|
</td>
|
|
</tr></tbody></table>
|
|
</td>
|
|
<td style="text-align:right;padding:5px;width:65px;font-size:11px!important;">
|
|
<a href="javascript:;" onclick="document.getElementById('wm-ipp').style.display='none';" style="display:block;padding-right:18px;background:url(http://staticweb.archive.org/images/toolbar/wm_tb_close.png) no-repeat 100% 0;color:#33f;font-family:'Lucida Grande','Arial',sans-serif;margin-bottom:23px;background-color:transparent;border:none;" title="Close the toolbar">Close</a>
|
|
<a href="http://faq.web.archive.org/" style="display:block;padding-right:18px;background:url(http://staticweb.archive.org/images/toolbar/wm_tb_help.png) no-repeat 100% 0;color:#33f;font-family:'Lucida Grande','Arial',sans-serif;background-color:transparent;border:none;" title="Get some help using the Wayback Machine">Help</a>
|
|
</td>
|
|
</tr></tbody></table>
|
|
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript">
|
|
var wmDisclaimBanner = document.getElementById("wm-ipp");
|
|
if(wmDisclaimBanner != null) {
|
|
disclaimElement(wmDisclaimBanner);
|
|
}
|
|
</script>
|
|
<!-- END WAYBACK TOOLBAR INSERT -->
|
|
|
|
<div id="container">
|
|
<div id="header">
|
|
<h1><span><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/">sjs</a></span></h1>
|
|
<h2>geeky ramblings</h2>
|
|
</div>
|
|
|
|
<div id="page">
|
|
<div id="content">
|
|
|
|
|
|
<!--
|
|
<rdf:RDF
|
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"
|
|
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
<rdf:Description
|
|
rdf:about=""
|
|
trackback:ping=""
|
|
dc:title="Getting to know Vista"
|
|
dc:identifier="/2007/4/17/getting-to-know-vista"
|
|
dc:description="<h3>It looks pretty good!</h3>
|
|
|
|
|
|
<p>After figuring out how to minimise the translucency of the window decorations I think Aero looks ok. Window titles, on both windows and the taskbar, can be difficult to read at a glance which is really stupid i..."
|
|
dc:creator="sjs"
|
|
dc:date="April 16, 2007 18:09" />
|
|
</rdf:RDF>
|
|
-->
|
|
|
|
<div class="hentry" id="article-36">
|
|
<h2 class="entry-title">
|
|
<a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/2007/4/17/getting-to-know-vista">Getting to know Vista</a>
|
|
|
|
<span class="comment_count">0</span>
|
|
|
|
</h2>
|
|
<div class="vcard">
|
|
Posted by <span class="fn">sjs</span>
|
|
</div>
|
|
<abbr class="published" title="2007-04-16T18:09:00+00:00">on Monday, April 16</abbr>
|
|
<br class="clear" />
|
|
<div class="entry-content">
|
|
<h3>It looks pretty good!</h3>
|
|
|
|
|
|
<p>After figuring out how to minimise the translucency of the window decorations I think Aero looks ok. Window titles, on both windows and the taskbar, can be difficult to read at a glance which is really stupid if you ask me. But it’s better than Luna! They really lay the effects on thick but overall I find it pretty pleasant and it runs well on my MacBook’s Intel 945 video chip.</p>
|
|
|
|
|
|
<p>Ah yes, the Sidebar is nowhere to be seen on my desktop. It’s a nice-looking waste of space.</p>
|
|
|
|
|
|
<h3>But it’s not all useful</h3>
|
|
|
|
|
|
<p>Sadly The new task switcher (Win-tab) is terrible. Before using it I wondered why they didn’t replace Alt-tab completely. Now I know and I am grateful to MS for not replacing it. Alt-tab easily wins. Especially since it displays thumbnails of windows.</p>
|
|
|
|
|
|
Three gripes with Win-tab fancy-shmanciness:
|
|
<ul>
|
|
<li>It’s too slow</li>
|
|
<li>It responds even when I just tap Win-tab to quickly switch, then I’m stuck until I hit the Windows key to choose a window</li>
|
|
<li>Windows from all my monitors are gathered onto the main one, which is just lame</li>
|
|
</ul>
|
|
|
|
|
|
<h3>It’s stable (so far)</h3>
|
|
|
|
|
|
<p>Besides the fact it is aesthetically pleasing [subjective] it also has just worked for me so far. Nothing has crashed or broken which is almost miraculous. Not that I had a terrible time with XP, but it was still frail old Windows at times. I’m equally pleased with Apple’s drivers for Windows which probably adds to the experience. I’ve used XP machines with proper drivers, and those without and the differenc is night & day. I’ve had uptimes in months on a stable XP notebook.</p>
|
|
|
|
|
|
<h3>Never thought this day would come…</h3>
|
|
|
|
|
|
<p>But I actually like the Start menu. Really, I do. You hit the Windows key, type a few letters and boom you launch your app or search your computer, or the web (Google in Firefox, my default search). It’s not QuickSilver or LaunchBar; it’s not supposed to be. For the average Joe this is cool, and for the average power user it’s very useful. For the casual Windows user it’s great. It even learns.</p>
|
|
|
|
|
|
<p>I don’t love it though. I knew before using it that the new method of navigating through the All Programs menu would be weird. It is, but I guess it may be better than the previous fly-out scheme (which I don’t care for either). I guess the All Programs menu is more or less legacy now though and I don’t see myself using it often.</p>
|
|
|
|
|
|
<h3>I’m a command line junkie</h3>
|
|
|
|
|
|
<p>They fixed at least one glaring bug. I used the cmd.exe shell a little bit even though I hate it. I was happy to find that Tab completion works for more than the current directory now. Before Vista it would complete the same entries from <span class="caps">PWD</span> no matter how deep you tried to drill down into the filesystem. Other than that it seems to be the same crummy shell. <em>[edit—apparently this is fixed in XP as well, my mistake]</em></p>
|
|
|
|
|
|
<p>I installed the Windows PowerShell (PoSH) but haven’t really put an effort to learn it yet. The syntax is unorthodox coming from *nix shells (zsh), but it’s sort of refreshing and it lives up to the Power part of its name. I really like the fact that collections of (say) files can be passed around and iterated over, filtered, etc. not as filenames but as real objects with corresponding methods and metadata. Built-in support for <span class="caps">XML</span> is pretty nifty too.</p>
|
|
|
|
|
|
<p>I’ve often longed for a shell which acted like a normal shell for the most part, but allowed irb-like interpretation of arbitrary Ruby code as well. The PowerShell seems like it could be something similar to what I’ve wanted. Too bad it’s proprietary and only runs on Windows. If I use Vista a lot this summer I could end up getting into it more though. It’s quite interesting.</p>
|
|
|
|
|
|
<h3>Random</h3>
|
|
|
|
|
|
The good:
|
|
<ul>
|
|
<li>Slideshow button in Explorer</li>
|
|
<li>Doesn’t look like a Fisher-Price design</li>
|
|
<li>Restarts when I click Restart (after 3 clicks it damn well better)</li>
|
|
<li>Seems stable, at least initially which means the installation & driver situation really has improved</li>
|
|
<li>I don’t want to kill anyone while using it</li>
|
|
</ul>
|
|
|
|
|
|
The bad:
|
|
<ul>
|
|
<li>Flicker while changing video modes, displaying <span class="caps">UAC</span> prompts, etc. (not so bad really, but stands out on an otherwise smooth desktop)</li>
|
|
<li>Long black screen on boot after installing updates</li>
|
|
<li>Disappearing / magical menu bar debacle</li>
|
|
<li>The shell still sucks</li>
|
|
<li>It tries to be too fancy, with the dynamic Start menu icon and the like</li>
|
|
</ul>
|
|
|
|
|
|
<h3>My conclusion</h3>
|
|
|
|
|
|
<p>Perhaps the scores of talented developers at Microsoft <em>can</em> save them despite their obvious shortcomings in management. .NET seems like a decent platform, but we’ll have to see how I like it once I actually use it. So far I don’t hate Vista and considering the previous versions of Windows that’s a pretty good review coming from me. I’m still recommending Macs to my family and friends, but who knows what the future holds. I don’t hate Vista and by the end of the summer I may even [gasp] like it, and/or .NET. I haven’t used an <span class="caps">IDE</span> since <span class="caps">VB6</span> and MS has always had a decent <span class="caps">IDE</span> (albeit with a crummy text editor). I’m expecting to enjoy it. If there’s one thing MS knows it’s the value of good dev tools and <a href="http://web.archive.org/web/20081121202139/http://www.youtube.com/watch?v=d_AP3SGMxxM">developers</a>.</p>
|
|
|
|
<div class="extended">
|
|
<p><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/2007/4/17/getting-to-know-vista">Continue reading...</a></p>
|
|
</div>
|
|
|
|
</div>
|
|
<ul class="meta">
|
|
|
|
|
|
<li>
|
|
Tags: <a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/windows">windows</a>
|
|
</li>
|
|
|
|
<li>
|
|
Meta:
|
|
|
|
<a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/2007/4/17/getting-to-know-vista">0 comments</a>,
|
|
|
|
<a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/2007/4/17/getting-to-know-vista">permalink</a>
|
|
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<h5><a name="comments">Comments</a></h5>
|
|
<p><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/2007/4/17/getting-to-know-vista#comment-form">Leave a response</a></p>
|
|
<div id="comments_div">
|
|
<ol id="comments" class="comments">
|
|
|
|
</ol>
|
|
</div>
|
|
|
|
<form id="comment-form" method="post" action="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/2007/4/17/getting-to-know-vista/comments#comment-form">
|
|
<fieldset>
|
|
<legend>Comment</legend>
|
|
<p>
|
|
<label class="text" for="comment_author">Name:</label><br/>
|
|
<input type="text" id="comment_author" name="comment[author]" value="" />
|
|
</p>
|
|
<p>
|
|
<label class="text" for="comment_author_email">Email Address:</label><br />
|
|
<input type="text" id="comment_author_email" name="comment[author_email]" value="" />
|
|
</p>
|
|
<p>
|
|
<label class="text" for="comment_author_url">Website:</label><br />
|
|
<input type="text" id="comment_author_url" name="comment[author_url]" value="" />
|
|
</p>
|
|
<p>
|
|
<label class="text" for="comment_body">Comment:</label><br />
|
|
<textarea id="comment_body" name="comment[body]"></textarea>
|
|
</p>
|
|
<div class="formactions">
|
|
<input type="submit" value="Post comment" class="submit" />
|
|
</div>
|
|
</fieldset>
|
|
</form>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div id="sidebar">
|
|
|
|
<div class="sidebar-node">
|
|
<div id="search" class="search">
|
|
<form action="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/search" id="sform" method="get" name="sform">
|
|
<p><input type="text" id="q" name="q" value="" /></p>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="sidebar-node">
|
|
<h3>Sections</h3>
|
|
<ul>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/">geeky ramblings</a> (15)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/emacs">Emacs</a> (3)</li>
|
|
|
|
</ul>
|
|
</div>
|
|
|
|
|
|
|
|
<div class="sidebar-node">
|
|
<h3>Tags</h3>
|
|
<ul>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/activerecord">activerecord</a> (2)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/alsa">alsa</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/amusement">amusement</a> (6)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/apple">apple</a> (6)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/arc">arc</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/bdd">bdd</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/broken">broken</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/browsers">browsers</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/buffalo">buffalo</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/bundle">bundle</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/cheat">cheat</a> (3)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/coding">coding</a> (22)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/cool">cool</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/coverflow">coverflow</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/crazy">crazy</a> (2)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/digg">digg</a> (2)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/drm">drm</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/dtrace">dtrace</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/dubai">dubai</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/elschemo">elschemo</a> (2)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/emacs">emacs</a> (11)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/english">english</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/extensions">extensions</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/firefox">firefox</a> (3)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/framework">framework</a> (2)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/funny">funny</a> (2)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/fuse">fuse</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/games">games</a> (2)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/gentoo">gentoo</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/german">german</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/gtkpod">gtkpod</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/haskell">haskell</a> (7)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/humans">humans</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/injury">injury</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/inspirado">inspirado</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/iphone">iphone</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/itunes">itunes</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/i_laughed_i_cried">i_laughed_i_cried</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/keyboard">keyboard</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/keyboard%20shortcuts">keyboard shortcuts</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/lemmings">lemmings</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/life">life</a> (13)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/linux">linux</a> (8)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/lisp">lisp</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/lisp%20arc">lisp arc</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/mac%20os%20x">mac os x</a> (6)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/mediawiki">mediawiki</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/mephisto">mephisto</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/migrations">migrations</a> (2)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/munich">munich</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/mysql">mysql</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/networking">networking</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/opera">opera</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/pedantry">pedantry</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/people">people</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/photo">photo</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/php">php</a> (4)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/programming">programming</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/project%20euler">project euler</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/propaganda">propaganda</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/python">python</a> (2)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/quickcheck">quickcheck</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/rails">rails</a> (18)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/rails%20on%20rules">rails on rules</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/regex">regex</a> (2)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/regular%20expressions">regular expressions</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/rest">rest</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/rtfm">rtfm</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/ruby">ruby</a> (14)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/rushcheck">rushcheck</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/sake">sake</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/scheme">scheme</a> (4)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/school">school</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/seaside">seaside</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/secure%20associations">secure associations</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/seekport">seekport</a> (2)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/snippets">snippets</a> (3)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/ssh">ssh</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/tagify">tagify</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/technology">technology</a> (6)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/test/spec">test/spec</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/textmate">textmate</a> (7)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/tips">tips</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/typo">typo</a> (2)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/ubuntu">ubuntu</a> (2)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/usability">usability</a> (2)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/userscript">userscript</a> (2)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/vacation">vacation</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/vim">vim</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/volume">volume</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/web">web</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/web%20objects">web objects</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/wikipediafs">wikipediafs</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/windows">windows</a> (2)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/work">work</a> (1)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/zend">zend</a> (2)</li>
|
|
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/tags/zsh">zsh</a> (1)</li>
|
|
|
|
</ul>
|
|
</div>
|
|
|
|
|
|
<div class="sidebar-node">
|
|
<h3>Friends & cool blogs</h3>
|
|
<ul>
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://jim.roepcke.com/">have browser, will travel</a></li>
|
|
<li><a href="http://web.archive.org/web/20081121202139/http://cassandrahill.blogspot.com/">cj's chatter</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="sidebar-node">
|
|
<p><a href="http://web.archive.org/web/20081121202139/http://twitter.com/_sjs">
|
|
<img src="http://web.archive.org/web/20081121202139im_/http://sami.samhuri.net/assets/2007/6/26/icon_twitter.png" alt="[t]" /> twitter</a></p>
|
|
</div>
|
|
|
|
<div class="sidebar-node">
|
|
<p><a href="http://web.archive.org/web/20081121202139/http://mephistoblog.com/" class="powered"><img alt="mephisto-badge-tiny" src="http://web.archive.org/web/20081121202139im_/http://sami.samhuri.net/images/mephisto-badge-tiny.png" /></a></p>
|
|
</div>
|
|
|
|
</div>
|
|
<br style="clear:both;" />
|
|
|
|
</div>
|
|
|
|
<div id="footer">
|
|
<hr />
|
|
<p><a href="http://web.archive.org/web/20081121202139/http://sami.samhuri.net/">sjs</a></p>
|
|
<ul>
|
|
<li>powered by <a href="http://web.archive.org/web/20081121202139/http://mephistoblog.com/">Mephisto</a> /
|
|
styled with <a href="http://web.archive.org/web/20081121202139/http://quotedprintable.com/pages/scribbish">scribbish</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script src="http://web.archive.org/web/20081121202139js_/http://www.google-analytics.com/urchin.js" type="text/javascript"> </script>
|
|
<script type="text/javascript"> _uacct = "UA-214054-3"; urchinTracker(); </script>
|
|
<script src="http://web.archive.org/web/20081121202139js_/http://feeds.feedburner.com/~s/sjs" type="text/javascript" charset="utf-8"></script>
|
|
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|
|
|
|
|
|
<!--
|
|
FILE ARCHIVED ON 20:21:39 Nov 21, 2008 AND RETRIEVED FROM THE
|
|
INTERNET ARCHIVE ON 10:04:31 Dec 11, 2011.
|
|
JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.
|
|
|
|
ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
|
|
SECTION 108(a)(3)).
|
|
-->
|