Search results

  1. P

    Need Linux for a C class

    You might want to start with http://www.linux.com/feature/134670 You'll want to make sure you have the GNU tools package for the C compiler. Other than that any distro should have the shell(s) and editors you need.
  2. P

    What the HELL am I doing wrong with my brakes?

    Its either the slides (need to be greased with silicone-based grease) or possibly the grease within the caliper piston-boot has been contaminated. The caliper might need a "rebuild" (basically just clean, regrease, and seal), or the easy way is replace the caliper.
  3. P

    Turbo tax deals for 2008

    IMO, Costco usually has the best deal on turbotax without any rebates. $49.99 gets you federal, state, and e-file (I assume the e-file is just the federal and you'll have to pay a few dollars extra for state e-file as usual with Intuit). http://www.costco.com/Common/S...-Top_search&lang=en-US...
  4. P

    Got a bad virus, how screwed am I?

    If you have it enabled, try System Restore back to a good snapshot.
  5. P

    Looking to pre-order a car

    Just wait and buy one off the lot when its available.
  6. P

    Crucial Ballistix PC2-6400 4GB OOS (2 x 2GB) for $29.99 AR ($50) - 2GB (2 x 1GB) - $7.99 AR ($35) FREE shipping - FRYS

    I have two of the PC2-8500 Ballistix kits (so a total of 4 x 1GB sticks), bought about a year ago. I just had two of them fail recently. When I called Crucial for an RMA, they insisted on replacing all four since the voltage on the newer ones was dropped from 2.2 to 2.0 volts. On the surface the...
  7. P

    Netgear SC101 Storage Center Network Attached LAN HDD Enclosure

    IMO, this NAS is worthless. Bought one at Circuit City then learned about the Windows-only software, and other issues, and took it right back. No thanks.
  8. P

    Changing my name in windows

    http://support.microsoft.com/kb/310441
  9. P

    VMware or parallels?

    I've only used Parallels, which is fine for the small amount of time I use it but most folks I work with prefer VMWare over Parallels.
  10. P

    What is the difference between these two choices of ram?

    I don't think there is a difference, apart from the packaging. Go for the cheaper one -- free shipping too. Should be fine for your laptop, just double-check it can use 4GB. Some older Pro models could only use 3GB. Even then, I think you can use these sticks with no problem.
  11. P

    Engine light, engine running lean

    See if a long cardboard tube can help you isolate the sound (like from a tube of wrapping paper). Some hiss is normal, but yeah, with the light it probably means a vacuum hose fell off or cracked/disintegrated. You might also give a gentle tug to each small rubber hose and try to make sure both...
  12. P

    8800GTS OC'ing

    I didn't find too much benefit to overclocking my 8800GTS 512. Maybe a few frames here or there, depending on the game, but not enough to risk cooking the card. It already runs pretty hot as it is, and is plenty fast at stock speeds.
  13. P

    Lightscribe

    I tried Lightscribe but I have found a good 'ol Sharpie to be more effective and much faster.
  14. P

    Anyone with a Q9550 E0 and a Gigabyte P35-DS3R rev 1.0?

    Sometime last night or this morning Gigabyte updated their page. The Q9550 E0 is now listed as supported by a beta F13a BIOS. I hope it tests well and the F13 gets released soon. :) This is the first Gigabyte-brand motherboard I've owned and its been great so far. No problems at all, full of...
  15. P

    Anyone with a Q9550 E0 and a Gigabyte P35-DS3R rev 1.0?

    I think it should work, and the F12 BIOS states "Update CPU microcode (Support Intel Wolfdale/Yorkfield E0-stepping CPU)". The E8400/E8500/E8600 E0 steppings are all on the ok list. So it appears Yorkfield E0 should work, but I am waiting for either Gigabyte to officially add it to their CPU...
  16. P

    Anyone with a Q9550 E0 and a Gigabyte P35-DS3R rev 1.0?

    Just wondering if anyone with a Gigabyte P35-DS3R rev 1.0 has tried a Q9550 E0 stepping CPU? The board is verified with the C1 stepping on that chip, but no word yet on the US site about the E0 stepping. The European site shows it as "under testing"...
  17. P

    Intel Core 2 Quad Q9550 $280

    Showing sold out now. :(
  18. P

    Is there a way to tell if a variable is uninitialized/has no value?

    Yeah, get into the practice of always assigning values to pointers at declaration, including null. In C++ this is perfectly legal: char* foo = 0; // or null or NULL delete foo; // no problem No problem there, but leaving it undefined will most definitely crash: char* foo; delete foo...
  19. P

    Vista 64 loosing time

    Your firewall is probably blocking the port(s) for updating time from the NIST server.
  20. P

    Got my first speeding ticket. Suggestions?

    See an attorney specializing in traffic cases a.s.a.p.
  21. P

    Gigabyte

    My first and only Gigabyte board is my current P35-DS3R, one of their "Ultra Durable2" motherboards. Its been great! No problems at all, easy to set up. Looking at the Gigabyte board, I see all of the "Ultra Durable" motherboards use Intel chipsets. Interesting...
  22. P

    Should I replace my old tires?

    10+ years old? And worn edges? Yeah, I'd probably replace 'em. Or, if you don't mind a flat, just drive until one blows... and then replace 'em. :) (of course drive slow so you don't lose control of the car!!!)
  23. P

    xp 32 or xp 64 for gaming

    XP 32-bit or Vista 64-bit. XP 64-bit is not well supported since the driver model changed with Vista, and Vista 32-bit does not have the same kernel protections available as in the 64-bit version.
  24. P

    Can anyone help me figure out this cryptic error?

    You need to change your callback function prototype to either typedef int (WINAPI *MouseCallback)(const Position &); or typedef int (__cdecl *MouseCallback)(const Position &);
  25. P

    Best C++ GUI based IDE for linux?

    Eclipse? Anjuta? http://www.eclipse.org/cdt/ http://anjuta.sourceforge.net/
  26. P

    Costco $60 off a set of tires again

    Actually, we did go back to Costco, twice. Finally gave up and went to the dealer. They explained how they had not mounted the tires properly and no amount of balancing would make them "perfect". Fortunately the dealer has that great [Hunter?] balancing machine which told them to remount the...
  27. P

    C/C++ unreferenced formal parameter

    C++ way is to not name the parameter, e.g. (long, long, long) C way is a little more clear where you can void the parameter or, in windows, used the UNREFERENCED_PARAMETER() macro: long myFunction(long a, long b, long) { void(a) // portable C way of specifying a parameter is...
  28. P

    Costco $60 off a set of tires again

    My experience -- we got a new set of Michelins from Costco about a year ago. Tires are fine, but the installers didn't know what they were doing. Any savings we had were lost by having to get the tires remounted and load-balanced at the dealer. Now they are nice and smooth.
  29. P

    Shgould I oprepare for more MFC disappointment?

    The TEXT() macro is simply used for static strings to add the 'L' if UNICODE is defined, nothing if it is not. So you could say LPCTSTR fileName = TEXT("loadThis.txt"); CFile file; file.Open(pszFileName, CFile::modeRead); and it will compile as either UNICODE or MBCS.
  30. P

    Recommendations for a new mower

    I've got some old piece of junk, but it just keeps going. When it dies I am getting a Toro, probably with electric start :)
  31. P

    WTF Wal-Mart

    A lot of people that go to Wal-Mart are *very* price conscience, usually because they have to be. So it sounds like "basic" oil change really means just an oil change. I wouldn't worry about the filter. It should be fine for a couple of changes unless your engine is either brand new, or maybe...
  32. P

    Retrieving WinXP CD-Key

    http://support.microsoft.com/kb/256986 "A registry hive is a group of keys, subkeys, and values in the registry that has a set of supporting files that contain backups of its data. The supporting files for all hives except HKEY_CURRENT_USER are in the %SystemRoot%\System32\Config folder ..."...
  33. P

    Retrieving WinXP CD-Key

    Interesting, a location and some source code to retrieve the key from HKLM\SOFTWARE\MICROSOFT\Windows NT\CurrentVersion\DigitalProductId http://www.planet-source-code....gWId=1&txtCodeId=57164
  34. P

    Retrieving WinXP CD-Key

    So reading around a bit, the cd-key is stored in the registry, no doubt encrypted in some way.
  35. P

    Retrieving WinXP CD-Key

    Ah, sorry, re-read your message and see you can see the data but can't actually boot that drive. hmmm... not sure about that one.
  36. P

    Retrieving WinXP CD-Key

    Download and run the Jellybean keyfinder http://www.mjbforum.com/files/keyfinder.v1.41.zip It will tell you the XP CD-Key
  37. P

    Debian and Ubuntu (and derivitives) have serious OpenSSL flaw

    Phew! I've got Ubuntu 6.06 on a server too. Glad I am not affected. :)
  38. P

    Windows 2000 Professional-How is it?

    According to the wiki page, "All Windows 2000 support including security updates will be terminated on July 13, 2010." So you'll keep getting critical updates for included components until then, but no new components are being backported to 2000 (e.g. IE 7, etc.). See...
  39. P

    Break in period?

    Yeah, but that is the M3 ;) From Pat Goss, "... Break-in is typically a thousand miles. And even during break-in you could take a 600 mile trip, the only thing to be concerned with is to vary the speed every 10-15 minutes and avoid full throttle acceleration and hard braking.
  40. P

    Quiet SATA DVD burner

    Thanks, but it appears that model may now be discontinued. A friend at work was talking up his Pioneer DVD-Writer as very quiet (he uses it in a HTPC) and never has problems burning to any media (including DL).
sale-70-410-exam    | Exam-200-125-pdf    | we-sale-70-410-exam    | hot-sale-70-410-exam    | Latest-exam-700-603-Dumps    | Dumps-98-363-exams-date    | Certs-200-125-date    | Dumps-300-075-exams-date    | hot-sale-book-C8010-726-book    | Hot-Sale-200-310-Exam    | Exam-Description-200-310-dumps?    | hot-sale-book-200-125-book    | Latest-Updated-300-209-Exam    | Dumps-210-260-exams-date    | Download-200-125-Exam-PDF    | Exam-Description-300-101-dumps    | Certs-300-101-date    | Hot-Sale-300-075-Exam    | Latest-exam-200-125-Dumps    | Exam-Description-200-125-dumps    | Latest-Updated-300-075-Exam    | hot-sale-book-210-260-book    | Dumps-200-901-exams-date    | Certs-200-901-date    | Latest-exam-1Z0-062-Dumps    | Hot-Sale-1Z0-062-Exam    | Certs-CSSLP-date    | 100%-Pass-70-383-Exams    | Latest-JN0-360-real-exam-questions    | 100%-Pass-4A0-100-Real-Exam-Questions    | Dumps-300-135-exams-date    | Passed-200-105-Tech-Exams    | Latest-Updated-200-310-Exam    | Download-300-070-Exam-PDF    | Hot-Sale-JN0-360-Exam    | 100%-Pass-JN0-360-Exams    | 100%-Pass-JN0-360-Real-Exam-Questions    | Dumps-JN0-360-exams-date    | Exam-Description-1Z0-876-dumps    | Latest-exam-1Z0-876-Dumps    | Dumps-HPE0-Y53-exams-date    | 2017-Latest-HPE0-Y53-Exam    | 100%-Pass-HPE0-Y53-Real-Exam-Questions    | Pass-4A0-100-Exam    | Latest-4A0-100-Questions    | Dumps-98-365-exams-date    | 2017-Latest-98-365-Exam    | 100%-Pass-VCS-254-Exams    | 2017-Latest-VCS-273-Exam    | Dumps-200-355-exams-date    | 2017-Latest-300-320-Exam    | Pass-300-101-Exam    | 100%-Pass-300-115-Exams    |
http://www.portvapes.co.uk/    | http://www.portvapes.co.uk/    |