Skip to main content

Viva la Vista

Recently my Compaq Presario 2700T laptop's screen has been flaking-out on me. With the crash in laptop prices, I figured it would be more cost effective just to get a new laptop with a Core 2 chip and Vista. Why not? I'm a developer and I need to stay ahead of the curve on new technology.

My first stop was at CircuitCity.com where I purchase a new Gateway laptop with 2GB of RAM, and a 1.6 Ghz Core 2 Duo chip. This used to be my "wow" developer configuration, but apparently it's the status-quo for home users. I feel so uncool now.

The laptop came with Vista Home Premium, which is cool in its own right, but I need Vista Business or Ultimate. You can't upgrade laterally to Vista Business from Vista Home. Rather, you have to use the Vista Update Anywhere tool to go from Vista Home to Vista Ultimate. I didn't realize this until I purchase the laptop AND Vista Business separately. Oh well, I can re-use the Vista Home Premium license for another computer ...

Many of you may not remember the day when Windows 95 came out. I do. Back then there was Windows 3.1, and everyone thought it was hot stuff. So when Windows 95 came out, many people balked at it and complained about it being "too different." Many of the same complaints are made of Vista. Sure, there are compatibility issues, and the interface is a little bit different. Mostly, though, these lamentations are lame and unfounded.

I found Vista to be easy to install, easy to setup, and even easier to use. Vista was able to setup the driver for my HP Business Inkjet 1200 without me doing anything except clicking on a few buttons. Yeah, it's a network printer too, and it found the printer without fail. XP couldn't do that without locking up my entire shell for about 10 minutes.

Then I started to migrate my old data over to my new computer. This is where it gets really cool. I copied the "My Documents" folder from my old computer to the appropriate documents folder on Vista. During the copying, Vista figured out that I was copying these special folders, and was able to redirect the "My Pictures", "My Music" and other "My ..." folders to the appropriate NEW locations in Vista. Plus, it was smart enough not to automatically clobber the existing index files for these folders. How cool is that? Try that on a stinky-mac!

So far, the only software that has not been compatible is Norton SystemWorks 2005. I've gotten warnings about VisualStudio 2003 and 2005, and of course SQL Server 2005, but they all seem to work just fine. I have projects that are in the hundreds-of-thousands of lines of code, and Vista with VS 2003 and 2005 both crank!

ActiveDesktop is finally a first-class citizen with Vista. That's the nifty gadget bar on the right of the default desktop. Microsoft has made it easier to customize and program now that you can create HTML gadgets instead of ActiveX controls. Another hoo-ra for Microsoft and Vista. I saw AD released back in the early 90s and thought it was cool back then. Today, it's even cooler!

Probably the most important features for the end user of Windows are startup time and shutdown time. Vista startsup super-fast now, probably a whole 50% faster than XP does on a clean install. Shutdown is nearly instantaneous. My 1.6 Ghz Vista laptop kicks my 3.5GHz XP Pro desktop, seriously.

Because of some compatibility issues, I wonder if some business users will just wait 6 months to upgrade to Vista. I had thought about that too, but figured, why wait. It's not like Microsoft just went on vacation and isn't working on compatibility. Plus, to be fair to Microsoft, the vendors have had Vista in hand for over a year. They've had plenty of time to get their software Vista Ready. If nothing else, new Vista users will experience what it's like to be a Mac user with no software available to them. The only difference is that the Vista user is guaranteed to have an ocean of software open to them soon, whereas those Mac users, well, keep that inner-smile!

Popular posts from this blog

Stock Option Debt Income

The 2024 Presidential election has brought out a topic of interest that seems to have been perverted. There is this "Taxing Unrealized Capital Gains" [1] movement that is being falsely attributed to Vice President Harris. Clearly, this is a change in the revenue code that was designed by someone in office long before VP Harris was in office. My money is on Elizabeth Warren and Bernie Sanders. What is this change in the revenue code though? For that you have to understand what Silicon Valley zillionaires are doing with their stock options. Many of these people in this special economic area have huge discounts on stock prices for companies that are not public yet, or are public and can not be sold [2]. To be fair to these holders of equity, banks allow them to finance debt using leverage against those options. If you hold an option that is worth $5M then a bank might lend you a share of that value, thus realizing a debt against the option [3]. This is a fair debt instrument and...

A Self Defeating Race False Narrative

2020 is the year of the pandemic. The SARS-Cov-2 (Covid19) virus has rampaged across the planet infecting 4,893,136 [1] people by May 20, 2020. At this time, of those 4.8M people, 323,256 people have perished from complications that arise from the infection. Arising out of this pandemic has been a narrative about non-white ethnic groups being disproportionately affected by the infection [6,7,8]. A narrative that conditions people to believe that they are perpetually victims only creates a "collective victimhood" [4,5] in that group. This "collective victimhood" costs its members millions in unrealized potential, sends them cowering from social interactions that would otherwise benefit them, and ultimately creates an environment that perpetuates itself. Let's try to dispel that false narrative and deal just with data. I pulled my data from the CDC [9] looking at mortality only. The mortality data from CDC contains per-state mortality rates on a per-infectio...

Number of Primes

Anderson's Theorem (a) The number of primes in [1,n] is no more than 2+floor(n/2). The probability of n being prime when n is not prime is 1/2 - see Dasgupta,Papadimitriou,Vazirani "Algorithms" page 26. Therefore, the E(pi(n)) is n/2. (b) There does not exist another set of adjacent primes other than {1,2,3} 5: 2 + floor(5/2) = 2 + 2 = 4:=> {1,2,3,5} : 4 <= 4 7: 2 + floor(7/2) = 2 + 3 = 5 => {1,2,3,5,7} : 5 <= 5 11: 2 + floor(11/2) = 2 + 5 = 7 => {1,2,3,5,7,11} 6 <= 7 26: 2 + floor(26/2) = 15 => {1,2,3,5,7,11,13,17,19,23} : 10 <= 15 Lagrange's Theorem is Inaccurate Lagrange's theorem about primes states that pi(x) is the number of primes <= x. The pi(x) is approximately x/ln(x). He postulated that the lim of pi(x)/(x/lnx) as x-> infinity was 1. This is incorrect. if the number of primes is bounded by n/2 then refactoring and reducing Lagrange's Theorem results in the lim of ln(x) as x approaches infinity. This is alwa...