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

Search results

  1. B

    Anyway to broadcast a streaming video?

    You could frame or iframe their content but make sure and ask permission first
  2. B

    ITT Fined $100M For Illegal Exports

    So why didn't the air force bomb the 117 wreckage in Bosnia? Not true, France, the UK, and China have Hydrogen bombs as well. India/Pakistan/NK are fission only. Israel is probably hydrogen as well, and India could be ready to test an TN device soon. It's better to have an open...
  3. B

    Small validation problem (vs. I'm learning xhtml/javascript/css)

    use the <button> tag <button type="submit" style="color: inherit; background: inherit; border: none; height: $height; width: $width; "> <img src="$imgUrl" alt="$imageAltText" /> </button>
  4. B

    IBM Rack server

    Yeah or s/390 zSeries, basically its crap except melting down the gold and copper.
  5. B

    Is there any GOOD straight forward tutorial sites?

    Start with learning perl (llama book), when you get that figured out, move on up to the Perl Programming (Camel Book). Yes there are elements of humor in both and a bit of a history lesson but they help provide context as to why a computer/language does it one way when in your head it would be...
  6. B

    Online Signature

    Consult your lawyer but the only court acceptable online sig I've ever used is on my tax returns, with i had to know my previous years Adjusted gross income off my W2/completed 1040 to submit this years 1040. I'd guess you'd have to have something as advanced (or a good PKI infrastructure for...
  7. B

    Scrolling Part on Page

    $client_ip_is = $_SERVER["REMOTE_ADDR"]; see http://www.php.net/manual/en/reserved.variables.php#reserved.variables.server for other nifty stuff you can get out of the HTTP protocol predefined variables. Also you can get your scroling box with the textarea tag if you are dealing with...
  8. B

    Seagate Buying Maxtor

    The new sun servers have 2.5" SAS drives as well
  9. B

    Using imagemagick to on-the-fly resize

    PNG is a better format, 8 bits of alpha transparancy, 24-bit pallete (Gif can only have 256 colors per image), better compression algo (GZip). Now that a workaround for IE alpha transparancy is known, there's no reason to use gif unless you've got to support ancient browsers (Pre NS4/IE4)
  10. B

    Using imagemagick to on-the-fly resize

    Yeah, when the unisys patents expired they added the RLE compression code back into the tree. GD could be made to make uncompressed gifs during the patent ban, but it was a hassle for no real benefit.
  11. B

    Plextor PX-716SA/SW troubles

    Which SATA controller is it hooked to? I know the Silicon Image (second SATA channel, ports 5-8) is known good for DVD/CD drives, not so sure about the NVRAID ports 1-4
  12. B

    Using imagemagick to on-the-fly resize

    GD2 has had gif support back for at least 6 months, not that you should be using gifs anyways.
  13. B

    Using imagemagick to on-the-fly resize

    GD is/was the gold standard for image manipulation, but it is a bit of a troublemaker when it comes to making sure it is compiled and installed correctly and PHP is compiled and installed correctly. IM works out of the box in most cases, but it sometimes lacks to power of GD IMO.
  14. B

    php help needed

    HTML-Kit has great FTP support for opening and saving remote files, windows only. Rumors are it works under wine but I've never got it operational.
  15. B

    Looking for Mobo with most PCI slots

    Sorry, here's the microsoft kb article about multi display, its 10 displays total per box, so 2 4 port cards plus 1 2 port card like in my suggestion will max it out. These guys claim that Ultramon can display 16 displays under windows, so 4 of those four port PCI cards should work, which...
  16. B

    Looking for Mobo with most PCI slots

    You're looking at multiple PCI busses at that point, maybe the sun/newisys opteron boxes where there are "daughterboards" that have their own PCI busses. To be fair though, WindowsXP only supports a 3x3 grid natively, which 2 of these plus a AGP or PCI 2 header will cover no problem. At...
  17. B

    "getting" text off a page

    Keep in mind that Mapquests data is actually licensed from other people and if you redistribute you are looking at a major copyright infringement suit. Be carefull
  18. B

    WebProgrammingLanguages.

    PHP, and when you hit its limits, you've got enough of a background to start looking into perl/mod_perl. On the DB side, don't neglect learning about postgress once you learn a good deal about mysql, it will keep you from making some of the "mistakes" that mysql lets you get away with for...
  19. B

    What language for this problem?

    That's easily done as a HTML form with perl or php and a text file as the backend.
  20. B

    Best XML editor

    HTML kit, has a DTD/Schema validation plugin and a CSVtoXML plugin for just this sort of work.
  21. B

    where to start with Perl

    take a look at cpan.org's info on Net::SNMP and Bundle::LWP, these are two perl modules (or bundles of modules) that can handle the data collection/presentation, you just need to work your magic on the raw data
  22. B

    Website Authentication

    Basic auth can be done with encrypted passwords in the on disk file, in fact htpasswd gives you the option to pick a cipher of your chosing.
  23. B

    How can I explore a websites root dir?

    Most definitely, if you need to crawl a doctree you should be doing it from the command line or FTP.
  24. B

    PHP script question

    In perl their are good modules for doing things like that based on the LWP code. PHP has curl interfaces that can be compiled in, I'd start digging through their documentation on the curl extension and see if that can help.
  25. B

    I've been searching, but I cant find anything.

    There are a lot of CMS's with the featureset you are looking for, I use e107 myself, but there are 10-15 in wide use, mostly php-nuke derivatives (postNuke is the biggest of those) But most of those require mysql at a minimum, most hosting providers are throwing in DB access as part of the...
  26. B

    .htaccess anti-hotlink problem

    You might want to lock that down a bit, you just allowed .htaccess rules to do anything they are capable of within your document tree. If you are the only user on that server, might not be an issue. read over httpd.apache.org's doc on the AllowOveride directive, it is fairly fine grained on...
  27. B

    Web Page: How to do what I need?

    There are a lot of Content Management systems that fit they profile of what you are trying to do. I personally use e107 http://www.e107.org, but postnuke is used by tons of places and there are more out there. I'm considering horde.org's CMS for future projects, which isn't out of alpha...
  28. B

    PHP newline

    That is exactly why your code failed, ' " and ` (single-quote, double quote, and backtick) all have different semantic meanings for a piece of code. Oreilly's PHP book can give you the gory details, but it is largely inheirited from perl's quoting syntax.
  29. B

    Help!!! SquirrelMail is giving me an error...

    Try accessing the server as an IMAP client, see if the folder/messages layout is (more) sane
  30. B

    Need advice on database software/idea

    Php, perl, python, java and ruby are not strictly web scripting languages, each has its own database abstratction layer, some are better than others (I prefer Perl DBI, some people like java's JBDC) On unix/linux/BSD systems perl is almost assuredly going to be a click and run app, on windows...
  31. B

    Help!!! SquirrelMail is giving me an error...

    That's the joy (and pain) of IMAP, everything always exists, server-side, a client (SqMail, OE, Thunderbird) gets a peek at the current state. Are you accessing the account as IMAP through OE or as POP, if it is in IMAP mode it may be a little smarter on what the relationship between the...
Back
Top