I just submitted Wallet Guard Version 1.2 to the App Store. This version brings the most requested feature "Categories". You can now sort your wallet entries any way you like by creating your own categories or use one of the pre-defined groups. The update should be live soon...
http://www.sunandmoonapps.com/wallet-guard.html
Update: Wallet Guard 1.2 is live!
-Kevin
Thursday, May 16, 2013
Friday, April 5, 2013
Wallet Guard 1.1 New Features
There is a new version of Wallet Guard 1.1 now available for download on the App Store.
New features:
-enjoy!
New features:
- Choice of numeric keypad for easier passcode entry
- Option to alphabetize entries and still use manual ordering
- Share wallet entries securely via Bluetooth with other Wallet Guard users
- User interface enhancements
-enjoy!
Friday, February 8, 2013
Wallet Guard
My new iPhone App Wallet Guard launched!
Wallet Guard allows you a secure way to store all your cards right on your phone.
Wallet Guard allows you a secure way to store all your cards right on your phone.
- Capture front and back images of all your cards
- Create usable barcodes for all your club and reward cards
- Keep track of website, phone number, user name, password and other information associated with each card
- Securely login to card websites with our built-in web browser and insert username and password information easily
Friday, April 13, 2012
Integrated Auth with Selenium
In order to run Selenium with integrated auth you can create a Firefox profile in code and set your server as an NTLM auth trusted URI.
// Setup Firefox profile to support integrated auth var profile = new FirefoxProfile(); profile.SetPreference("network.automatic-ntlm-auth.trusted-uris", "localhost"); profile.SetPreference("network.ntlm.send-lm-response", true); this.Driver = new FirefoxDriver(profile); // Set global wait timeout to 10 seconds this.Driver.Manage().Timeouts().ImplicitlyWait(new TimeSpan(0, 0, 10)); this.BaseUrl = new Uri("http://localhost/"); this.VerificationErrors = new StringBuilder();
Sunday, April 1, 2012
Range Validation with jQuery Validation Plugin
Sometimes you need to do client side validation based on other controls on the screen. Here is an example of how you can use the jQuery validation plugin to do dynamic range validation:
View fiddle
<style type="text/css"> label.error { color: red; } </style> <form id="betweenForm" method="post" action=""> Change some values:<br/> <label for="a">Field min:</label> <input id="a" name="a" type="text" value="1" /> <br/> <label for="b">Field max:</label> <input id="b" name="b" type="text" value="100" /> <br/> <label for="c">Field between:</label> <input id="c" class="required" name="c" type="text" value="" /> <p> <input class="submit" type="submit" value="Submit"/> </p> </form>
// Using jQuery Validation plugin $("#betweenForm").validate({ rules: { c: { required: true, min: function() { return $('#a').val(); }, max: function() { return $('#b').val(); }, } } });The import part is to note how you can pass in an anonymous function instead of a static number for min and max.
View fiddle
Saturday, February 4, 2012
jsFiddle
If you haven't already tried jsFiddle you are missing out. This is one of the handiest little websites for playing with JavaScript code and trying things out. It's actually kind of addicting once you start fiddling. Anyhow, here's a little JavaScript I have been fiddling with. Max int in array, reverse linked list, cached fibonacci, and tiny pub / sub.
Subscribe to:
Posts (Atom)
TaskForce!
Coming soon, a new kind of todo app. A gamified task manager. Get rewarded for completing tasks with gold. Use your bank to upgrade your shi...
-
My new game is out. Hero! A new age platformer you have to play to believe. You are the hero! Find the key and escape the dungeon. Battle en...
-
Sometimes you need to do client side validation based on other controls on the screen. Here is an example of how you can use the jQuery val...





