12
votes
5answers
1k views
Scaling databases with cheap SSD hard drives
Hey guys!
I hope that many of you are working with high traffic database-driven websites, and chances are that your main scalability issues are in the database. I noticed a couple of things lately:
…
11
votes
10answers
1k views
Is dd better than cat?
Suppose I want to clone my hard drive (hda) to another drive (hdb) in the same computer. As I see it, there's two easy, rough and do-it-yourself ways:
cat /dev/hda > /dev/hdb
and
dd if=/dev/hda …
11
votes
20answers
1k views
How do I get rid of a hard disk without exposing my source code?
What is the proper way to dispose an old hard disk which contains my source code and other intellectual property? I was about to throw it away in the recycle box but thought better to check it with SO …
6
votes
11answers
2k views
How can I find out what’s thrashing my hard drive in XP?
This is a programming question in the sense that I'm experiencing a hardware issue which is keeping me from being able to develop effectively...
Anyway, my PC is running insanely slow, but it doesn't …
6
votes
8answers
340 views
What’s your experience with Flash drives?
EMC is marketing Solid State Flash Drives and my project is thinking about moving that direction in the future. Does anyone have any experience with replacing traditional disk storage with flash …
5
votes
4answers
220 views
Perl: write speed mystery?
How can the output rate be higher than hard disk write rate?
Update 1: I have changed the following:
Turned off antivirus. No change.
Inserted new physical disk and used the first partition
for the …
5
votes
6answers
3k views
Converting HDD Serial # VB6 code into VB.NET code
Hey guys,
I've got a cool piece of code taken from a VC++ project which gets complete information of the hard disk drive WITHOUT using WMI (since WMI has got its own problems)
I ask those of you who …
5
votes
3answers
232 views
Best generic strategy to group items using multiple criteria
Hello,
I have a simple, real life problem I want to solve using an OO approach. My harddrive is a mess. I have 1.500.000 files, duplicates, complete duplicate folders, and so on...
The first step, …
5
votes
5answers
743 views
How to detect if any specific drive is a hard drive?
In C# how do you detect is a specific drive is a Hard Drive, Network Drive, CDRom, or floppy?
4
votes
11answers
307 views
Are solid-state drives good enough to stop worrying about disk IO bottlenecks?
I've got a proof-of-concept program which is doing some interprocess communication simply by writing and reading from the HD. Yes, I know this is really slow; but it was the easiest way to get things …
4
votes
4answers
293 views
How to programmatically really clean Delete files?
So you are about to pass your work-computer to some of your colleague. How do you make sure you really delete all your personal data?
Re-formatting, Re-installing OS will not really solve the …
4
votes
4answers
327 views
How to determine number of files on a drive with Python?
Howdy!
I have been trying to figure out how to retrieve (quickly) the number of files on a given HFS+ drive with python.
I have been playing with os.statvfs and such, but can't quite get anything …
4
votes
6answers
254 views
Optimizing locations of on-disk data for sequential access
I need to store large amounts of data on-disk in approximately 1k blocks. I will be accessing these objects in a way that is hard to predict, but where patterns probably exist.
Is there an algorithm …
4
votes
3answers
662 views
How to get serial number from hard disks?
Is there an easy way to get the serial number of all the hard disks in a PC using the Win32 API?
4
votes
6answers
493 views
Emulate hard disk in .NET
Is there a way to emulate a disk drive in .NET, intercepting read/write/lock operations?
I would like to create something with a front-end similar to GMail Drive in C#.
Thanks,
Tom
