Skip to content

Instantly share code, notes, and snippets.

View islandjoe's full-sized avatar

Arthur Kho islandjoe

  • Helsinki, Finland
View GitHub Profile
@islandjoe
islandjoe / compile.sh
Last active July 18, 2020 16:37 — forked from adisuryadi/compile.sh
Run ES6 in Coderunner via Babel
#!/bin/bash
#
# This script will create transpile ES6 (with JSX) support in babel
# to ES5 that evaluatable in regular node.js
# Script will create a filename.out file, evaluates it, then remove the file.
#
# First off, you'll need Node.js.
#
# Steps:
# 1) Install babel globally npm install -g babel-cli
@islandjoe
islandjoe / minimal-web-server.py
Last active May 28, 2018 10:36 — forked from bradmontgomery/dummy-web-server.py
A minimal http server in Python 3. Responds to GET, HEAD, POST requests, but will fail on anything else.
#!/usr/bin/env python3
"""
Very simple HTTP server in python.
Usage::
./dummy-web-server.py [<port>]
Send a GET request::
curl http://localhost