HDD Performance

Auslogics_Disk_Defrag_thumb In recent months there has been some buzz about SSDs, otherwise known as Solid State Drives. Performance from some of these drives is better than their mechanical counterparts. With access times in the nanosecond range its no wonder they appeal to speed junkies. But for the rest of us who either don’t have the cash or can’t upgrade an older machine. For example, that old IDE laptop you got sitting around. Fortunately there are some things you can do to give your old clunker a little more zip. One thing is to defrag your hard drive. Before I found my current defragmentation program, I used Defraggler from Piriform. It however was too slow for me. It would move a few blocks and then sit there and think about what to move next. I’m not really a waiting kind of person. So I started looking for something new. That’s when I found Auslogics Disk Defrag.

Auslogics Disk Defrag is much faster than Defraggler and does a lot more. It is able to defragment multiple disks at once and it has an auto defrag function to defrag the hard drive when the computer is idle. Now I know this function is built-in to the windows defragging program, but with Auslogics you can specify the parameters for idleness. On my machine there is always a program running that occasionally uses more than 10% of the CPU, which is what windows considers idle. This causes the windows auto defrag to never run so having the option enables me to fix that problem. The drive map was neat but not to much different from Defraggler. However you can change the color theme to match another program. Since I was used to my old program I chose the Defraggler theme.

The only downside to Auslogics Disk Defrag is that it has some advertising for their other products in the program. The system health function doesn’t actually do anything that I can tell. I think it just spits out a random number to get you to download their System Cleaner program. I use CCleaner for that, which is a great program from Pirifrom.

So if you have an old clunker like me and are looking for ways to put some umph back into it without dropping some cash for an upgrade. Then Auslogics Disk Defrag is a free and fast alternative. It does wonders for my virtual machine disk files. You can download it at http://www.auslogics.com/en/software/disk-defrag/

Posted by admin in Computers, 0 comments

ScriptKey

>

I’m pleased to announce that I have now released a project I have been working on for some time. The program allows the user to write code in C# and hook them input events such as keyboard buttons, mouse events, etc. This project has been quite the learning experience for me. It taught me aspects of .NET Remoting, AppDomains, and compiling code without Visual Studio. Since the user’s code runs in its own AppDomain it needs to have a way to communicate with main application. It does the with the IPC(Inter-Process Communication) mechanism to communicate between AppDomains. The program is not quite complete yet but it is ready for scripting. You can get it at its SourceForge project page https://sourceforge.net/projects/scriptkey/.

Posted by admin in Programming, 0 comments

Adventures in Upgrading to Lucid Lynx

>

Just upgraded my Ubuntu partition to Lucid Lynx today. Every thing installed fine but after every thing was done and I rebooted I noticed desktop effects in compiz were disabled. So I thought to myself I know they worked before the upgrade. Then I started digging and I came upon an entry in the Xorg log that said “Failed to initialize GLX extension (Compatible NVIDIA X driver not found)”. The Nvidia part was the tipoff , since I have an ATI card. So I did some more digging on the Internet and I came across this page Desktop effects will not activate in Lucid Lynx. On page 3 it said to remove all packages related to Nvidia. So I did “sudo apt-get –purge remove nvidia*” I’m still not sure how nvidia drivers got in the system during the upgrade but after I rebooted everything was fine.

Posted by admin in Computers, 0 comments

Visual Studio 2010 Review

I recently downloaded Visual Studio 2010 from Microsoft’s Dreamspark website. After a nearly 2 hour install completed, I promptly opened it up and started exploring.

The first time opened it I noticed that the user interface is drawn with WPF. Now I’m not opposed to this but, the code editor window just doesn’t seem as responsive as earlier versions. This may just be due to the fact that its running on a 4 year old single-core laptop.

The next thing I checked out was the extension manager. With it you can browse for your favorite extensions without opening the browser. It also can check for updated extensions automatically.

In Visual Studio 2008, coding in C# had its downsides compared to VB. For example, Intellisense only triggered when accessing a member and if you did not spell the member’s parent correctly you get nothing. This has been fixed in VS2010. I am now able to type my using statements with ease.

I have not been able to try it with multiple monitors since I only have one at the moment. Although, it does sound like a neat feature.

Overall I do like this new version of Visual Studio. It has some neat features and I’m still exploring.

Posted by admin in Computers, Programming, 0 comments