Ask HN: What have you created that deserves a second chance on HN?
171–180 of 404 posts
Re: Ask HN: What have you created that deserves a second chance on HN?
#172Here is my post from last year which didn’t get much attention on HN: https://news.ycombinator.com/item?id=33507260 It analyzes how much sugar is in the food based on nutrition facts data scraped from Walmart. It also shows relation between amount of sugar and rating.
This is incredibly useful! Is it possible to make this into a simple (single page) shopping list? Where I type my shopping list, product recommends substitutes with lower sugar — and gives me distribution (histogram) of main ingredients for my shopping list. That would be life changing.
Re: Ask HN: What have you created that deserves a second chance on HN?
#173Fully remote for teams of 1-8ish; free to explore. Requires a computer, although you can explore on mobile/tablet.
Originally it was free to play - I got a fair few plays off my HN post, now I have a trickle of paying customers.
Use code hackernews22 for a 40% discount
Original submission at https://news.ycombinator.com/item?id=28579191
Re: Ask HN: What have you created that deserves a second chance on HN?
#174Re: Ask HN: What have you created that deserves a second chance on HN?
#175https://flipcoords.com/ The web tool will switch the position of latitude and longitude in text. It's a common issue in GIS industry as there's no agreement which order is the correct one (and tools/software want one or the other). The initial Show HN dicussion derailed into which order is the correct one, second-guessing why the tool could be any useful to anybody and it went downhill (well, flagged) from there.
Re: Ask HN: What have you created that deserves a second chance on HN?
#176An RSS reader that caches webpages locally, so you can read the article in a webview with native-like performance instead of just that text that comes through in the RSS feed.
Re: Ask HN: What have you created that deserves a second chance on HN?
#177Dollero - https://dollero.app/ I created a personal budgeting web app which doesn't store any of your financial information in the cloud. Instead your budget data is stored locally in your browser with IndexedDB and is sync'd peer to peer with your other devices using WebRTC.
Re: Ask HN: What have you created that deserves a second chance on HN?
#178I've been learning video streaming tech for the last year (ffmpeg, webrtc, all the great videos available of SF Video Technology - https://www.youtube.com/@SFVideoTechnology) and I haven't been able to come up with a remotely interesting product idea. When I came across this, I thought it was the most clever SaaS video tech I've seen in a while. I'm probably dating myself but I'm certain TokBox had something similar 10 years ago. In whichever flavor markee is doing this, it was a refreshing idea to see.
I have no affiliation to this product or engineering team.
Re: Ask HN: What have you created that deserves a second chance on HN?
#179Github link: https://github.com/scipipe/scipipe
There are many pipeline tools for shell commands, but a majority has one or more limitations in their API which makes certain complex pipelines impossible or really hard to write.
We were pushing the limits of all the tools we tried, so developed our own, and implemented it in Go, with a declarative API for defining the data flow dependencies, instead of inventing yet another DSL. This has allowed us great flexibility in developing also complex pipelines, e.g. combining parameter sweeps nested with cross-validation implemented as workflow constructs.
SciPipe is also unique in providing an audit report for every single output of the workflow, in a structured JSON format. A helper tool allows converting these reports to either an HTML report, a PDF, or a Bash script that will generate the one accompanying output file from scratch.
An extra cool things is that, because the audit reports live alongside output files, if you run a scipipe workflow that uses files generated by another scipipe workflow, it will pick up also all the history for the input files generated by this earlier workflow, meaning that you get a 100% complete audit report, even if your analysis spans multiple workflows!
(More on the audit/provenance report in this post: https://rillabs.com/posts/provenance-reports-in-scientific-w... )