July 27th, 2007
I would like to let everybody know that today is System Administrator Appreciation Day, so go out and get him a beer or her a bundle of flowers for putting up with the crap of us Developers of the past year.
http://www.sysadminday.com/
Posted in Personal |
|
| View blog reactions | Comments Off
July 24th, 2007
I found this great article about Con Kolivas on Slashdot today:
Linux is burdened with ‘enterprise crap’ that makes it run poorly on desktop PCs, says kernel developer Con Kolivas. Kolivas recently walked away from years of work on the kernel in despair. APCmag.com has a lengthy interview with Kolivas, who explains what he sees is wrong with Linux from a performance perspective and how Microsoft has succeeded in crushing innovation in personal computers.
This article is personally the first time I have heard of Con Kolivas, but in the article he makes many great points about performance and usability that every software developer should be concerned with. He also talks about the disconnect that the Linux Kernel Developers have with the common user and the weight corporations hold over the changes that go in to the Linux Kernel.
Tags: Linux, Performance, User Experience
Posted in Programming, Rant |
|
| View blog reactions | Comments Off
July 22nd, 2007
One of the new features of Windows Vista was the Driver integrity Checks. In the x64 version of the product it is turned on by default, and is a great idea to prevent kernel level access to only drivers that have passed the Microsoft Testing for security and performance. However this feature can be rather annoying since Microsoft hasn’t even released signed drivers for all their products. (i.e. Streets & Trips GPS Device) So I have included the following steps in order to disable the driver signing integrity checks, so that you can install unsigned drivers.
Note: You should only do this if you are experiencing driver installs getting blocked and you use this driver on a daily basis. Because there is an F8 boot option that will temporarily disable driver signing for other needs and also this is a very good feature that helps prevent spyware and other nastys from gaining access to your OS.
- Log in to Windows with a user name that has administrative access.
- Right click on Start > Accessories > Command Prompt
- Select Run as administrator
- In the command prompt type bcdedit /set nointegritychecks on
- Reboot.
To turn driver signing back on do the following:
- Follow steps 1-4 from above.
- In the command prompt type bcdedit /set nointegritychecks off
- Reboot.
So it is that easy.
Tags: Microsoft, Windows Vista
Posted in How To, Programming |
|
| View blog reactions | Comments Off