|
You are here |
initialcommit.com | ||
| | | | |
rajkumaar.co.in
|
|
| | | | | Let's see how to build a basic Java Enterprise (fondly known as J2EE) application, made up of a Servlet and a JSP file, with the help of the popular IDE by Jetbrains, IntelliJ Idea. | |
| | | | |
stuartsierra.com
|
|
| | | | | [AI summary] This article benchmarks various Clojure and ClojureScript runtime platforms in 2019, comparing their start times for a 'Hello, world' program. | |
| | | | |
owehrens.com
|
|
| | | | | I'm playing around with some web frameworks lately and to see what's in store with Spring 3 MVC (never did too much with it) I gave it a try to see how it handles Ajax. According to ajax simplification announcement it should be possible to get up and running in (almost) no time. We will do a simple web application which will show the current time via Ajax. The directory layout (using maven) should look like this: web.xml | |
| | | | |
connorberry.com
|
|
| | | Language Comparison Perl: while (<>) { print "$. : $_" } Perl: while (<>) { print "$. : $_" } CSharp: using System; using System.IO; class App { public static void Main(string[] args) { int line_number = 1; foreach (string arg in args) { foreach (string line in File.ReadLines(arg)) { Console.WriteLine(line_number + ":" + line);... | ||