Category Archives: Programming

DocuSign

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 more

Hello 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