- Chrome
- AppCleaner
- Dashlane
- Alfred
- Sublime Text
- iTerm2
- Boxy
- Bartender 2
- RescueTime
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Start plugins | |
""""""""""""""" | |
call plug#begin('~/.config/nvim/plugged') | |
" One Dark theme | |
Plug 'joshdick/onedark.vim' | |
" Automatic syntax for a bunch of languages | |
Plug 'sheerun/vim-polyglot' | |
" Detect editorconfig file | |
Plug 'editorconfig/editorconfig-vim' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"header": { | |
"Variant": "truefox", | |
"Generator": "KIICONF 0.2", | |
"Base": "TheTrueFoxBase", | |
"Date": "2016-05-30", | |
"KLL": "0.3c", | |
"Author": "HaaTa (Jacob Alexander) 2015", | |
"Version": "0.2", | |
"Name": "WhiteFox", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const normalurl = require('normalize-url'); | |
console.log(normalurl('http://test.com///////path')) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>scope</key> | |
<string>source.python</string> | |
<key>settings</key> | |
<dict> | |
<key>indentParens</key> | |
<false/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Verifying that +danreeves is my blockchain ID. https://onename.com/danreeves |
- A Story about my Uncle
- Air Brawl
- Homeworld Remastered Collection
- Undertale
- The Beginners Guide
- The Banner Saga
- Mind: Path to Thalamus
- Homeworld: Deserts of Kharak
- Rise of the Tomb Raider
- Downwell
- Life Is Strange
- Her Story
- Witcher 3
- Rocket League
- The Beginner's Guide
Tomb Raider (2013) because I played it this year? Grow Home? Refunct? Cities: Skylines? Duck Game? That was in order
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var plz = require('please-ajax'); | |
plz.get('http://reqr.es/api/users', {promise:true}) | |
.then(function (d) { | |
append('GET: '); | |
append(d); | |
append('<br>'); | |
}); | |
plz.delete('http://reqr.es/api/users/1', {promise:true}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.onerror = function (message, url, lineNo) { | |
try { | |
var xhr = new (window.XMLHttpRequest || ActiveXObject)('MSXML2.XMLHTTP.3.0'), | |
domain ='https://example.com/', | |
query = '?line=' + lineNo + | |
'&message=' + message + | |
'&url=' + url + | |
'&UA=' + window.navigator.userAgent; | |
xhr.open('GET', domain + query, true); | |
xhr.send(); |