I hereby claim:
- I am marianoguerra on github.
- I am marianoguerra (https://keybase.io/marianoguerra) on keybase.
- I have a public key ASAAz1O8hmNDYf7GWHlLbRsEhxrHNovElDRwYHaNxkMQogo
To claim this, I am signing this object:
| export const test = (name, fn) => { | |
| try { | |
| console.group(name); | |
| fn(); | |
| } catch (error) { | |
| console.error(error); | |
| } finally { | |
| console.groupEnd(); | |
| } | |
| }; |
I hereby claim:
To claim this, I am signing this object:
See it here: EEP 48: Documentation storage and format
Note: @marianoguerra: efene is on board on implementing this EEP
| FROM ubuntu:17.10 | |
| RUN \ | |
| sed -i 's/# \(.*multiverse$\)/\1/g' /etc/apt/sources.list && \ | |
| apt-get update && \ | |
| apt-get -y upgrade && \ | |
| apt-get install -y --no-install-recommends wget build-essential git ca-certificates && \ | |
| wget http://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb && \ | |
| dpkg -i erlang-solutions_1.0_all.deb && \ | |
| apt-get update && \ |
| {ok, {MapId, _, _, _}} = lasp:declare({<<"mymap">>, {state_awmap, [state_mvregister]}}, {state_awmap, [state_mvregister]}). | |
| K1 = <<"key1">>. | |
| V1 = #{what => i_am_a_gmap_value, thing => 42}. | |
| {ok, {MapId1, _, _, _}} = lasp:update(MapId, {apply, K1, {set, erlang:unique_integer([monotonic, positive]), V1}}, self()). | |
| {ok, Res1} = lasp:query(MapId1). | |
| Res1. | |
| % {ok,[{<<"key1">>, {set, ...#{thing => 42,what => i_am_a_gmap_value} ... }}]} |
Which languages of the BEAM do you use?
$ create-react-app hello-world
Creating a new React app in hello-world.
Installing packages. This might take a couple minutes. Installing react, react-dom, and react-scripts...