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

  1. H

    Lenovo Shipping: Your experiences?

    Once it ships, you still have to hope it gets through customs in a timely manner. I've seen some laptops get held up for weeks in customs.
  2. H

    Remote X through SSH

    elaborate.
  3. H

    Remote X through SSH

    ssh -X user@host appname check the manpage for more info
  4. H

    What is your current Operating System?

    FreeBSD on all my machines. Linux is terrible, and I don't really have a use for Vista or XP anymore (though, I do expect to be moving one of my machines to Windows this summer). @jb_hafo: I'm not sure what you mean by accidentally rebuilding 6 with 7 source code (all you did was build 7...)...
  5. H

    What WM do you use?

    I use dwm.
  6. H

    C - simple scanf question

    You've passed two format strings to scanf(...). It only accepts one. You can use scanf like this to pick up 2 integers: scanf("%d%d", &x, &y);
  7. H

    I feel dumb

    yeah, the ! operator is just making your statement longer and (possibly) harder to read for no reason. do { ... } while(num > 20 && num < 60) would probably be better. If you want to include 20 and 60, you would use <= and => instead. Because of the && operator, both comparisons must be...
  8. H

    I feel dumb

    Talking/writing things out in plain English will will help you understand stuff that like a lot easier. Logical operators are logical, I promise. ;-)
  9. H

    I feel dumb

    I'm not really sure where you're confused. It seems more like you just aren't thinking through what you write: You want a number that is either less than X, or greater than Y. In this case, your X is 20, and your Y is 60. If we read through your statement, it says "do loop while num is...
  10. H

    gOS anyone tried it?

    I bought one of the walmart via desktops with the intention of changing the hard drive and using it as a cheap home server. I gave gOS a spin before I gutted it, and it was a really terrible experience. The interface was a pain, and the machine too weak to even handle the software it shipped...
  11. H

    Need to copy partition

    man dd dd can copy the partition for you.
  12. H

    Everex xt5000t wireless

    your chipset is actually ar5005g according to the everex website. you need to get the madwifi driver for this card. installation will be straight forward.
  13. H

    Unable to install Ubuntu 6.10

    press f6 at boot and try the options irqpoll, noapic, and nolapic. obviously this is a hard drive issure. if you have windows on the machine it could have to do with the ntfs partition.
  14. H

    Thinking of switching to linux, first time user

    mplayer can play just about anything with the win32codecs pack. and theyre are plugins for browsers. As for the OP (and secondary OP). Everyone these days says start with Ubuntu, but if you really want to get confortable with Linux, I suggest Gentoo or Arch Linux. They both give you more...
  15. H

    Has the Desktop Linux Bubble burst?

    you can change the resolution to anything listed in your xorg.conf with ctrl alt +/-
Back
Top