Live data from Hacker News

Ask HN: What's your quarantine side project?

news.ycombinator.com

641–650 of 1001 posts

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

#641
I created an app called 'Calcula' (iOS - Free) to help individuals strengthen their math skills. Built with SwiftUI. I'm surprised by how much documentation and tutorials are available online!

But it's been really interesting learning the process of publishing an app. Each feature brings a 100 challenges but it's been fun overcoming every mountain.

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

#642
All: apologies for the interruption, but don't miss that there are multiple pages in this thread, with over 2000 posts by now. You have to click through the More links at the bottom to see them all. Later pages have all kinds of stuff that is just as interesting. It's kind of incredible.

(We intend to get rid of pagination once the next implementation of Arc is ready.)

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

#643
I'm building a treasure hunt web app (for mobile). An app for exploring the city. Had to learn a lot about geo APIs. But may have a potential business model now for larger city-wide events. Have a redesign mocked up now. Started writing the week before Easter and finished the week after.

- Web geo APIs to guide you to the next "treasure".

- Webcam API to capture matching photo.

- "AI" for matching photos and answers to questions in the backend.

- the "AI" doesn't work well, planning to add a python Lambda with a better SSIM algo.

The hardest part so far has been permissions in iOS. If the user blocked geo permissions for Safari it is kind of a pain to enable again for a normal user. I haven't had a chance to test in Android yet but I presume that will present other challenges regarding permissions.

https://app.huntsi.com

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

#644
I'm working on a cross-platform markdown editor written using Kotlin multiplatform: https://github.com/saket/press.

The plan is to start with an Android app and a macOS app to solve for my personal use-case and add more platforms in the future. The primary motivation was the lack of good markdown apps that sync between Android and macOS. Bear notes is the closest, but they don't have any plans of creating an Android app.

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

#645
I built Logicboard: https://logicboard.com a tool for conducting remote programming interviews. It's like Google Hangouts + you can write/run code in over 28 languages.

It's kinda amazing how much you can learn building something new, I improved my Elixir, ReactJS and Devops skills.

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

#647
I open-sourced a Python library that makes it easy to offload functions to AWS Lambda. Compared to other frameworks, it's a bit more like Celery instead of focusing on HTTP API.

https://github.com/CloudSnorkel/lovage/

app = lovage.Lovage(lovage.backends.AwsLambdaBackend("lovage-test"))

@app.task def hello(x): return x + 1

if __name__ == "__main__": app.deploy(root=".", requirements=["requests"]) print("hello.invoke(1) returned", hello.invoke(1))

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

#648
https://thelovetab.com

I have been spending most of my free time on it for a while. It's a chrome plugin that shows random tweets from the user's like list, every time a new browser tab is opened.

A few of my friends have been using this tool for the past few weeks and the feedback is positive so far.

This is my first side project that has reached the launch stage.

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

#649
Instead of stating something new, I updated and added all the features i wanted in an app. I built the app to help me make solutions for reagents in chemistry lab , I was getting irritated by the calculations every time i had to perform a reaction in lab. It balances any valid chemical equation and gives you stoichiometric calculations with support for limiting reagents. With their molar masses. Also supports equations with fractional atom molecule (Doped Materials)( which was the real reason i made this). It has 65k+ total downloads with 10k active users. Feed back is welcome (Noob at programming,Nano Physicist by education) https://play.google.com/store/apps/details?id=com.kharblabs....

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

#650
Right now I'm finally getting back to a chip8 emulator now I've figured out what I want to do for the GUI.

After that? I'd like to build up more of my (so far still private) personal website. Good excuse to learn more JS (and more modern JS). Maybe have part of the site be server based, learn more flask

Post reply on HN