• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

Recent content by 280Z28

  1. 2

    Yet another Delegates/Events in pure C++ implementation

    I know there are several out there, but I didn't like things about them. They just weren't right for what I needed: simple, powerful, reliable events for my objects. I've named my implementation ObjectEvents. If there's interest I'll post my source later...
  2. 2

    Another Visual Studio add-in coming along

    I've got a lot of the core for a native debugger and object browser support in too :) Been working on it since last Thursday.
  3. 2

    Linux debugging with Visual Studio

    Visual Studio 2005 is second to none as an IDE. Developing apps with it for the linux platform works fine: intellisense, code browsing, and navigation work as expected. The only thing is the debugger doesn't understand symbols formats other than the PDB format, which is about the only one GCC...
  4. 2

    Linux debugging with Visual Studio

    Wouldn't it be nice if Visual Studio could remotely debug linux programs compiled with gcc/g++ over SSH to a linux machine? Oh yes, yes it would. :o
  5. 2

    MAN this aggrivates me (programming)

    I can deal with this from users just fine. The problem is with devs that make these mistakes. Newbies should say they encountered and "error" if they don't know what the specifics are. That's generic enough to tell me that it could be any of the above.
  6. 2

    MAN this aggrivates me (programming)

    This is a crash: This is an assert, NOT A "Crash" :mad: assert( ptr != NULL || !"NULL argument not expected" ); This is an EXCEPTION, NOT an "Assert" :mad: throw new ArgumentNullException( "chair" ); Man I get this crap from other devs here who supposedly know what they're...
  7. 2

    I am extremely displeased with Promise right now

    I have 2 of their FastTrak SX4000 RAID cards and all I want to do is run them in a server that has no other software on it. I don't get **** for answers when I repeatedly send support request. I get the auto-reply and then nothing. I try giving email addresses, then I try giving my phone number...
  8. 2

    The [H]ard Forum Terabyte Club - READ first post before posting

    As you've seen I had some trouble but now mine's up and running.
  9. 2

    I'm digging Consolas

    Technically, they are posted by MS for VS2005 users, but it is just a font and there are other links to them. :o They are also included in the Office 2007 and Vista public betas.
  10. 2

    Data recovery success story (gory details)

    I RMA'd that drive, full scanned the other 3 and the new one with WD's tools, and now it's initializing a new RAID with new drives. :)
  11. 2

    I'm digging Consolas

    New monospace font for Windows, designed for ClearType. (Take a look at it with and without ClearType, you'll see what I mean!) Sooo clean. I'm using it in Visual Studio and notepad now. Here's a quick peek if you don't have access to it:
  12. 2

    Data recovery success story (gory details)

    As requested by someone, here's the program I wrote for the parity testing. Note that I didn't change or clean it up at all from what I actually used for this effort. http://www.280z28.org/downloads/ParityTest.7z If you can't extract it, get TugZip (awesome freeware program) here...
  13. 2

    API for low-level drive access

    I'll post the code here, which I didn't change or clean up at all from what I actually used. Also, better explanation of what I did from beginning to end: http://www.hardforum.com/showthread.php?t=1066458
  14. 2

    Data recovery success story (gory details)

    About 2 months ago, I had a hard drive report bad sectors during an online conversion from 3 drives RAID-0 to 4 drives RAID-5. The conversion halted 66.6% of the way through, rendering the 600gb RAID useless. :cry: So began my recovery effort. Final solution: a) Write program in C# that...
Back
Top