I hereby claim:
- I am ulve on github.
- I am ulve (https://keybase.io/ulve) on keybase.
- I have a public key whose fingerprint is 2DDB C99B 1110 AAB0 5FE7 23DD 9B9E 5784 633B 1F0A
To claim this, I am signing this object:
| #!/bin/bash | |
| sudo apt-get update | |
| sudo apt-get --assume-yes install wget | |
| sudo apt-get --assume-yes install libssl-dev | |
| sudo apt-get --assume-yes install ncurses-dev | |
| sudo apt-get --assume-yes install m4 | |
| # erlang | |
| wget http://erlang.org/download/otp_src_18.2.tar.gz | |
| tar -xvzf otp_src_18.2.tar.gz | |
| cd otp_src_18.2 |
| MIX_ENV=prod mix compile.protocols | |
| MIX_ENV=prod PORT=4001 elixir -pa _build/prod/consolidated -S mix phoenix.server |
| # On the phoenix node | |
| # if production mode | |
| MIX_ENV=prod PORT=4001 elixir --name [email protected] --cookie 123 --erl "-kernel inet_dist_listen_min 9001 inet_dist_listen_m 9001" -pa _build/prod/consolidated -S mix phoenix.server | |
| # if debug mode | |
| elixir --name [email protected] --cookie 123 --erl "-kernel inet_dist_listen_min 9001 inet_dist_listen_m 9001" -S mix phoenix.server | |
| # On the observing node | |
| # Terminal 1, start SSH tunnel | |
| ssh -N -L 9001:localhost:9001 -L 4369:localhost:4369 [email protected] |
| param([string]$Directory) | |
| get-childitem $Directory | | |
| % { $f = $_ ; | |
| get-childitem -r $_.FullName | | |
| measure-object -property length -sum | | |
| select @{Name="Namn";Expression={$f}},@{Name="Sum (Mb)"; Expression={"{0:N1}" -f ($_.sum / 1MB)}}} |
| [ | |
| { | |
| "kind": "Listing", | |
| "data": { | |
| "modhash": "", | |
| "children": [ | |
| { | |
| "kind": "t3", | |
| "data": { | |
| "domain": "engadget.com", |
| [ | |
| { | |
| "kind": "Listing", | |
| "data": { | |
| "modhash": "", | |
| "children": [ | |
| { | |
| "kind": "t3", | |
| "data": { | |
| "domain": "engadget.com", |
I hereby claim:
To claim this, I am signing this object:
| // @flow | |
| import * as React from "react"; | |
| import * as Recompose from "recompose"; | |
| declare type HelloProps = { | |
| compiler: string, | |
| framework: string | |
| }; | |
| const reducer = (state: ControllerState, action: Action): ControllerState => { |
| // Learn more about F# at http://fsharp.org | |
| // See the 'F# Tutorial' project for more help. | |
| open FSharp.Data | |
| open Microsoft.FSharp.Data.TypeProviders | |
| open HttpFs.Client | |
| open HttpFs | |
| open Hopac | |
| open Argu | |
| open System | |
| open System.Collections.Generic |
| interface Book { | |
| kind: "book"; | |
| price: Number; | |
| title: String; | |
| } | |
| interface Chocolate { | |
| kind: "chocolate"; | |
| taste: String; | |
| price: Number; |