by Guru | Sep 13, 2012 | Programming
When using html5 audio and Apple’s safari browser on iOS there is a problem that occurs when you try to set the audio’s time. Html5 audio DOM object has an attribute called currentTime. This unfortunately isn’t available in iOS safari. This makes it...
by Sheryl | Sep 6, 2012 | Business Management, Company News, Industry News, Programming, Software Development
We are excited to showcase a fantastic new mobile app we have helped develop. This app is still in beta but will be released soon! Did you ever wonder what the dealer really paid for that car on the lot? Check out Vinny, a new app that tells you the exact wholesale...
by Mike | Jun 27, 2012 | Programming, Software Development
I like the popover tooltip that Twitter designed and I want to use it in my web applications without having to include the full bootstrap project. I included only the basics needed to give me the popover functionality. Here is what it looks like once implemented: To...
by Guru | May 21, 2012 | Programming
So I found out something interesting with javascript and objects. Let’s say you have a cube object in javascript that is defined by this function. function Cube(x, y, z); Now lets say we had set the z value to be zero. Why would we want a cube object when it is...
by Guru | May 7, 2012 | Programming
Encryption is one of the best tools at protecting data when it comes to computer security. There are many forms of encryption as well. One of the forms that I encountered recently in my work is AES CTR encryption. I am sure you have heard of AES encryption, but what...