I recently got to work on a pretty cool project for a client. They needed to have their employee’s electronically sign their time cards which were generated by a SSRS report exported as a PDF. To accomplish this we used DocuSign which has a really good SOAP API and was really easy to work with. […]
Read moreCategory Archives: Programming
PayPal Soap API
I got to “play” with the PayPal SOAP API last week for a website I was building on. It was very easy to work with and I was surprised at how quick I could could get a checkout page going in ASP.NET/C#. It could have been quicker but some of the documentation on the PayPal site was […]
Read moreProgrammers excuse for slacking off!
Forms, Spam, and Captchas
Over the last couple of weeks I have started having some problems with spam showing up on various pages where I allow the a visitor to post comments. The message is always the same across all the pages. To help prevent this type of spam the visitor must register with the site and have their […]
Read moreHello World! in different languages.
In Java: class HelloWorldApp { public static void main(String[] args) { System.out.println(“Hello World!”); } } —————- In PHP <?PHP echo “Hello World!”; ?> —————- In C: #include <stdio.h> main(){ printf (“Hello World!n”); } —————- In C++: #include <iostream.h> main(){ cout << “Hello World! “; } —————- In Pascal: Program Hello (Input, Output); Begin Writeln (‘Hello […]
Read more