Wordpress - nealvs.wordpress.com - The Programming Blog
General Information:
Latest News:
Android App – Number Trivia 25 Aug 2013 | 03:56 am
I was trying to come up with another app idea so I was browsing through mashape.com and found numbersapi.com. The creators allow it to be used by anyone. As always, with any app idea, I searched Googl...
Android App – Star Wars Sounds 24 Aug 2013 | 11:54 pm
I thought it would be fun to have a Star Wars soundboard on Android. I searched for existing ones on Google Play and found a few, but they were low quality in UI design and sound quality. StarWars.com...
Android App – Memorize Scriptures 24 Aug 2013 | 11:40 pm
A co-worker carried around 3×5 cards in order to memorize scripture references. He asked how hard it would be to create an Android app to replace his 3×5 cards. I became interested and volunteered to ...
Android Studio 24 Aug 2013 | 11:00 pm
Android Studio is only in beta, but it’s awesome! It is a huge improvement from the Eclipse development environment. It is my first experience with the IntelliJ IDE so I had to learn all new shortcuts...
Creating Excel Document with Apache POI 24 May 2013 | 02:53 am
public static byte[] convertCSVToExcell(String csv) { byte[] result = null; try { // Convert csv to lists of strings CSVReader reader = new CSVReader(new StringReader(csv)); List arList = reader.readA...
Line Chart for Emails with JFreeChart 24 May 2013 | 02:52 am
Includes sampling data down to 75 data points private byte[] getLineChart(List data, ReportEntity report) throws Exception { DefaultCategoryDataset dataset = new DefaultCategoryDataset(); CategoryAxis...
Email Attachments using Java Mail 24 May 2013 | 02:49 am
String html = "Your report data is attached for: " + report.getTitle() + " - " + new Date(); String plain = html; List attachments = new ArrayList(); List data = getReportData(report); if(report.isLin...
Running Linux-like Crons in Java 24 May 2013 | 02:17 am
This doesn’t handle improper input, but it works for proper input. I use it on a Spring MVC Scheduled Task that runs every minute to dynamically pull Report Schedules from the database and check if th...
Thrive Life Pro is leaving Beta 4 Apr 2013 | 08:41 am
It’s been exciting to get Thrive Life Pro to the point that we can leave beta. We have been able to acquire a lot of users that are excited to use it and improve their ability to manage their time in ...
Java Jar Self-Signed 29 Mar 2013 | 06:45 pm
keytool -genkey -alias server -keyalg RSA -keysize 2048 -keystore server.jsk -validity 1440 -dname "CN=server, OU=IT, O=Server, L=SLC, ST=Utah, C=US" && keytool -certreq -alias server -file server.csr...