Recent content by deonejuan

  1. D

    is Perl much simpler than Java, if yes, why?

    Not at all. Perl is very terse and cryptic. Java has long, descriptive naming. Both were made to make web programming easier.
  2. D

    PHP and MySql -Inventory and Stock control system?

    A CMS system is only as good as the database schemas. Look at the link below for the testing database from MySql called Sakila. Scroll down to the Schema diagram. PHP is event-driven. When the schema of what you are trying to do is visualized, then the php coding is straight-forward. One other...
  3. D

    Perl error! Help!? Tells me in concatenating when im not!?

    sub display_game_board { # this does run for me if I take out > clear_the_screen::clear(); So the error is somewhere else in the program I use Padre for my perl IDE. It has debug. If you still have problems, you should use pastebin.com and let us see the whole program. That's the best I can...
  4. D

    IDE for c,c++,c#,perl,python,java?

    For #5. Padre For #7. Eclipse for all the others it is my preference to use NetBeans. Padre is written in C/Perl for Perl. NetBeans does have a plug-in for Lisp. Eclipse and NetBeans are java-based IDE, you must install the JRE / JDK.
  5. D

    Why does most web apps use php and asp.net instead of java technologies?

    php is easy to get started, but it takes years to master. If you install the LAMP stack, then you are ready to go. With Java technologies you have a variety of choices, so many choices that the setup can be daunting. Java is still number one in installed sites when we speak of commerce sites.
  6. D

    Similarities between C and Perl?

    Python is written with C if that's any consolation. I was very surprised to discover in benchmark how python finishes way, way back. Python is one of the slowest languages for number-crunching. Look at the link. People complain about java being slow, when java holds its own against C++ and...
  7. D

    Java Swing Dialog need help!?

    The type returned from myTextField.getText() will be String if( ! Output_Capacity_TextField .getText() .isEmpty() ) { if( Integer .parseInt( Output_Capacity_TextField .getText() ) < 100 ) { JOptionPane.showMessageDialog( null, "gotta have 100+, cowboy ); } else { int x = Integer.parseInt(...
  8. D

    Which language to use for my web app? Java, Ruby, ASP or PHP?

    You better look at LAMP (or WAMP) -- Linux( win) / php / apache / mySQL -- and then you can stay in the javascript level for your pages. JQuery probably needs Struts or similar framework. It takes a lot of effort to visualize a database-driven web page and really think PHP gets you there faster...
  9. D

    how to connect database with php code on the website host?

    you will have to ask them how your php folder, what is <localhost> on your home machine, how the hosted <folder> is configured. we forget the config portion of installation after we setup LAMP that connects that folder to Apache. but, that is the all necessary step.
  10. D

    Html Java Applet help?

    javascript and java can call methods from each other. you have to expose the hooks going both ways. so, yeah, it does take a little code modification on the java side.
  11. D

    Java work as well as flash?

    Flash lets you have interactivity with a graphic like you describe and you add the flash object to a web page. Microsoft is rushing Silverlight as an alternative. And, I have high hopes for JavaFX. Both of the alternatives will do the same things Flash does. JavaFX, developed by Sun Microsystems...
  12. D

    what program do i download to make flash games?

    Only Adobe Flash can make Flash Games. For free, you get one 30 days free trial period for Flash from the Adobe products page.
  13. D

    what program do i download to make flash games?

    Only Adobe Flash can make Flash Games. For free, you get one 30 days free trial period for Flash from the Adobe products page.
  14. D

    What areas of life computers are not as good as humans ?

    Computers can't dream.
  15. D

    I am an artist but I need to know how to create CGI 3-d images? What is needed for that?

    The contract aspect of it, listed there at the end, is bad with your experience level. Modeling is frustrating with a 2D screen and mouse, and slow for the above-average. I would say tho', if you can gather a portfolio of what they 'want' to see (review their listing above), go in for an...
Back
Top