I hereby claim:
- I am artisanalcode on github.
- I am jgarcia (https://keybase.io/jgarcia) on keybase.
- I have a public key whose fingerprint is F745 B5FF EF65 C466 B3D4 2B64 63B6 7DC8 3F09 8DA1
To claim this, I am signing this object:
| find . -type f -name "*.properties" -exec grep -H -c '[^[:space:]]' {} \; | sort -nr -t":" -k2 | awk -F: '{print $1; exit;}' |
I hereby claim:
To claim this, I am signing this object:
| <?xml version="1.0" encoding="UTF-8" standalone="yes"?> | |
| <worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:mx="http://schemas.microsoft.com/office/mac/excel/2008/main" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mv="urn:schemas-microsoft-com:mac:vml" xmlns:x14="http://schemas.microsoft.com/office/spreadsheetml/2009/9/main" xmlns:x14ac="http://schemas.microsoft.com/office/spreadsheetml/2009/9/ac" xmlns:xm="http://schemas.microsoft.com/office/excel/2006/main"><sheetViews><sheetView workbookViewId="0"/></sheetViews><sheetFormatPr customHeight="1" defaultColWidth="14.43" defaultRowHeight="15.75"/><cols><col customWidth="1" min="1" max="1" width="3.0"/><col customWidth="1" min="2" max="2" width="33.43"/><col customWidth="1" min="3" max="3" width="7.0"/><col customWidth="1" min="4" max="4" width="6.14"/><col customWidth="1" min="5" max="5" width="6.0"/><col customWidth="1" m |
| /** | |
| * Little script to help debug focus/blur events on Chrome. | |
| * @note Since ChromeDev tools takes focus it creates an Observer Effect @see (https://en.wikipedia.org/wiki/Observer_effect_(physics). | |
| * @author http://stackoverflow.com/users/2122682/aminimalanimal (Found in StackOverflow) | |
| * @see http://stackoverflow.com/questions/8978039/debugging-onfocus-event-using-chrome-developer-tools-cant-return-focus-after-b | |
| */ | |
| $('*').on( | |
| 'focus blur', | |
| function(event) { | |
| console.log(event.type + " to:"); |
| { | |
| "remove-empty-rulesets": true, | |
| "always-semicolon": true, | |
| "color-case": "lower", | |
| "block-indent": " ", | |
| "color-shorthand": true, | |
| "element-case": "lower", | |
| "eof-newline": false, | |
| "leading-zero": true, | |
| "quotes": "double", |
| /** | |
| * Use a lookbehind to make sure we dont accidentaly find ` = ` in the value. | |
| * Prefer the likeliness of missing positive, than getting false positives. | |
| */ | |
| (?<=[a-zA-Z].)+((\s)=(\s)){1}(?=[a-zA-Z])+ |
| /* | |
| Version: 1.0 | |
| File: zip-validation.js | |
| Author: Juan Garcia | |
| Email: dev [at] soleilnoirmedia [dot] com | |
| Description: zipValidation.js contains a method for jQuery Validation Plugin (http://jqueryvalidation.org/). | |
| It checks if a ZIP code entered contains one of a number of prefixes specified in an array (A requirement from a client). | |
| It can also check if a ZIP code is within a certain range or if it contains a specific format (e.g. USA, Canada, etc.). | |
| Ideal to validate addresses for local deliveries. | |
| */ |
| // Will traverse a tree passed as an argument. The function will add the number values contained on each node when available. | |
| function traverseAndAdd(tree) { | |
| // Init var to contain sum of values | |
| var sum = 0; | |
| // Function will traverse nodes | |
| var recursiveCrawl = function (branch) { | |
| for (i in branch) { |