eldeo
Members-
Content Count
20 -
Joined
-
Last visited
Everything posted by eldeo
-
You can also run java program as a windows service. Use javaservice free tool
-
Nice form! I think its very interesting
-
I like only one Kurt Cobain song but I don't remember the title;)--eldeo
-
Is anybody here who have seen Football Factory??It is film about football fans from England and about hooligansWhat do you think of this film?--eldeo
-
What is the best film have you ever seen ??What is the best:1. horror film 2. comedy3. s-f4. drama5. ...you ever seen?
-
-Backstreet Boys-Take thatand any other boysbandand any pop bands--eldeo
-
New Zealand> What do you think of my country??
eldeo replied to iGuest's topic in General Discussion
I think your country is beautiful because you have both mountains with snow (I like snowboard) and beaches with beautiful women:) (I know something about it;) )--eldeo -
I like any kinds of spors but the best I love:-swimming-skiing-body-building(and football of course:) )--eldeo
-
How many percent of men you know go to the gym?How many percent of men you know do any sports (regularly)?(write from which city and country you are)--eldeo
-
What do you think of new Microsoft operating system? (XP successor - 2006/2007)--eldeo
-
You should start from web tutorial e.g.http://www.w3schools.com/asp/default.asp - short and good tutorial http://forums.xisto.com/no_longer_exists/ - good tutorial for beginners--eldeo
-
I think ASP is much better than CGI. ASP is newest than CGI, it has more options, and you can simply create big web applications (using ASP). On the other hand, it's true that ASP is slower than CGI, but in the future nobody will use CGI--eldeo
-
You can use Runtime.exec() method If you have any problems with this look at page: http://www.javaworld.com/ You can find there everything about errors, when you use Runtime.exec() -- eldeo
-
hi!I'm looking for good page to learn about EJB.I need to know how to:-write session bean-write good interfaces-deploy and run EJB on my computerI need short tutorial--eldeo
-
To learn about assembler I advise you this page: http://www.csn.ul.ie/~darkstar/assembler/ If you want to write microchips look at this site: http://www.avr-asm-tutorial.net/ -- eldeo
-
There is no problem to watch TV using cell phone!!I use Nokia 3650 to watch TV, but there is a lot of cell phones you can use for this. The best option is UTMS, but it isn't necessary--eldeo
-
Total CommanderIt's good because if you use Total Commander to manage your files, you don't need any other applications to FTP. Total Commander FTP client has many options and functions--eldeo
-
I think this is very good site: http://www.challenge.nm.org/ctg/c++/tutorial.shtml If you are beginner, you should start from this page You can also read there about Java, HTML... -- eldeo
-
I advise you DevCpp. It's good development enviroment and it's free. You can - debug your sorce code- use track/step- add libraries- ...(It's only for C or C++)If you also use JAVA, I advise you Eclipse--eldeo
-
Creating a Compiler The Nightmare of a Comp Science Students
eldeo replied to hansley's topic in Programming
Hi!I wrote C interpreter, Pascal interpreter, Icon interpreter, C->Pascal translator and C->ICON translator(everything in ANSI C)You should read something about Flex/Bison (lex/YACC)(use google to find it)--eldeo -
If I need to write something very short I use notepad (and standard java compiler - javac), but to write projects I use:- eclipse - it's free- IntelliJ IDEA - it isn't free and need a lot of RAM, but it's very goodIf you have few RAM, I advise you e.g. crimson editor--eldeo
-
To deploy this code you need - Sun Application Server or - Tomcat I advise you to download Tomcat from this site http://tomcat.apache.org/ and read tutorial. You need serveral hours to learn about it -- eldeo
-
very simple servlet:////////////////////////////////////////////////import javax.servlet.*;import javax.servlet.http.*;import java.io.*;public class SimpleServlet extends HttpServlet { int i = 0; // Servlet "persistence" public void service(HttpServletRequest req, HttpServletResponse res) throws IOException { res.setContentType("text/html"); PrintWriter out = res.getWriter(); out.print("<HEAD><TITLE>"); out.print("simple servlet"); out.print("</TITLE></HEAD><BODY>"); out.print("<h1>This is simple servlet " + i++); out.print("</h1></BODY>"); out.close(); }}////////////////////////////////////////////////