Use these rapid keyboard shortcuts to control the GitHub Atom text editor on Mac OSX.
- ⌘ : Command key
- ⌃ : Control key
- ⌫ : Delete key
- ← : Left arrow key
- → : Right arrow key
- ↑ : Up arrow key
| <!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; |
Use these rapid keyboard shortcuts to control the GitHub Atom text editor on Mac OSX.
Use these rapid keyboard shortcuts to control the GitHub Atom text editor on Mac OSX.
| /* 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. |
To run on ios:
xcode-select --installnpm run iosTo run on Android:
npm run android-emulator-createnpm run android| // 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'; | |
| /** |
| / * | |
| * 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) { |
| # 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 |