Recent content by Akrin

  1. A

    NO HL3 or other 3d games

    The patent in question is not for the invention of 3D graphics, but a specific camera (point of view) system for viewing 3D graphics. Specifically one which would be similar to games such as "Homeworld", where there is some central point where the camera is always focused. In the patent...
  2. A

    JSP Dynamic Includes

    Probably a misunderstanding here... Not telling people not to use it... just saying that I never use it; not because it isn't usefull but because I've never had a real reason to use it. But that wasn't the point of my post... the point was to suggest to AH_Viper to use getParameters instead...
  3. A

    JSP Dynamic Includes

    Don't use JSP... ever, but... ...when doing a quick search on request.getQueryString(), I didn't come across a single use of it where it took any parameters. It seems to only have an arity of 0. Which would explain why the error said you passed in an incorrect number of agruments. What...
  4. A

    Thanks to you guys...look what I can do!

    http://www.digitalmars.com/d/ http://www.dsource.org/ Have fun.
  5. A

    Site Countdown Timer

    Like this (see attatchment)? (completion bar starts from 4 weeks to 16th)
  6. A

    We are looking for a site countdown timer

    Just noticed this thread, so... A flash version if your interrested. - Does countdown with weeks,days,hours,minutes,seconds, hundredth's of seconds. - Takes into account timezones (or atleast it appears to). - Release date set at 00:00:00.00 Nov. 16th, 2004. - Has a completion bar...
  7. A

    Could Valve make a Billion with HL2 over 3 years.?

    Such is the case with the majority of the world. Billion = 10^9 (part of the "short scale" ) in english speaking countries, and brazil. Having a billion = 10^9 was originally french/italian convention (in the 1700s), then later adopted by the US to differ themselves from the UK (which also...
  8. A

    Interesting article about Java performance

    The first link I posted did not mention C++, it mentioned C#. Likewise I have always found C++ to be more usefull for what I have been doing - not for the speed but for the functionality of the language. When ever I deal with problems that are speed important I switch to C / Assembly ( and...
  9. A

    Interesting article about Java performance

    And there are many articles using speed comparisons which the exact opposite is the case. They can't all be right and this article alone (including the benchmarks it listed) are not enough (some of the reference links are broken, the ones that work do not provide actual code used; so determining...
  10. A

    Using search results

    Post more of your code.
  11. A

    Good C++ Programming books worth the money

    http://cprog.oreilly.com/ http://www.amazon.com/exec/obidos/tg/detail/-/0672322234/qid=1094100672/sr=8-2/ref=pd_ka_2/102-0134362-2520904?v=glance&s=books&n=507846...
  12. A

    Need Help With My Java Project

    Put the classes SailBoat and RaceBoat in "SailBoat.java" & "RaceBoat.java" respectively. Classes need to be in their own file. Once you do that it appears to fully meet the specifications you provided.
  13. A

    Need Help With My Java Project

    Started using Java about a year ago, been programming with a variety of other languages for 8 years.
  14. A

    Need Help With My Java Project

    Either (a) You didn't save the file as Proj2.java (b) You aren't in the right directory.
  15. A

    Need Help With My Java Project

    You use the names of the boats as command line arguments, if you want 3 names you just put 3 arguments. Example, using a command prompt (windows), or shell(unix/linux), javac Proj2.java java Proj2 Wasabi Chalupa Neptune would produce the output Boat number 1 - This boat's name is...
Back
Top