Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.2.3/d3.min.js"></script>
<style id="jsbin-css">
body {
margin: 0;
@thurt
thurt / gist:eabc4e79f32f1e2f6e65c5051fb11918
Created April 28, 2017 22:26 — forked from chrissimpkins/gist:5bf5686bae86b8129bee
Atom Editor Cheat Sheet (Sweetmeat)

Use these rapid keyboard shortcuts to control the GitHub Atom text editor on Mac OSX.

Key to the Keys

  • ⌘ : Command key
  • ⌃ : Control key
  • ⌫ : Delete key
  • ← : Left arrow key
  • → : Right arrow key
  • ↑ : Up arrow key
@thurt
thurt / gist:3a1268314775e6550f9029c117315912
Created April 28, 2017 22:26 — forked from chrissimpkins/gist:5bf5686bae86b8129bee
Atom Editor Cheat Sheet (Sweetmeat)

Use these rapid keyboard shortcuts to control the GitHub Atom text editor on Mac OSX.

Key to the Keys

  • ⌘ : Command key
  • ⌃ : Control key
  • ⌫ : Delete key
  • ← : Left arrow key
  • → : Right arrow key
  • ↑ : Up arrow key
export const navigationType = PropTypes.shape({
dispatch: PropTypes.func.isRequired,
goBack: PropTypes.func.isRequired,
navigate: PropTypes.func.isRequired,
setParams: PropTypes.func.isRequired,
state: PropTypes.shape({
key: PropTypes.string.isRequired,
routeName: PropTypes.string.isRequired,
path: PropTypes.string,
params: PropTypes.object
@thurt
thurt / setupTestFramework.js
Last active October 3, 2017 20:48 — forked from jsdf/setupTestFramework.js
Make React PropType warnings throw errors in Jasmine/Jest
/* global jasmine */
/* eslint-disable no-console */
// this file is a modified version of https://gist.github.com/jsdf/6fc35890e4ed4a219072
import util from 'util'; // this is a node module
/**
* This file is called by Jest when running tests
* It elevates React PropType console warnings to exceptions.
* This can be helpful because it will prevent tests from passing if PropTypes
* for the component are not valid.
@thurt
thurt / Readme.md
Created January 13, 2017 01:33 — forked from andrey-skl/Readme.md
How to compile and run react-native application from terminal

To run on ios:

  1. Install XCode (recommended) or XCode command line tools by xcode-select --install
  2. Into XCode settings, go to "Downloads" tab and download iOS 9.2 emulator
  3. Compile native app and run it on simulator via npm run ios

To run on Android:

  1. Set up Android environment
  2. Create emulator via npm run android-emulator-create
  3. Run emulator via npm run android-emulator
  4. Compile native code and run it on emulator via npm run android
@thurt
thurt / ramda.js
Created August 8, 2016 20:24
includes symbol tags on R.adjust and R.mapAccum
// Ramda v0.21.0
// https://github.com/ramda/ramda
// (c) 2013-2016 Scott Sauyet, Michael Hurley, and David Chambers
// Ramda may be freely distributed under the MIT license.
;(function() {
'use strict';
/**
@thurt
thurt / contentEditable-placeholder.css
Created August 7, 2016 14:01 — forked from oswaldoacauan/contentEditable-placeholder.css
CSS - Placeholder support for contentEditable elements
/ *
* Exemple:
* <div contenteditable="true" placeholder="Enter text here..."></div>
*
*/
[contenteditable=true]:empty:before {
content: attr(placeholder);
}
const R = require('ramda')
// changes input into an iterable and returns it
function producer() {
return Array.from(arguments)
}
function map(fn) {
return function* (iterable) {
for (let i of iterable) {
@thurt
thurt / gist:bfe4dd335b7593157d34c198531489de
Created June 13, 2016 06:25 — forked from sl4m/gist:5091803
create self-signed certificate for localhost
# SSL self signed localhost for rails start to finish, no red warnings.
# 1) Create your private key (any password will do, we remove it below)
$ openssl genrsa -des3 -out server.orig.key 2048
# 2) Remove the password
$ openssl rsa -in server.orig.key -out server.key