I hereby claim:
- I am AxelRHD on github.
- I am axelrhd (https://keybase.io/axelrhd) on keybase.
- I have a public key whose fingerprint is 43A8 8F88 AD3E 4CEE 220D D4BB 2821 E9A5 A558 BB69
To claim this, I am signing this object:
package main | |
import ( | |
"fmt" | |
"sync" | |
"time" | |
) | |
type message struct { | |
data int |
package main | |
import ( | |
"fmt" | |
"log" | |
"net/http" | |
"github.com/gorilla/context" | |
"github.com/gorilla/mux" | |
) |
# Go | |
GOCMD=go | |
XGO=xgo | |
GOBUILD=$(GOCMD) build | |
GOCLEAN=$(GOCMD) clean | |
BINARY_NAME=my-app | |
exec: run clean |
package main | |
import ( | |
"log" | |
"sync" | |
"time" | |
) | |
func main() { | |
var wgDone sync.WaitGroup |
I hereby claim:
To claim this, I am signing this object:
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge" /> | |
<title>My HTML Boilerplate</title> | |
</head> | |
<body> | |
<script src="./main.js"></script> |
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="https://npmcdn.com/[email protected]/dist/xstream.min.js"></script> | |
<script src="https://npmcdn.com/@cycle/[email protected]/dist/cycle-dom.min.js"></script> | |
<script src="https://npmcdn.com/@cycle/[email protected]/dist/cycle.min.js"></script> | |
<script src="https://npmcdn.com/@cycle/[email protected]/dist/cycle-http-driver.min.js"></script> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> |
import xs from 'xstream'; | |
import { run } from '@cycle/run'; | |
import { makeDOMDriver } from '@cycle/dom'; | |
// import { makeHTTPDriver } from '@cycle/http'; | |
import Snabbdom from 'snabbdom-pragma'; | |
const intent = sources => { | |
return { |
{ | |
auto_https off | |
admin :2020 | |
} | |
:1235 { | |
handle_path /api* { | |
reverse_proxy :3005 #pointing to a dev-api-server | |
} | |
import { jsx, VNode } from "snabbdom"; | |
import xs from "xstream"; | |
import { Stream } from "xstream"; | |
import run from "@cycle/run"; | |
import { MainDOMSource, makeDOMDriver } from "@cycle/dom"; | |
import { IStreams, ISources } from "./interfaces"; | |
import { Navbar } from './components/navbar' | |