Getting started:
Related tutorials:
- MySQL-CLI: https://www.youtube.com/playlist?list=PLfdtiltiRHWEw4-kRrh1ZZy_3OcQxTn7P
- Analyzing Business Metrics: https://www.codecademy.com/learn/sql-analyzing-business-metrics
| /* | |
| * object.watch polyfill | |
| * | |
| * 2012-04-03 | |
| * | |
| * By Eli Grey, http://eligrey.com | |
| * Public Domain. | |
| * NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. | |
| */ |
| <?php | |
| ob_start(); | |
| var_dump($geo_json); | |
| error_log(ob_get_clean()); | |
| ?> |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <forms version="1.6.12"> | |
| <form labelPlacement="top_label" useCurrentUserAsAuthor="1"> | |
| <title><![CDATA[GF Form 1 Test - Top aligned labels, Descriptions below inputs]]></title> | |
| <description><![CDATA[We would love to hear from you! Please fill out this form and we will get in touch with you shortly.]]></description> | |
| <confirmation type="message"> | |
| <message><![CDATA[Thanks for contacting us! We will get in touch with you shortly.]]></message> | |
| </confirmation> | |
| <button type="text"> | |
| <text><![CDATA[Submit]]></text> |
| $contrasted-default-dark: #000; | |
| $contrasted-default-light: #fff; | |
| @mixin contrasted($bg, $dark:$contrasted-default-dark, $light:$contrasted-default-light){ | |
| background-color: $bg; | |
| color: get_contrast_yiq($bg, $dark, $light); | |
| } |
| add_action('print_media_templates', function() { | |
| ?> | |
| <script> | |
| var el = document.getElementById('tmpl-attachment'); | |
| var pos = el.outerHTML.indexOf('<# } else if ( \'image\' === data.type && data.sizes ) { #>'); | |
| var text = '<# } else if ( \'svg+xml\' === data.subtype ) { #>\n' + | |
| '<div class="centered">\n' + | |
| '<img src="{{ data.url }}" class="thumbnail" draggable="false" />\n' + | |
| '</div>\n' + |
| find ./ -type f | grep .DS_Store | xargs rm |
Getting started:
Related tutorials:
| # encoding: utf-8 | |
| import sublime, sublime_plugin | |
| class DetectSpecialCharacters(sublime_plugin.EventListener): | |
| def on_load(self, view): | |
| sublime.status_message("detect_special_characters is active") | |
| def on_modified(self, view): | |
| # find no-break space | |
| special_characters = view.find_all(u"\u00A0") |
| These two files should help you to import passwords from mac OS X keychains to 1password. | |
| Assumptions: | |
| 1) You have some experience with scripting/are a power-user. These scripts worked for me | |
| but they haven't been extensively tested and if they don't work, you're on your own! | |
| Please read this whole document before starting this process. If any of it seems | |
| incomprehensible/frightening/over your head please do not use these scripts. You will | |
| probably do something Very Bad and I wouldn't want that. | |
| 2) You have ruby 1.9.2 installed on your machine. This comes as standard with Lion, previous | |
| versions of OS X may have earlier versions of ruby, which *may* work, but then again, they |