I hereby claim:
- I am ph-one on github.
- I am kylem (https://keybase.io/kylem) on keybase.
- I have a public key ASAWLUNbvWn8nuIfV2Lb1ApwPaYVw8SlWJNIvToULjJPUAo
To claim this, I am signing this object:
| Verifying that I control the following Nostr public key: npub1q0ju4u247gh873ckmp8893mtwxtfs4j5jy63mmz700kdsq684xeq58hsug |
| # git config --global commit.template ~/.gitmessage | |
| # https://github.com/angular/angular.js/blob/master/DEVELOPERS.md#-git-commit-guidelines | |
| # | |
| # <subject> and <body>: | |
| # - use the imperative, present tense: "change" not "changed" nor "changes". | |
| # - no capitalization of first letter | |
| # - no punctuation | |
| # | |
| # If applied this change will <subject> | |
| <type>(<scope>): <subject> |
I hereby claim:
To claim this, I am signing this object:
| # | |
| # Automatically generated file; DO NOT EDIT. | |
| # Linux/x86 3.18.26-docker Kernel Configuration | |
| # | |
| CONFIG_64BIT=y | |
| CONFIG_X86_64=y | |
| CONFIG_X86=y | |
| CONFIG_INSTRUCTION_DECODER=y | |
| CONFIG_PERF_EVENTS_INTEL_UNCORE=y | |
| CONFIG_OUTPUT_FORMAT="elf64-x86-64" |
| // Mozilla | |
| function reqListener () { | |
| console.log(this.responseText); | |
| } | |
| var oReq = new XMLHttpRequest(); | |
| oReq.onload = reqListener; | |
| oReq.open('get', 'yourFile.txt', true); | |
| oReq.send(); |
| // Separate Object into key and value arrays | |
| var obj = {'a': 7, 'b': 8, 'c': 9}; | |
| var k = Object.keys(obj); // [a, b, c] | |
| var v = k.map(function(k, i) { return obj[k]; }); // [7, 8, 9] |
| git config --global alias.conflicts "diff --name-only --diff-filter=U" |
| <?php | |
| foreach(PDO::getAvailableDrivers() as $driver) { | |
| echo "$driver, "; | |
| } | |
| // EOF |
| <!-- | |
| A useful keyboard shortcut. Below is an example of ctrl+`+1 | |
| { "keys": ["ctrl+`", "ctrl+1"], "command": "insert_snippet", "args": {"name": "Packages/User/HTML.sublime-snippet"} } | |
| --> | |
| <snippet> | |
| <content><![CDATA[ | |
| <!DOCTYPE html> | |
| <!--[if lt IE 7]> <html lang="en-US" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> | |
| <!--[if IE 7]> <html lang="en-US" class="no-js lt-ie9 lt-ie8"> <![endif]--> | |
| <!--[if IE 8]> <html lang="en-US" class="no-js lt-ie9"> <![endif]--> |