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

  1. B

    script/program request

    The Natural Language Toolkit has a bunch of programs that support doing language and text processing. I believe there is a program included to perform word counts. http://www.nltk.org/
  2. B

    Single Software License Shared 774,651 Times

    No it wouldn't, for a variety of reasons. Firstly, most of that stuff is written in other countries. Secondly, there's a ton of money surrounding compromised computers. Lastly, the stuff is really easy to create.
  3. B

    Specific/Simple best practice question (web application)

    POST: http://www.domain.com/edit-list/${LIST_ID} Just pull the id out of the URL, that's the easiest way to do this.
  4. B

    regular expressions question v.php

    He's just describing the captured variables. You might need those if you want your numbers back. :p
  5. B

    How to find the exact PHP template I need?

    To answer your question: PHP is the best templating language for you to use. What are you trying to accomplish? Think about it this way, PHP *is* a templating engine. What benefit will a templating engine bring you? Adding another layer of abstraction to enforce a design paradigm isn't the...
  6. B

    Finding Good Web Designers

    I'll start with your direct questions first: As far as finding a design firm, that's as simple as going to Google and typing, "web designer in ${your_town}". Seriously, any designer worth a damn knows online advertisement. As for trust, there are two things you need to do to ensure your happy...
  7. B

    Is Wi-Fi Frying Our Brains?

    I put my home made beef jerky in a jar. It keeps for years in a jar and is raw but completely safe to eat. My point is, they are serving you highly preserved food. Yes, it is prepared, but it is also preserved. Their food is designed to keep for a very long time. Saying it isn't safe to...
  8. B

    Companies Beware of WikiLeaks!

    You and the entire U.S. Government. It seems like they lucked out that a guy that happened to get a hold of gigs of classified material also allegedly tried to rape someone.
  9. B

    anyone here run web server on a VM?

    We don't run our actual Java web servers under VMs, but we do run a bunch of ancillary web services (HTTP, but not HTML) under qemu. They all are under constant heavy load and the performance is great. We are strongly considering moving all of our web servers onto VMs because they are dream...
  10. B

    Multithreading in java...slow or am I missing something

    Yes and yes. Not exactly. Sharing read only (final) objects is fine, which is why immutable objects are very popular for concurrent programming in Java. The problem with sharing objects stems from data encapsulation, you never know (unless you wrote the code) if executing a method is...
  11. B

    Multithreading in java...slow or am I missing something

    I see that ambientZ has you covered for the synchronization piece. :) A few other things I did was: * Make VolumeData and RayCasting cloneable with each clone method returning a new VolumeData or RayCasting with the same parameters as the original. * Fix the PerspectiveCamera.clone()...
  12. B

    Multithreading in java...slow or am I missing something

    I'll need to see your code to say for sure, but I can try. Disclaimer: I don't have a CS degree. Going by estimation alone, resource locking is probably what is killing you. Whenever you attempt to access shared memory, Java has to acquire locks for that resource, which are expensive and can...
  13. B

    Netflix Offer $100K Per Episode For TV SHows

    Fuck yeah Comcast is going to freak out. I bet you will see lots of the big networks jumping all over this, but I don't expect many (if any) cable networks to jump on board. Since the best shows are nearly always from the big four, they should a lot of great content. Same here. It is a lot...
  14. B

    Sweden Seeks Warrant for WikiLeaks Founder

    I'm not surprised that the government wouldn't air its dirty laundry. As for companies, they are obligated to hide their secrets, lest the shares holders lose money from negative news and kick the CEO to the curb. I am, however, amused by the responses: 2007: (America) We want government...
  15. B

    NASA Found Aliens Press Conference Soon

    Okay, I'll agree with you on that, it is an important discovery. This is just NASA hyping up an old discovery for some publicity.
Back
Top