I hereby claim:
- I am victorbjelkholm on github.
- I am diggan (https://keybase.io/diggan) on keybase.
- I have a public key ASBYi_4HLvTRFsHwOJMHv6J31C8lCMvFGEN6FBEhisPMMQo
To claim this, I am signing this object:
| #!/bin/sh | |
| command="${*}" | |
| printf "Initialized REPL for [%s]\n" "$command" | |
| printf "%s> " "$command" | |
| read -r input | |
| while [ "$input" != "" ]; | |
| do | |
| eval "$command $input" | |
| printf "\n%s> " "$command" |
| FROM mhart/alpine-node:6.3.0 | |
| RUN mkdir -p /usr/src/app | |
| WORKDIR /usr/src/app | |
| COPY package.json /usr/src/app/package.json | |
| RUN npm install | |
| COPY . /usr/src/app |
| 2.3.0-alpine - running container | |
| 2.1-alpine - building image | |
| 2.1.9-alpine - building image | |
| 2.2.4-alpine - building image | |
| 2.3.0-alpine - running container | |
| 2.1-alpine - building image | |
| 2.1.9-alpine - running container | |
| 2.2.4-alpine - building image | |
| 2.3.0-alpine - running container | |
| 2.1-alpine - building image |
I hereby claim:
To claim this, I am signing this object:
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
Video demonstration (https://www.youtube.com/watch?v=XPuEOyyXLrQ)
(Sorry for the crappy video, only got my cellphone to film with ๐ )
Hello! I'm gonna quickly walkthrough how you can use nvm (https://github.com/creationix/nvm) or n (https://github.com/tj/n) together with IPFS (https://ipfs.io) to quickly download and cache nodejs versions.
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src="https://code.jquery.com/jquery-2.1.4.js"></script> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| <style id="jsbin-css"> | |
| body, html { | |
| margin: 0; | |
| padding: 0; |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src="https://code.jquery.com/jquery-2.1.4.js"></script> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| <style id="jsbin-css"> | |
| body, html { | |
| margin: 0; | |
| padding: 0; |
| (function() { | |
| /** | |
| * @param {number} meta | |
| * @param {number} child | |
| * @return {?} | |
| */ | |
| function addImage(meta, child) { | |
| meta = meta || 1; | |
| child = child || 0; | |
| /** @type {Image} */ |
| { | |
| "title": "Sandbox - Boilerplate", | |
| "design_id": "wEdZrLDpiJ", | |
| "fields": [ | |
| { | |
| "type": "short_text", | |
| "question": "This is a ShortTextField, What's your name? [ _Edit this text & press Build_ ]", | |
| "description": "I'm sure you have a great name! โ [ _Edit this text & press Build_ ]", | |
| "required": true | |
| }, |