Category Archives: programming

Machine generation of PDF files the easy way – part III

This third example will extend upon my XSL-FO script to convert the list into more of a table. The result will generate a form and will look like this. What I find to be really well done in XSL-FO and … Continue reading

Posted in programming | Tagged , , , | Comments Off on Machine generation of PDF files the easy way – part III

Machine generation of PDF files the easy way – part II

In my previous article, I went through the basics of what tools would be necessary to use Apache FOP to create PDF files. In this second example will extend upon my XSL-FO script to add a header and footer to … Continue reading

Posted in programming | Tagged , , , | Comments Off on Machine generation of PDF files the easy way – part II

Machine generation of PDF files the easy way – part I

The tools In order to reproduce this work you will need to download Apache FOP and have a recent version of Java on your computer. https://xmlgraphics.apache.org/fop/download.html Page layout There are a number of books that spend hundreds of pages to … Continue reading

Posted in programming | Tagged , , , | Comments Off on Machine generation of PDF files the easy way – part I

Machine generation of PDF files the easy way

In the beginning, personal computers were not quite so friendly and not all users really enjoyed working with them in that pre-windowed state. In that sense, windows from Microsoft was really an advancement as it provided a easy to use … Continue reading

Posted in programming | Tagged , , , | Comments Off on Machine generation of PDF files the easy way

fun with XML – JAXB and arrays

In part I of my JAXB example I briefly described some of the annotations required to turn normal Java objects into XML files with JAXB. To expand on the xml examples from my previous post, I will be taking a number … Continue reading

Posted in programming | Tagged , | Comments Off on fun with XML – JAXB and arrays

fun with XML – a JAXB example

Full disclosure, I am not J2EE expert so my descriptions may be a bit off.  However, using JAXB is just to powerful to ignore.  The first part of this topic is pretty basic, while the second part is a bit … Continue reading

Posted in programming | Tagged , | Comments Off on fun with XML – a JAXB example

making more than jar files with Ant

In a previous post, making jar files with Ant,  I briefly covered the creation of a Ant script that would compile the Java source files and then create jar file from them. It was a really neat example of how with … Continue reading

Posted in programming, Setup From Scratch | Tagged , , | Comments Off on making more than jar files with Ant

compiling and making jar files with Ant

When I first saw Java I was surprised at exactly how embarrassingly simple it was to compile a program. Well, with the caveat that the file or files are all in the same directory. javac *.java When the number of … Continue reading

Posted in programming | Tagged , | Comments Off on compiling and making jar files with Ant

just making it – a 4x4x4 led cube

Some time back, I had a fair amount lot of free time and did watch things on you tube.  A friend of mine showed a number of cool LED cubes that were trending at that time. It seemed so cool … Continue reading

Posted in programming, Setup From Scratch | Tagged , | Comments Off on just making it – a 4x4x4 led cube

getting the most out of your computer – threading

Flashback to 2002 Technology is amazing.  Pretty much since personal computers were created the speed of their processors have been increasing at almost a linear rate of doubling in speed every two years.  This is awesome but it is also … Continue reading

Posted in programming | Tagged , , | Comments Off on getting the most out of your computer – threading