Easy to remember, easy to forget.
It's nice to be able to run subl in a terminal.
Easy to remember, easy to forget.
It's nice to be able to run subl in a terminal.
| { "keys": ["ctrl+alt+p"], "command": "prompt_select_workspace" } |
| import {Injectable, provide} from 'angular2/core'; | |
| import {Observable} from 'rxjs'; | |
| const GEOLOCATION_ERRORS = { | |
| 'errors.location.unsupportedBrowser': 'Browser does not support location services', | |
| 'errors.location.permissionDenied': 'You have rejected access to your location', | |
| 'errors.location.positionUnavailable': 'Unable to determine your location', | |
| 'errors.location.timeout': 'Service timeout has been reached' | |
| }; |
| # | |
| # Verify captcha | |
| $post_data = http_build_query( | |
| array( | |
| 'secret' => CAPTCHA_SECRET, | |
| 'response' => $_POST['g-recaptcha-response'], | |
| 'remoteip' => $_SERVER['REMOTE_ADDR'] | |
| ) | |
| ); | |
| $opts = array('http' => |
| git push -u origin newLocalBranch |
| var a = document.createElement('a'); | |
| a.download = filename; // Set the file name. | |
| a.style.display = 'none'; | |
| document.body.appendChild(a); | |
| a.click(); | |
| delete a; |
| .fileContainer { | |
| overflow: hidden; | |
| position: relative; | |
| } | |
| .fileContainer [type=file] { | |
| cursor: inherit; | |
| display: block; | |
| font-size: 999px; | |
| filter: alpha(opacity=0); |