Live data from Hacker News

Ask HN: What did you make during lockdown?

news.ycombinator.com

411–420 of 556 posts

Re: Ask HN: What did you make during lockdown?

#414
No surprises from me: I launched v8 of my HTML5 canvas library back in April, which the admins here very kindly promoted to the front page of HN for a couple of hours - https://scrawl-v8.rikweb.org.uk/

Since then I've released some updates to the library. Things I've been working on include:

- Adding a "polyline" entity (which, I hope, can be used for freehand drawing) and fixing the path animation code so things can be moved along a path at constant speed - https://codepen.io/kaliedarik/pen/MWadEwm

- Tweaking and improving the "phrase" entity (for graphical text) to make it easier to add styling markup to it, plus some stuff to make it look better when animating along a path ... though sadly there's still an (very!) annoying text height bug that needs to be addressed - https://codepen.io/kaliedarik/pen/dyYeOZb

And for the past few weeks I've been investigating/learning about physics engines. Because what's not to love about physics engines? I'm not close to releasing code for this yet, but I did manage to get the library to play nicely with Matter.js as part of my learning experience (the polylines add a nice touch to the net, I think) - https://codepen.io/kaliedarik/pen/zYvbwBy

Re: Ask HN: What did you make during lockdown?

#416

I built a new Optical Flow AI. Instead of being a cranky old man complaining about other people's mistakes, I decided to just fix things myself. Before Corona hit, I had created a new data set and given a talk about all the stuff that current state of the art AIs for Optical Flow get wrong. I find the topic interesting, because those bugs directly lead to drones like Skydio crashing into thin wires or branches withou…

I'm not familiar with Optical Flow research, and I'm sure you already know, but are you familiar with the U^2-Net architecture (a new variation of U-Nets)? I only bother mentioning it at the risk of being redundant because it's new and I know how easy it is to miss stuff in the fire hose that is machine learning research papers. Its results for their specific task, salience mapping, are incredible for such a simple and lightweight architecture. And from a skim of Optical Flow and your example it seems like it might apply there as well. It should be able to grab the long-ranging features necessary for Optical Flow.

Do you have a public dataset that you can share or only a private one? Kinda looks like you built a dataset using Skyrim which ... is brilliant.

Re: Ask HN: What did you make during lockdown?

#417

I built a habit app called SnapHabit [1] that helps you build habits with your friends/family through group habits and through social accountability. I wanted to learn React Native/mobile development while trying to address the fact that for many of us, social distancing and lockdown have isolated us and destroyed our everyday habits. The most interesting thing I've seen is that people really enjoy writing about and…

Good on you for jumping in the deep end to lean React Native and thanks for the advice. I just downloaded your app to take a look at it and it’s really well done. I’m actually going to play around with it for my own personal goals for a bit.

Re: Ask HN: What did you make during lockdown?

#419
I made a lot of music stuff. I hooked up an Arduino to control music tempo with my heart beat [1], made a browser based sequencer for the Korg NTS-1 [2], and a made a web app to generate patches for Teenage Engineering OP-1/OP-Z [3]

[1]: https://github.com/schollz/heartbpm

[2]: https://schollz.github.io/carp/

[3]: https://op1z.com/

Re: Ask HN: What did you make during lockdown?

#420
I have been re-implementing the ninja build system [1] using the ideas from the "Build Systems a la Carte" paper [2]. The software isn't ready for the public yet, but I've written 2 blog posts so far about some of the ideas.

1. Using type-classes to model the expressivity of build systems [3] 2. A Future is a Suspending Scheduler [4]

[1]: https://ninja-build.org/ [2]: https://www.microsoft.com/en-us/research/publication/build-s... [3]: https://nikhilism.com/post/2020/type-classes-build-systems/ [4]: https://nikhilism.com/post/2020/futures-suspending-scheduler...

Post reply on HN