I’ve been looking around for a nice WordPress theme. Christophe Coenraets does a fine blog with StudioPress Minimum theme but that is more the reassuringly expensive option. This Blaskan one seems like a good free choice, it’s responsive, clean and uncluttered. All I think I need to add is source code formatting and a GitHub respository to share example code.
class JogoBonitoApp { public static void main(String[] args) { System.out.println("The Beautiful Game!"); } }
And for Gists…
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package net.playermanager.samples.HelloWorld; | |
public class HelloWorldFootballApp { | |
public static void main(String[] args) { | |
System.out.println("Hello World Football"); | |
} | |
} |