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

  1. S

    Whats wrong with my "add" method?

    As suggested the 'compareTo' and 'equals' methods in Student are the problem. Or, to be more precise, the lack of them.
  2. S

    Batch file that renames files uniquely

    If you want to find the lowest unused file name of the format BOB[number] then something like this will do the job set I=0 :loop if exist BOB%I% ( set /a I=I+1 goto :loop ) echo bob > BOB%I% so if you want to move the file to the next one along then just replace the last line...
  3. S

    How do I access a drivespace 3 compressed floppy?

    Don't know of anyway of accessing it on windows xp, but linux can do it! http://cmp.felk.cvut.cz/~pisa/dmsdos/ Use a linux box to uncompress it!
  4. S

    VNC to mac from pc?

    Presumably you could use reverse SSH tunneling? I'm not sure how yo'd set it up on the windows end but I'm sure yo ucan google it.
  5. S

    VNC to mac from pc?

    I think he means the listening vnc viewer like RealVNC has on windows. So the service is supplied on the end that inititiates the TCP connection. Don't think RealVNC exists for mac though, don't know if other clients do the same
  6. S

    Need to Backup Pics to External HDD Help!

    In windows you can search for 'Pictures, music or video', select pictures. This will give yo ua window full of the files that you can copy and paste as normal
  7. S

    Saving webpage for offline viewing?

    http://www.httrack.com/
  8. S

    transferring files from win xp to linux (linux noob question)

    Since you say you're a linux noob I'll point yu to some instructions : http://www.linuxforum.com/linux_tutorials/1/1.php
  9. S

    Adding a user

    The path '\' refers to the drive root like 'cd \'
  10. S

    Video sound to just regular mp3 or wave....

    Yes it is possible. The best way to do it depends on the format though. One way is to play it in winamp and use the diskwriter output plugin. Wont be the fastest way but it works, and if youve already got winamp... Also, most other tools I could find to do it are shareware or otherwise restricted.
  11. S

    Adding a user

    'net user' contains some of what you want. Type 'net user /help' for instructions. in particular "net user $username $password /add" will do the job (if you put the password as * you'll be prompted or it, which is more secure, since the passwords not listed in your command history) This adds...
  12. S

    1 client DHCP server on my current pc?

    No, thats different. That would still confuse the router
  13. S

    Please help me secure a wireless connection...

    There's a few options for wireless security, a combination of which should be enough to stop the average person using the network (espeially as theres 3 unsecured networks to use instead!) Firstly yu need to find out what encryption your router supports. Assuming it supports WPA you need to...
  14. S

    DNS GUI Interface?

    I've only ever used distribution bundled gui config tools for bind. Redhat/fedora ahs one, i don't know about others. edit: H'ver a quick google provided kcmbind
Back
Top