Home
 

Projects

Console x64

See here.

Object Conversion Library for Java

I'm currently working on a generic Java Object conversion library. The idea is to enable "smart" conversion of objects. Say, you would want to convert a byte[] to an int[].

    final byte[] bytes = ...;

    final SptConverter c = SptConverter.createDefault();
    final int[] ints = (int[]) c.convert(bytes, Types.findTypeByName("int[]"));
      

The project can be found here.

jPod - Pod Parser and Formatter for Java

A parser, and XML formatter, for Perl Pod files, in Java.

Coming soon.

pod-input - Pod Input Plugin for Apache Forrest

Pod input plugin for Apache Forrest, which enables display of Perl Pod files.

The project can be found here.