Live data from Hacker News

Ask HN: What's your quarantine side project?

news.ycombinator.com

421–430 of 1001 posts

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

#421
I'm unexpectedly renting a house in Toronto. It ticks all the boxes, but is a bit of a junker.

Well, one of it's bedrooms was wallpapered and ancient looking. Very ugly. I decided to take care of it.

The wallpaper, and the three papers that came before it, are now stripped. The wall is in rough shape post-strip, and I'm repairing it. This room is on its way to perfection.

I've never done this before, and had no idea how much fun it is. There is no mistake that can't be fixed, and the instruction on YouTube is amazing. I'm having to reel myself in a bit, because I keep on noticing other things I'd like to fix myself. :)

It's sort of like the experience I had when I first started writing software. The power! My creativity is kicking in hard.

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

#422
http://covidobits.art

An art project to remind people that the COVID-19 deaths are not just a statistic to track the numbers. Each death is a tragedy.

Real and simulated obituaries are presented at the current death rate by country, age, and gender.

Take a moment to reflect on each one.

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

#427
I’ve been working on Flux, a platform to deploy and host deep learning models in production.

Instead of renting a GPU instance and setting up a Flask web server, you use git to push your trained model to Flux with some configuration and get back an http endpoint.

For example, you set that your input is the url to an image, and that your output should be the top classification and its likelihood, and that your model is in pytorch.

For example if you have a classifier for dog breeds you:

Make a POST to fluxdeploy.com/username/dog-classifier with json { “url”: “...” } And get back { “klass”: “Great Dane”, “probability”: 0.937373 }

No need to do your own devops, Flux will scale for you. And it’s priced per-request and cheaper than hosting your own web server. Flux also deals with versioning and dependencies.

Still working on streaming inputs like video.

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

#428
I'm working on gerrymandering. Both parties claim that the other party is better at it. My hypothesis is that some gerrymandered districts benefit the incumbent to the point of actually benefiting the opposing party in the adjacent districts. So, the incumbent has a safe seat, but the net is a loss for his own party.

I'd like to be able to demonstrate and quantify it.

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

#429
I wrote a django-crispy-forms template pack for the GOV.UK Design System. I was working on a project for Public Health England when the project got put on hold because of the lock-down and this was an itch that needed scratching. Hopefully this is going to speed things up when the project resumes.

https://github.com/wildfish/crispy-forms-gds

https://design-system.service.gov.uk

Post reply on HN