• 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 wuggle

  1. W

    New Directron Hot Deals / Red Tag Sale

    As a software developer, props to you guys for listening to clients and to your devs for getting new features out the door quickly.
  2. W

    Just Cause 2 HardOCP NVIDIA Giveaway

    I want a copy of this game.
  3. W

    Should I keep going with this design...?

    I would say the biggest thing that jumps out to me is how little of screen space is actually being used. On 1280x1024, maybe about 1/4 of the page has content on it. The entire right half of the screen is just empty space. The "home", "blog", "projects", "about", "contact" menus are not...
  4. W

    Post your badge here for the givaway!

    Just started folding last week...
  5. W

    Help me finalize a new rig

    Tiraides- thanks for your recommendations. I have a question about the RAM... from what I've read, you can't run the RAM at 1600 on a i5 750 withing o/c'ing the CPU. Is that true? In that case, would it be better to go for 1333 RAM with good timings? I don't want to put myself into a situation...
  6. W

    Help me finalize a new rig

    Couple weeks ago, my trusty old PC passed away. She was a good rig, bout 5 years old, AMD X2 3800+, MSI Neo4, 2 gigs of ram, 7800 GT, *tear* But alas, it is time to move on and build a new, modern PC. I've been doing some research and heres the build I have put together. One big piece that...
  7. W

    Steam Weekend Deal: X-Com Complete Pack $4.99

    this is sweet... thanks op
  8. W

    Sudden hard drive death

    So I wake up this morning and my BIOS isn't recognizing my couple-month-old 1 TB drive. It's a Seagate 7200.11 1TB (Model: ST31000340AS, Firmware: SD15, Made in Thailand) that I got from ZZF 6 months ago. This sounds *exactly* like...
  9. W

    Microsoft Natural Ergonomic Keyboard 4000 questions

    I use that keyboard at work... ~8-9 hrs a day 5 days a week for about 7-8 months now. No carpal tunnel! I can't comment how it is for games, but its great for typing. The only bad thing that I can say about it is that sometimes I reach for the 'y' key with my left hand and miss it completely!
  10. W

    Project Collaboration Software

    http://trac.edgewall.org/
  11. W

    Syntax and efficiency question

    They do care. But time to market > performance atleast for the short term. If you think about it, thats the definition of a product that is in beta testing. People accept the fact that the product is not completely stable and they are okay with that as long as the new features are worth it. Now...
  12. W

    Syntax and efficiency question

    quicksort is 300x faster than bubble sort for n=1000? More like ~100x. n log n is actually n log(base 2) n :) But thats besides my point... my point is that you don't know how much time it will take to do all that number crunching. It could be 10s vs 100ms or 10 ms vs 100 ns. *THATS* my...
  13. W

    Syntax and efficiency question

    Can you tell me, without implementing, how long would it take to sort 1000 ints? Bubble is "slower" than quick sort, but can you quantify "slower"? I disagree with the point you seem to be implying: that it is possible to get the performance metrics of an algorithm before you have implemented...
  14. W

    Syntax and efficiency question

    Yes. You're right, choosing the appropriate algorithm is more important than tweaking the algorithm for efficiency reasons. However, my point was slightly different: My point is that using quick sort vs bubble sort may not even matter in the scope of the bigger picture. If you need to sort an...
  15. W

    Syntax and efficiency question

    1) Write readable code that gets the job done in a reasonably fast manner 2) If its too slow, find the bottle neck and refactor/optimize it 3) Rinse and repeat as many times as necessary The basic idea here is that you won't know how slow/fast something will be until its running in front...
Back
Top