I write my lecture slides in XHTML, using the marvelous HTML Slidy package. I just dump
the images into the same directory as the HTML files, which isn't so smart
because it makes it hard to copy a presentation from one directory to another.
I could change my habit, but hey, what is technology for? A couple of years ago
I decided to write a script that simply generates a list of all images in an...
I am rewriting a Java book for beginners, and it seems to make so much sense
to use
import static java.lang.System.out;
public class Greeting
{
public static void main(String[] args)
{
out.println("Hello, World!");
}
}
I would no longer have to
dissect the awful System.out.println("Hello, World!") expression.
(Ok, boys and girls. System is a class. System.out is
a static field...