I hereby claim:
- I am joeybaker on github.
- I am joeybaker (https://keybase.io/joeybaker) on keybase.
- I have a public key whose fingerprint is E79A 8CB3 BD26 FAF2 DE85 050C D111 C7BF 1E35 AF45
To claim this, I am signing this object:
#!/bin/bash | |
# strict mode http://redsymbol.net/articles/unofficial-bash-strict-mode/ | |
set -euo pipefail | |
IFS=$'\n\t' | |
function f () { | |
# set these to your server crt and key files | |
local crt=server.crt | |
local key=server.key | |
From c39e95ae6d41939e73568bea5782228d8590b953 Mon Sep 17 00:00:00 2001 | |
From: Joey Baker <[email protected]> | |
Date: Thu, 31 Mar 2016 11:17:44 -0700 | |
Subject: [PATCH] Add: bin/should-install | |
Small script that warns if the dependencies are different from the last | |
time the script was run. | |
--- | |
bin/lib/should-install.js | 61 +++++++++++++++++++++++++++++++++++++++++++++++ | |
bin/should-install | 22 +++++++++++++++++ |
I hereby claim:
To claim this, I am signing this object:
import requestAnimationFrame from 'fbjs/lib/requestAnimationFrame' | |
import {get, omit} from 'lodash' | |
// this is okay b/c we tell webpack to ignore the node version of bugsnag in | |
// package.json | |
// "browser": {"bugsnag": false} | |
import bugsnag from 'bugsnag' | |
const SEVERITIES = {ERROR: 'error', WARN: 'warning', INFO: 'info'} | |
const NODE_ENV = process.env.NODE_ENV | |
const IS_BROWSER = process.browser |
// @flow | |
// | |
// This is a mininmal example, much of the real component is stripped out. | |
// | |
import React, { PureComponent } from 'react' | |
import { Image, Alert } from 'react-native' | |
import autobind from 'autobind-decorator' | |
import styled from 'styled-components/native' | |
import Form from '../../components/Form/Form.component' |
This is the best intro to Redux: Getting Started with Redux
These are a collection of the best links that I read when learning react and redux. There's not a particular order. :\
Idiomatic Redux: The Tao of Redux, Part 2 - Practice and Philosophy · Mark's Dev Blog
http://blog.isquaredsoftware.com/2017/05/idiomatic-redux-tao-of-redux-part-2/
on run {input} | |
set filename to POSIX path of input | |
set cmd to "clear;cd $(dirname " & filename & ");nvim " & quoted form of filename & "; exit" | |
tell application "System Events" to set terminalIsRunning to exists application process "Terminal" | |
tell application "Terminal" | |
activate | |
if terminalIsRunning is true then | |
set newWnd to do script with command cmd | |
else | |
do script with command cmd in window 1 |
// useful at script.google.com | |
// set these to discord webhooks. | |
const WEBHOOKS = { | |
SLAB: '', | |
ASANA: '', | |
FIGMA: '', | |
GREENHOUSE: '' | |
} | |
// these searches work great for me. The first does the search logic in |