March 23, 2010 in C#, Programming Techniques, JavaME, Programming Techniques by Michael Chrisman 0 Comments
This is a presentation I did for the Boise Code Camp and Tech Fest. It talks about how to do data managements using the Record Management System provided in J2ME. It also covers use Data Access Object approach to handling your data management. Data Management in J2ME using the RMS.zip …
Read More
March 01, 2007 in Programming Techniques by Michael Chrisman 0 Comments
This entry as been re-written. Please see: http://planetchrisman.com/blog1/2007/10/24/using-active-directory-to-manage-your-web-application-security/
Read More
March 01, 2007 in Programming Techniques by Michael Chrisman 0 Comments
It is possible to swap two variables without using a temp variable. The first example works for numbers: (examples are in perl) $a=5; $b=7; # the swap $a = $a - $b; $b = $b + $a; $a = $b - $a; # $a now equals 7 # $b now …
Read More