Rob Durst

Results 12 issues of Rob Durst

## The current state: ![ezgif com-video-to-gif](https://user-images.githubusercontent.com/16689974/43670491-2c55f28c-9741-11e8-8c5a-f5b99822584b.gif)

laboratory
v1

Here is a list of improvements that are not necessary for the demo, but would be nice to have: - [ ] Make usable on mobile - [x] Better message...

enhancement
help wanted
good first issue
Crypto
Refactor
Frontend

AFAIK, RSA isn't supposed to be used as a message encryption system. Instead, it (**asymmetric**) is better when combined with a **symmetric** system, forming a hybrid cryptosystem. As defined by...

As we move to actually making this thing run a little faster (#7 and #8), it might be interesting to have some benchmark data.

Johansten on Keybase had some good suggestions for improving the speed here: Gotcha.. Quick thoughts: 1) ~~You don't need to randomize more than once. The first thing that ed25519 does...

good first issue

Use some of that new async/await hotness :fire:

help wanted

The following sections are needed: * [ ] how it works (the technical details) * [ ] contributing (Contributing.md) * [ ] move roadmap/todos to open issues *And possibly more,...

enhancement
help wanted
good first issue

To get the Makefile to work with my Mac, I looked at the output of the commands using realpath on my linux machine and translated them to what worked on...

While type checking is limited until we have a proper Table type, we can start defining the type signatures for Table methods now in order to allow more programs to...

Consider the following code: ``` tbl = table: name row: "Rob" end tbl.row("Foo") ``` When I execute without type checker all is well. With type checker, `.row` is not found....