|
I have a high end Mac pro, but one thing in is that I'm unhappy with is a DVD drive. It's a Hitachi GH41N. Apple calls it a "superdrive", but it's anything but. The damn thing makes an amazing amount of noise, and isn't too fast either.
What I want is...
Started by deadprogrammer on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Access speed, read/write speed, and tray opening and closing speed, you reduce drive noise to a whisper.
|
|
Hi, I've been trying to find out the fastest way to code a file copy routine to copy a large file onto a RAID 5 hardware.
The average file size is around 2 GB.
There are 2 windows boxes (both running win2k3). The first box is the source, where is the ...
Started by ring0 on
, 11 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
If write speed is that important, why not consider RAID 0 for your the hardware using ATTO shows a write speed....
With 1 disk as hot-spare.
If write speed is that important, why not consider RAID 0 for your hardware.
To write to RAID-5.
|
|
I'm looking to upgrade my EEE 1000H by possibly replacing the HDD with simple (internal) usb connected storage. The problem I'm having now is that I can't seem to find any actual high speed usb sticks. They all proclaim high speeds, but usually turn out...
Started by CSkau on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at superuser):
USB 3.0 technology is just to replace the HDD, then you presumably... .
Can't actually point you to any high-speed USB stick, what I can tell you is that the 60 MB/s limit you can't actually find any device that handles that kind of speed.
|
Ask your Facebook Friends
|
Does anyone know the magic incantation to disable the annoying blue led on the front of a LaCie 1TB High-Speed USB 2.0 external drive ?
The manual for that model doesn't mention the ability to disable it, but for the NAS model; there is the option.
Started by dezwart on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at serverfault):
Reason? Well, a NAS must have ....
Blue tak over the LED :)
In all seriousness, I've never seen a USB enclosure with any configurable options .
Possibly two layers, if your LEDs are anything like the ones on the HDMI switch I just bought .
Electrical tape.
|
|
Our small office (14 people) is looking for a faster internet connection. We currently have ATT DSL and a backup connection using Covad DSL. Short of moving to high end scale options (which could be really pricey in LA), are there any other high speed...
Started by Justin on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
The back office.
If possible you could upgrade the DSL to a faster speed good luck with Sprint as the internet provider for a wired dual-T1 speed circuit.
T1 is only going to get you 1.5Mbps.
|
|
I need to write a digital oscilloscope type application. There are many great static graphing controls out there, but I need something that can graph 16 traces processing 4000 samples per second.
Is anyone aware of a high speed graphing control for .NET...
Started by Kevin on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
It's only a DLL, but is capable....
If anything on Windows can meet your Library.
It includes support for high-performance 2D and 3D graphics.
GraphViz doesn't take a 'live feed' of instructions).
It will handle the speed you're looking for.
|
|
I'm trying to write an application (winforms) that can demonstrate how two oscillating colors will result in a third color. For this I need to be able to switch between two colors very fast (at >50 fps). I'm really hoping to do this in managed code...
Started by chriscena on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I have never had good luck with GDI to do high speed graphics, so I used DirectX, but MS has.
|
|
I'd like to implement the receiving end of my system in MATLAB - this requires Gigabit Ethernet with sustained speeds of over 200Mb/sec.
Using MATLAB's built-in UDP from the Instrument Control Toolbox does not appear to be sufficient. Are there any good...
Started by bobbyb on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you know Java, you can write.
Will never leave RAM so you won't have to worry about speed.
|
|
I frequently need to access bare drives for backups and need a quick, high-speed way to deal with them.
There are a multitude of SATA hard drive docks ( for example ), but I have a lot of IDE/PATA (hereafter "IDE") drives that I would like to be able ...
Started by wfaulk on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
Especially if it doesn't meet your speed needs, but it would certainly work for streaming video.
|
|
I have Bitmap. I want to apply median filter to my bitmap. But I can’t use GetPixel() and SetPixel() because speed is very important factor for me. I need very fast way to do it. May be it can be done with a Graphics.DrawImage(Image, Point[], Rectangle...
Started by DreamWalker on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Here is a code snippet where I take the average color:
int stride = (bmp.PixelWidth * bmp.Format.BitsPerPixel + 7) / 8; byte[] pixels = new byte[bmp.PixelHeight * stride]; bmp.CopyPixels... .
Copy data to an array using CopyPixels , then operate on the array .
|