Disclaimer: This project isn't currently publicly available. I was using Simple as my primary bank, and their Goals feature made it possible to do envelope-style budgeting really conveniently. Unfortunately the bank that backed them, BBVA, sold to PNC. This lead to my Simple being shut down, and my account was converted first to a BBVA account and then to a PNC account. When I lost access to the Simple app I first bu…
Ask HN: Those making $0/month or less on side projects – Show and tell
111–120 of 1001 posts
Re: Ask HN: Those making $0/month or less on side projects – Show and tell
#112https://codeatlas.dev - codebase visualisation tool Takes your git repo and generates a beautiful visual representation of the code. Sort of an alternative navigation tool (in addition to IDEs) for large codebases. Can also run it as part of CI with our Github Action ( https://github.com/codeatlasHQ/codebase-visualizer-action ). We made this because grokking complex software projects is really difficult and we've fou…
Or, even lower effort, sell nicely-formatted digital prints of the repositories, so folks could hang them in their office.
Re: Ask HN: Those making $0/month or less on side projects – Show and tell
#113By default anyone can upload to a gallery but they are identified by hard-to-guess UUIDs. This makes passing galleries around SMS or any chat platform very easy but one thing I did not expect is groups forming long-lived persistent galleries. Once you have more than one or two of these they become hard to keep track of.
I am currently working on an app with optional accounts for end users to (1) keep track of multiple galleries (2) allow iPhone live photo uploading (no way to do that within Safari) and (3) allow iPhones to upload pictures with metadata which Apple strips from all Safari uploads.
Here's a demo gallery with uploading disabled:
https://shareable.photo/73f4b812-51bd-42de-99f6-c58f65b18ae1...
Re: Ask HN: Those making $0/month or less on side projects – Show and tell
#114I have a few engaged users of my daily personalised newsletter, main USP is showing your calendar events for the day. Not monetised yet.
It's been fun to create, dealing with timezones, ingesting, processing and presentation of data etc etc. I use it myself daily, have done for years now so it's already paid for itself.
Re: Ask HN: Those making $0/month or less on side projects – Show and tell
#115It's like the web, except you don't need permission to create links between data, and whether you see other people's links/data depends on whether you explicitly subscribe to their "brushstrokes" in that "color".
"Colors" might include:
- this-javascript-is-malicious-and-here-is-a-patch-that-neuters-it
- this-is-a-claim-and-here-is-evidence-for-it
- the-food-described-by-this-menu-entry-causes-allergic-reactions-for-people-with-this-kind-of-allergy
Ideally, users (or aggregations thereof) will emerge as authorities on these topics and we can figure out how to pay them for being useful curators.
Since the references (this and here in the above example) are anchored to other pieces of text by CTPHs and not by name, you can find text in the world and point your camera at it and now you have links to follow.
There's a mapping between CTPH identified text and cryptographic-hash identified text, so we can use a DHT to move content around, I'll probably have plugins for different network constraints (i.e. Bittorrent, IPFS, Freenet, SSB, etc).
Since I'm solving the hard problem of naming things by just not naming things, I don't need an always-available DNS server (for instance), so I might as well see what else I can do without. I'm shooting for partition tolerant and latency tolerant, to run over secure sucttlebutt protocol (which presumes that the user is moving around gossips over ad-hoc networks), so it can be useful in a world where the ISP's are unusable for some reason.
Re: Ask HN: Those making $0/month or less on side projects – Show and tell
#116Re: Ask HN: Those making $0/month or less on side projects – Show and tell
#117Can we do projects that we know will stay at $0 but we still hope might gain traction? OSS: typed-graphql-builder https://typed-graphql-builder.spion.dev/ is a TypeScript based graphql query builder. No more writing untyped strings and running a watcher in the background - generate the builder from the server schema once then write any queries in TS with the help of the language server It was inspired by tql ( https:…
The only "downside" I can see is that all my projects are already set up to use graphql-codegen, and switching to this or tql would just not be worth the effort. This is because 1. it's really not that much of a hassle to run graphql-codegen on the side, since i'm already running other things on the side anyway 2. I'm also using graphql-codegen for other things, such as generating types for cache updates and such in urql.
I might give this a spin in a fresh project, though. But it probably won't let me drop the codegen dependency completely.
Re: Ask HN: Those making $0/month or less on side projects – Show and tell
#118This feels like the 3rd budgeting application post on here lol, but here we go.
A next-generation budgeting application, offering everything YNAB does, except at a lower price point, mobile application available (iOS & Android (soon)), plus with added features such as balance projection into the future as well as the ability to input fictional transactions and see outcome of those transactions on disposable income, etc.
Integrates with Plaid for banking, AI categorization and recurring transaction detection, auto-syncing transactions, the whole bunch.
I have a lot of features in the works to bring it much further than YNAB, although I think I already have feature parity. I don't have really much free money currently (saving for something big), so I don't really have much to allocate to marketing, so currently just spreading via word of mouth.
I really just made it as a budget replacement for myself, as I was running out of a google sheet which made it difficult to really use.
Re: Ask HN: Those making $0/month or less on side projects – Show and tell
#119Built a password protected daily journal app to encourage myself to write everyday. Wanted something very minimal and trustworthy and where all my data lives on my device and not on a server somewhere. Also wanted to see stats on how often I write and how much. iOS: https://apps.apple.com/us/app/a-journal-a-day/id1659288235 Android: https://play.google.com/store/apps/details?id=com.georgejose...
Re: Ask HN: Those making $0/month or less on side projects – Show and tell
#120https://www.bootstrapsite.com I've been working on a Bootstrap 5 landing page builder for almost 1 year now (mostly just weekends though). It's like my pet project than any money earning business but it gives me pleasure to work on it so I just keep at it. My plan is to open source it soon so people can create their sites and landing pages for free and host it on their own servers. Initially I made it create my own s…