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

  1. B

    changing page title dynamically

    There are a few different ways. Probably most preferable is doing it server-side, specifying the title using some php. Dynamically, using javascript, you set the window title using this code I believe: window.title = 'Some text';
  2. B

    try catch my java quiz question

    One way certainly is to catch the exception. Another, exceptionless way is: // Question #1 ++counter1; ++counter2; value1 = 1 + ( int ) ( Math.random() * 50 ); value2 = 1 + ( int ) ( Math.random() * 50 ); value3 = 1 + ( int ) ( Math.random() *...
  3. B

    Quick question about XML/XSL

    You need to set the xsl output type to html. <xsl:output method = "html"/> A google search turns up this page that might give you more info and context: http://www.vbxml.com/xsl/articles/xsl_transformations/default15.asp EDit: turn off smilies OMG, why would I want a smiley in a...
  4. B

    HTML Print Tag

    In internet explorer there's a javascript call: window.print(); So you can do this for a link: <a href="#" onclick="window.print()">click here to print</a> or <button onclick="window.print()">click here to print</button>
Back
Top