// jQuery
$(document).ready(function() {
// code
})
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function isValidPassword(password) { | |
/* giving credit... http://www.thegeekstuff.com/2008/06/the-ultimate-guide-for-creating-strong-passwords */ | |
var ucAlphaCount = 0, lcAlphaCount = 0, numberCount = 0, specialCount = 0, | |
parsedPwd = password.split(''), specialChars = ['!', '@', '#', '$', '%', '&', '_']; | |
//0. 8 characters in length | |
if (password.toString().trim().length < 8) { return false; } | |
//1. at least one lower case alphabet | |
//2. at least one upper case alphabet | |
//3. at least one number |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function isValidPassword(password) { | |
/* giving credit... http://www.thegeekstuff.com/2008/06/the-ultimate-guide-for-creating-strong-passwords */ | |
var ucAlphaCount = 0, lcAlphaCount = 0, numberCount = 0, specialCount = 0, | |
parsedPwd = password.split(''), specialChars = ['!', '@', '#', '$', '%', '&', '_']; | |
//0. 8 characters in length | |
if (password.toString().trim().length < 8) { return false; } | |
//1. at least one lower case alphabet | |
//2. at least one upper case alphabet | |
//3. at least one number |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Interactive Resume | |
------------------ | |
http://jsbin.com/jilaxo/205/ | |
Dynamic filtering using key:value(s) pairs.
A Pen by Geeks Rock on CodePen.
Save code snippets to localStorage. Code retains formatting when retrieved.
A Pen by Geeks Rock on CodePen.
CodeGenerator: Creates class shells for VB.Net, C#.Net, JavaScript and PhP.
A Pen by Geeks Rock on CodePen.