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

  1. C

    Is Showrooming Rude?

    Rude may be an awkward term, but I definitely think there's something wrong with "showrooming." These other posts remind me of the "Wal-mart Defense", which is basically I don't care about anything else other than I want it as cheap as possible. Now many big box stores are crummy admittedly...
  2. C

    Open source and code releases

    So the emphasis there is on the *request*? One could use code and not have to make changes available until they are requested to be so?
  3. C

    Open source and code releases

    Reading the latest about Oracle's plans for (Open)Solaris has left me with a question about open source licensing. Oracle has claimed that they will continue to use CDDL for all of the code already licensed under that, but from my understanding, they will only be releasing the source code (with...
  4. C

    Who Needs Friends Like Facebook?

    Just because people don't care doesn't mean it isn't an important issue. If we took that stance then debates like Net Neutrality would never get to see the light of day because your average citizen knows practically nothing about it. Also, on the broader scope of the question, no, this isn't...
  5. C

    Javascript download multiple files

    I'd never do that! I'd wait until it is a widely adopted solution, claim copyright, and sue for millions all SCO-style :)
  6. C

    Javascript download multiple files

    Yes, jiminator is correct, I went ahead and implemented that and it works. In case anyone wants it here's the code: function makeFrame( url ) { ifrm = document.createElement( "IFRAME" ); ifrm.setAttribute( "style", "display:none;" ) ; ifrm.setAttribute( "src", url ) ...
  7. C

    Javascript download multiple files

    I have a table that has a list of files and each row/file has a checkbox associated with it. A user can check these boxes and then click a download button and the idea would be to have each file be fired up as a separate download. The way I have this set up is a form wraps around the table...
  8. C

    Color recommendation for a site

    That is actually a lot like kuler.adobe.com, which I use quite a bit :)
  9. C

    One development IDE to rule them all

    Although I'm a big fan of vim, the original question was about an IDE, not an editor, so I'm not sure vim or emacs is a good answer here. My suggestion would be to check out Eclipse or Netbeans, with my preference probably being for Eclipse. They each have an array of plugins for various...
  10. C

    Color recommendation for a site

    I'm working on a web design and I'm having a bit of trouble with the company colors. It is basically a orange-blue-green palette. The oranges are #FDB844 (lighter, used more) and #E58E1B for darker shades. The blue is #0097D8. My problem comes with the green, which is #B7BE1C. Looking at...
  11. C

    Invocation Target Exception in Java

    Sorry I was trying to make it clear that JAVA_HOME was set in the startup script to point at the proper Sun java location. Unfortunately I cannot post the script because the box got wiped out and I started again from the beginning with a fresh install of CentOS 5. The problem may have been a...
  12. C

    Invocation Target Exception in Java

    Isn't that what JAVA_HOME specifies? I don't recall anything else pertaining to Java in the tomcat file other than the JAVA_OPTS for things like memory size and such.
  13. C

    Invocation Target Exception in Java

    Thanks for the suggestions all, but it still isn't working. I downloaded the .bin file from Sun's site (not the rpm.bin), extracted, and moved the folder into /usr/lib/jvm. alternatives --config java -> I have chosen the Sun version (after adding it) java -version -> shows Sun as being the...
  14. C

    Invocation Target Exception in Java

    service tomcat5 start or restart, run as root
  15. C

    Invocation Target Exception in Java

    Just wanted to give the update that installing Sun's Java does *not* fix this error, at least not for my install. I basically did the same thing as found here, which has you download the JDK , extract to a directory, and update alternatives to point at the new java binary. To get Centric...
Back
Top