What's everyone working on this week (39/2020)?

New week, new Rust! What are you folks up to?

I got forceatlas2 working in 3D ! This example is a web of trust rendered into an STL file. (I wanted to render the edges as little cylinders between nodes but 3D rotations were such a headache so I gave up)

There are still some bugs (when the graph is too large, the points don't converge to a stable position), but promised, I'll stop spamming the "what's everyone working on this week" threads with this. (next step is the crate of the week :stuck_out_tongue: )

5 Likes

I'm jumping into running rust in serverless environments such as AWS lambda, cloudflare workers and netlify functions.

First up: lambda. Glad to see already there are helpers to streamline the process:
Docker builder
Cargo subcommand

I implemented unwrap_all / expect_all macros.
For the future I would have loved to look at the type information to know automatically when to stop the recursion, but for now it is manual. (PRs are very welcome)

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.