#Fazal's list of dev tools
##JavaScript ###Node frameworks
| Verifying I am +demwunz on my passcard. https://onename.com/demwunz |
| ``` | |
| -----BEGIN PGP MESSAGE----- | |
| Comment: GPGTools - https://gpgtools.org | |
| owF1Uk1sFVUUfq9Sfp5CcaEiNVhnoVEf7f2dO9MFkSI2YGMQQaMhPu6de+a94dGZ | |
| dua9lpZUFkTUYE1DRTYixGqLf4mgSV0INAQ1pV3UaEOTmvgTDcFglBAWRKLeaWqE | |
| hbt7zv3Od873nTOw9JZMLvtH2+TBib8nX85OXFSZrYP19++2VKR7rObdlrczgLCS | |
| vkLZDlazVYYeJRNoDKKGMNLQuCNpmMfkrS6IkyAKDQo1ikbX6sun8LTYD8IixB1x | |
| kHJZknu2oADKBt8hjCstOCJYKY8iqqTjA/UcG7mGshQllZu6WnOchUCbbMs6g29Z | |
| 6zy2nq6bx1fnPmxXgJaaKM0VFp4rHVtKIJIiWwBCKAUmEM9L0tDeXQ1703HbIS7v |
| /* | |
| * a way to save time when you want to output a bunch of class names with corresponding filenames | |
| */ | |
| $icons: sprite-map("icons/*.png"); | |
| .select-custom--icons{ | |
| background-image: sprite-url($icons); | |
| background-color:white; | |
| background-repeat: no-repeat; | |
| } | |
| $languages : (en, zh-cn, ja, it, pt, es, de); |
#Fazal's list of dev tools
##JavaScript ###Node frameworks
| <div class="flip" style="width: X.px; height: X.px;"> | |
| <a href="#"> | |
| <div class="flip-front"> | |
| ... | |
| </div> | |
| <div class="flip-back"> | |
| ... | |
| </div> | |
| </a> | |
| </div> |
| { | |
| "bold_folder_labels": true, | |
| "caret_style": "phase", | |
| "close_windows_when_empty": true, | |
| "color_scheme": "Packages/Tomorrow Color Schemes/Tomorrow-Night-Eighties.tmTheme", | |
| "draw_minimap_border": false, | |
| "fade_fold_buttons": false, | |
| "file_exclude_patterns": | |
| [ | |
| ".DS_Store", |
| <span class="default-dropdown"> | |
| <select> | |
| <option value="a">Chumba</option> | |
| <option value="b">Wumba</option> | |
| </select> | |
| </span> |
| <?xml version="1.0" encoding="utf-8" ?> | |
| <data> | |
| <params> | |
| <root>http://local.chauhanstudio.com</root> | |
| <workspace>http://local.chauhanstudio.com/workspace</workspace> | |
| </params> | |
| <events /> | |
| <navigation> | |
| <page handle="home" id="1"> | |
| <name>Home</name> |
| var JSON = {}; | |
| JSON.stringify = JSON.stringify || | |
| function (a) { | |
| var t = typeof (a); | |
| if (t != "object" || a === null) { | |
| if (t == "string") a = '"' + a + '"'; | |
| return String(a); | |
| } else { | |
| var n, v, json = [], | |
| arr = (a && a.constructor == Array); |
| hasFlash = function(){ | |
| try { | |
| return new ActiveXObject('ShockwaveFlash.ShockwaveFlash') ? true : false; | |
| } catch (e) { | |
| return navigator.mimeTypes["application/x-shockwave-flash"] != undefined ? true : false; | |
| } | |
| } |