-
Recent Posts
Archives
Frequent Topics
595 Android API mode APK Arduino bash clone cygwin DX160 EEPROM EL GlobalCache Graphic LCD hack home automation IE Infrared Internet Explorer IP2IR IR JAR java javascript jQuery jQuery UI LCD manual install MongoDB ORM Parallax RFID Schlage Serial Servo shell shift register simulator SoftwareSerial Sparkfun TTL X-10 X10 XBee XML mapping z-indexMeta
Author Archives: admin
Drobo-FS and droboports; turbocharge your NAS
I’ve had a Drobo-FS for a while now and just recently met someone who has a Synology. They were telling me all of the awesome things their NAS could do that mine couldn’t… or so I thought. The Drobo-FS is … Continue reading
Posted in Uncategorized
1 Comment
Intro to CNC 2
Google Sketchup Google SketchUp export SKP to DXF Plugin G-code reference(cheat sheet) Cheat Sheet CamBam 40 unlimited trial sessions, after that it’ll still generate 500 lines of g-code Download Stuff that will be useful for assignments (in case your geometry … Continue reading
Posted in Uncategorized
Leave a comment
Send mail easily from a Java application with Mandrill
Mandrill SMTP (Simian Mail Transfer Protocol) Does sending emails from your java program have you red in the face? Mandrill’s red on the other end but they’ll take care of your emails and take the stress off of you. The java … Continue reading
Posted in Uncategorized
15 Comments
Technology introduction – Will grandma use it?
I was on a cruise this past week when I learned that Steve Jobs had died. I watched a short news story that tried to discuss why he was such an important figure in technology but I think they completely … Continue reading
Loading CSS from a JAR file evaluating EL
Yesterday I briefly explained how I was loading CSS files from a JAR and forcing their content through Velocity to evaluate expressions. A co-worker offered up a more simple solution, it’s after the break.
Loading CSS from a JAR file
Recently a co-worker created a jar with common utilities in it including some JSP tags. The tag was easy enough to deal with but how do you load CSS/JS from a jar file? His solution was pretty simple; create a … Continue reading
Posted in CSS, Programming, Velocity, Web Development
Tagged CSS, EL, JAR, JSP, Velocity
Leave a comment
Spring MVC AJAX web services Part 2, attack of the JSON post
Previously I covered how to create simple AJAX web services using Spring MVC and annotated controllers. This made it very easy to create robust services that automatically convert your java beans into JSON for easy consumption by your AJAX client. … Continue reading
Posted in Java, Javascript, jQuery, JSON, Programming, Spring
Tagged annotation, controller, java, javascript, jQuery, mvc, spring
2 Comments
Cygwin Gotchas
I’m going to use this post to detail issues I run into when using cygwin on windows so I’ll be able to easily find them when I have that “Oh, I’ve run into this before” moment. Environment Variables: Cygwin only … Continue reading
Spring MVC AJAX web services
With SpringMVC, writing REST type web services is brain-dead simple. The Jackson mapper is a very powerful library that automatically converts your POJOs to and from JSON without any interaction from you. Think it’s too good to be true? It’s … Continue reading
Posted in Javascript, JSON, Programming, Spring, Web Development
2 Comments
Java ORM using mongoDB part 2
Previously I briefly introduced the mjorm mongo-java-ORM solution I found. This post will go more in-depth and give more specific examples of querying, creating, and removing records from your mongoDB instance. If you don’t already have mongoDB, you’ll need it … Continue reading