Ask HN: What are you working on?
181–190 of 1001 posts
Re: Ask HN: What are you working on?
#182Re: Ask HN: What are you working on?
#183I'm also reviving a photosharing app I started years ago. I'm hoping post covid, people will want to get together, take photos and share them.
Re: Ask HN: What are you working on?
#184Core idea is that you can chuck unstructured documents (JSON, Protobuf messages, etc.) into it and perform rudimentary querying/filtering/correlation based on arbitrary fields and values in those documents, without writing a proper DB schema / answering "what will my queries look like?" ahead of time (as you might with Postgres jsonb support for example) and still have substantial portions of your query be indexed.
Example use case: chuck Hacker News comments, Stackoverflow comments, and GitHub issues into it. Then you can search over those and correlate arbitrary metadata across them, e.g. search for some regex that across github issues only where it is referenced elsewhere on HN/SO.
Primarily interesting for exploring/querying across structured documents in complex ways that you can't anticipate before-hand.
Re: Ask HN: What are you working on?
#185https://nanos.org https://ops.city
both opensource
Re: Ask HN: What are you working on?
#186I'm working on an app that turns brokerage accounts into a fully customizable robo-advisor. Create a target portfolio made up of stocks/ETFs, and our app will keep everything balanced and fully invested. We're starting with this simple use case of keeping a balanced portfolio, but really we see brokerage accounts as a financial operating system that's lacking good software. We're already on TD Ameritrade and Interact…
Re: Ask HN: What are you working on?
#187A multiplayer browser game with a fresh start every time, that's easy to learn and easy to start having fun, doesn't guilt you into playing (healthy long-term relationship with the player), and has lots of replay value
Last time we got feedback from HN: "I really like this" "This is an awesome game" "Wow, this is really fun" (https://news.ycombinator.com/item?id=25704597)
Re: Ask HN: What are you working on?
#188I’m building some projects to slow the internet down. 1. A less addictive Hacker News ( https://hackerdaily.io ) 2. A brief overview of yesterday’s world events ( https://abriefhistoryofyesterday.com )
Re: Ask HN: What are you working on?
#189Self-hosted and scalable search engine that indexes every character (not just words) and offers a complex query language (regex, document metadata filtering, etc.) Core idea is that you can chuck unstructured documents (JSON, Protobuf messages, etc.) into it and perform rudimentary querying/filtering/correlation based on arbitrary fields and values in those documents, without writing a proper DB schema / answering "w…