- Homebrew, run
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"from the command line to install it. - Homebrew Cask, run
brew tap caskroom/caskfrom the command line to install it. - Alfred, buy the powerpack to get the full use of it.
- Spectacle
- Fish shell
- VLC
- Unarchiver
- f.lux
- n, run
brew install nfrom the command line to install it. - Fisherman, run
curl -Lo ~/.config/fish/functions/fisher.fish --create-dirs https://git.io/fisherfrom the command line to install it.
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
| import React, { Component } from 'react'; | |
| import Sentry from '../services/sentry'; | |
| import DevError from '../components/DevError'; | |
| const DEV_ENV = 'development'; | |
| const CaptureError = ({ | |
| ComponentToWrap, | |
| ErrorComponent, | |
| environment = process.env.NODE_ENV, |
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
| // async/await"able" DOM event handlers | |
| async function getMeSomeData() { | |
| // ... | |
| return data | |
| } | |
| document.addEventListener('DOMContentLoaded', async () => { | |
| const someContainer = document.getElementById('someContainer'); |
- ES6 Katas
- Flexbox Froggy
- Haven’t used this one yet, but it’s TypeScript katas, https://mycodekatas.github.io/typescript.html
- Not a Kata per se, but still good, Flexbox Zombies
I hereby claim:
- I am nickytonline on github.
- I am nickytonline (https://keybase.io/nickytonline) on keybase.
- I have a public key ASBEWNdvh5sdoMlT4StLMkid8-ZPj6_B1YaHLB15-j9SHwo
To claim this, I am signing this object:
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
Show hidden characters
| { | |
| "rules": { | |
| "align": [ | |
| true, | |
| "parameters", | |
| "arguments", | |
| "statements" | |
| ], | |
| "ban": false, | |
| "class-name": 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
| alias.a add . | |
| alias.aliases config --get-regexp alias | |
| alias.bi bisect | |
| alias.ci commit -m | |
| alias.co checkout | |
| alias.colast checkout - | |
| alias.db branch -D | |
| alias.laf fsck --lost-found | |
| alias.last log -1 HEAD | |
| alias.nb checkout -b |