Live data from Hacker News

Ask HN: What's your quarantine side project?

news.ycombinator.com

441–450 of 1001 posts

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

#443
Very much still in progress, but making something akin to active_storage / carrierwave but for Dotnet (getting familiar with the dotnet core ecosystem). I think by the end of the month it'll be pretty darn usable, but want to add dead simple handling of image processing and similar beyond that.

https://github.com/bpicolo/bulletin

I always find it fun to play with the limits of library ergonomics under language / ecosystem constraints.

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

#444
I am in process of launching a web app that lets you plan that trip to Europe you'll be taking when this is all over. Create and share trip Itineraries, show and rank Countries, Cities, and attractions with costs and details. Data is i a beast, its slow currently slow as molasses, but its the first time i've ever put a side project live:

eurotripr.com - feedback would be great as i continue to work on this

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

#445
I've been working on a small project called https://CodeSnippetSearch.net. It allows you to search through code snippets using natural language. Currently, Python, Java, Go, Php, Javascript, and Ruby programming languages are supported. I think it's especially useful for new programmers because it allows you to search through code in a "Google-like" fashion. It also allows you to find similar code snippets to the ones found in search results. This enables you to explore different possible solutions.

As with any cool project nowadays, CodeSnippetSearch is powered by neural networks (six in fact - one for each programming language). The project is open-sourced and you can read about the implementation details here: https://github.com/novoselrok/codesnippetsearch This project started as a reimplementation of the models in the CodeSearchNet challenge by GitHub (https://github.com/github/CodeSearchNet/). I have reused their data and reimplemented the neural bag-of-words model in Keras. I didn't expect any improvements with my reimplementation, but I did manage to beat the baseline models by a little bit.

The search is still a bit of a hit-and-miss and I'm continually trying to improve it. If the match rating for the top result is below 50% it will most likely be irrelevant.

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

#446
I'm really enjoying this thread! There are so many awesome things being built during this time. My main two projects have been:

A Chip-8 emulator written in Go, and a small blog post: - https://github.com/bradford-hamilton/chippy - https://medium.com/@bradford_hamilton/building-a-chip-8-emul...

A JSON parser/query tool and much longer blog post: - https://github.com/bradford-hamilton/dora - https://medium.com/@bradford_hamilton/building-a-json-parser...

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

#447
I re-created my personal website trying to build a compelling web experience that works without JavaScript and any third parties. With so much of an emphasis on front-end frameworks and JavaScript runtimes, I wanted to try to get back to basics... just for fun. https://insightfulinteraction.com/
Post reply on HN