I hereby claim:
- I am kevinSuttle on github.
- I am kevinsuttle (https://keybase.io/kevinsuttle) on keybase.
- I have a public key whose fingerprint is C367 BDA4 7209 C1E0 A0A4 2F67 E2AE A467 FDD5 8B8F
To claim this, I am signing this object:
| 'use strict'; | |
| // Include Gulp & Tools We'll Use | |
| var gulp = require('gulp'); | |
| var sass = require('gulp-ruby-sass'); | |
| var browserSync = require('browser-sync'); | |
| var localConfig = require('./config/app.json'); | |
| var stylestats = require('gulp-stylestats'); | |
| var projectSize = require('gulp-size'); | |
| var autoprefixer = require('gulp-autoprefixer'); |
| .ui-link { | |
| transition-timing-function: ease-out; | |
| transition-duration: 0.2s; } | |
| .ui-link { | |
| text-decoration: none; | |
| transition-property: color; } |
I hereby claim:
To claim this, I am signing this object:
| var express = require('express'), | |
| https = require('https'); | |
| //... | |
| var app = express(); | |
| // ... | |
| module.exports = app; |
| { | |
| "editor.fontFamily": "Fira Code", | |
| "editor.fontSize": 14, | |
| "editor.formatOnSave": true, | |
| "editor.renderWhitespace": "all", | |
| "editor.tabSize": 2, | |
| "editor.wordWrap": "on", | |
| "flow.useNPMPackagedFlow": true, | |
| "javascript.format.enable": false, | |
| "javascript.validate.enable": false, |
| ❯ curl -H "Authorization: token MY_TOKEN" -H "X-Oauth-Scope: user:email" "https://api.github.com/users/kevinSuttle" | |
| { | |
| "login": "kevinSuttle", | |
| "id": 95672, | |
| "avatar_url": "https://avatars.githubusercontent.com/u/95672?v=3", | |
| "gravatar_id": "", | |
| "url": "https://api.github.com/users/kevinSuttle", | |
| "html_url": "https://github.com/kevinSuttle", | |
| "followers_url": "https://api.github.com/users/kevinSuttle/followers", | |
| "following_url": "https://api.github.com/users/kevinSuttle/following{/other_user}", |
| #!/usr/bin/env bash | |
| declare -a backup_files=(*.{id,nsf}, desktop8.ndk archive user.dic); | |
| declare -a notes_data_directory=~/Library/Application\ Support/IBM\ Notes\ Data/; | |
| declare -a notes_backup_directory=~/Desktop/Notes\ Backup; | |
| mkdir -p "$notes_backup_directory"; | |
| cd "$notes_data_directory"; | |
| for i in "${backup_files[@]}" |
| 'use strict'; | |
| var express = require('express'); | |
| var app = express(); | |
| var config = require('./config'); | |
| // [...] | |
| // [...] | |
| var analytics = new Analytics(config.segment.writeKey, { flushAt: 1 }); |
| #!/usr/bin/env bash | |
| sudo rm -fr /Library/Internet\ Plug-Ins/JavaAppletPlugin.plugin; | |
| sudo rm -fr /Library/PreferencePanes/JavaControlPanel.prefpane; | |
| # sudo find /Library/Java/JavaVirtualMachines -name "jdk*" -print0 -maxdepth 1 -type d -print0|xargs -0 rm -rd --; | |
| sudo ln -sf /System/Library/Java/Support/Deploy.bundle/Contents/Resources/JavaPlugin2_NPAPI.plugin /Library/Internet\ Plug-Ins/JavaAppletPlugin.plugin; | |
| sudo ln -sf /System/Library/Frameworks/JavaVM.framework/Commands/javaws /usr/bin/javaws; |