-
Recent Posts
Categories
Archives
- February 2021
- January 2021
- December 2020
- November 2020
- October 2020
- September 2020
- August 2020
- July 2020
- June 2020
- April 2020
- February 2020
- January 2020
- December 2019
- November 2019
- October 2019
- September 2019
- August 2019
- July 2019
- June 2019
- May 2019
- April 2019
- March 2019
- February 2019
- January 2019
- December 2018
- November 2018
- October 2018
- September 2018
- August 2018
- July 2018
- June 2018
- May 2018
- April 2018
- March 2018
- February 2018
- January 2018
- December 2017
- November 2017
- October 2017
- September 2017
- August 2017
- July 2017
- June 2017
- May 2017
- April 2017
- March 2017
- February 2017
- January 2017
- December 2016
- November 2016
- October 2016
- September 2016
- August 2016
- July 2016
- June 2016
- May 2016
- April 2016
- March 2016
- February 2016
- January 2016
- December 2015
- November 2015
- October 2015
Meta
Tags
- apache
- arduino
- aws
- best practices
- blogging
- build a computer
- c / c+
- cloud computing
- computer
- computer science
- DIY
- docker
- dos
- education
- encryption
- FOP
- hardware
- howto
- humor
- java
- linux
- make
- oldschool
- online shopping
- open source
- paranoid
- pcbuilding
- performance testing
- politicians
- programming
- review
- scripting
- security
- setup
- soapbox
- surveillance
- tinfoil hat
- UK
- virtual computing
- virus
- web services
- websphere
- windows
- wordpress
- XSL-FO
Tag Archives: best practices
Machine generation of PDF files the easy way – part IV
This fourth example will extend upon my previous XSL-FO script to convert the list from a table with a few boxes into more of a polished form. The final result will generate a form and will look like this. You … Continue reading
Posted in programming
Tagged best practices, FOP, open source, XSL-FO
Comments Off on Machine generation of PDF files the easy way – part IV
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 best practices, FOP, open source, XSL-FO
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 best practices, FOP, open source, XSL-FO
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 best practices, FOP, open source, XSL-FO
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 best practices, FOP, open source, XSL-FO
Comments Off on Machine generation of PDF files the easy way
safe(r) and private browsing using more cpu cycles
“You are never going to amount to a thing” Whoever said that was apparently under-estimating just how valuable that companies in general and the internet in particular find you. The web companies want to know what you have been up … Continue reading
Posted in Soapbox
Tagged best practices, security, virtual computing
Comments Off on safe(r) and private browsing using more cpu cycles
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
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
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 best practices, java, open source
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 best practices, java
Comments Off on compiling and making jar files with Ant