Live data from Hacker News

Ask HN: What's your quarantine side project?

news.ycombinator.com

661–670 of 1001 posts

Re: Ask HN: What's your quarantine side project?

#661
I've recently written a Python app that selects a random location in an area defined by a user-supplied shapefile [1], grabs corresponding aerial imagery from Google Maps, and posts it as a geotagged tweet:

https://github.com/doersino/aerialbot

I've built this tool because satellite imagery can be extremely beautiful [2], and I was looking for a way of regularly receiving high-resolution satellite views of arbitrary locations such as the center pivot irrigation farms of the American heartland [3] in my timeline. Plus, for obvious reasons, it's nice to see the world without actually having to go outside right now.

Currently, I'm running two Twitter bots based on ærialbot:

* @americasquared, which posts one randomly selected square mile of the United States every 4 hours: https://twitter.com/americasquared

* @placesfromorbit, which analogously posts a 5×5 km square anywhere in the world every 6 hours: https://twitter.com/placesfromorbit

---

[1]: https://en.wikipedia.org/wiki/Shapefile

[2]: https://earthview.withgoogle.com

[3]: http://www.thegreatamericangrid.com/archives/1441

Re: Ask HN: What's your quarantine side project?

#663
I've been worked for a while now on an new Supervisor / Init system written in Rust: https://github.com/FedericoPonzi/horust/ Learnt a lot in the process and there are so much things still to do! Feel free to drop me a message if you're interested in contributing, curious or just to say hi :)

Re: Ask HN: What's your quarantine side project?

#667
I'm writing an actor system in Webassembly (C#/Blazor). Once it's in place, it can be used with a rendering backplane (SVG). The ultimate goal is to make the actors be able to move to where they are needed (moving the code to the data instead of the other way around). One important aspect is that the system is completely message driven. An actor can become anything by sending it a message. Yes, there is a security aspect to that :) It should also be compositional, in that the behaviors of it's essences compose.

Re: Ask HN: What's your quarantine side project?

#668
I'm building a 6 degree of motion robotic arm from (https://www.anninrobotics.com/). It's open source so all CAD models, code is available online with all electronic components available off the shelf.

End goal is to clean a portion of bath tub or toiler semi-autonomously: manually attach different tooling like cleaning agent spray and brushes, but let the robot do the rest of work.

Re: Ask HN: What's your quarantine side project?

#670
I have a sandbox project I built some time ago to synchronize watching youtube videos with friends (https://lifeboatradio.com). A small group of us use it as a shared radio similar to grooveshark back in the day. During quarantine I am trying to build a similar version that allows you to synchronize watching videos from other sources, so I can hold a virtual movie night with friends. Hoping to use the output of this project to improve lifeboat too and bring it back up to date.
Post reply on HN