Viewing profile — thenorthbay
thenorthbay
HN member- Joined
- Fri, Aug 04, 2023, 11:54 PM UTC
- HN karma
- 91
- Public activity
- 25 items
- HN profile
- View on Hacker News ↗
About thenorthbay
No profile information was provided.
Recent public activity
-
story
Ask HN: AI Agents for Automated Web E2E Testing
Hey HN, together with a friend we realized in our engineering jobs that e2e testing is often broken and not worth the effort. But AI Agents could change this massively. There are a…
-
story
Ask HN: Is Serverless Overkill?
I just can't help observe that my developer friends increasingly build on the "low-end", serverful platforms instead of serverless. Many call serverless overkill for the (commercia…
-
comment
Comment #40652015
Maybe not for editing per se. But for providing meta-functionalities to services built on top of revideo. Rendering, for instance, but maybe even reusable embeds, video watch analy…
-
comment
Comment #40651517
Interesting stuff! Which use cases do you think developers will use you most for? There could be really interesting abstractions that people might build on top of this. Like automa…
-
comment
Comment #40156422
that's pretty cool! Would be great to have it for TS to configure my own backend
-
story
Ask HN: Wouldn't it be cool to have a Supabase for SQLite?
Wouldn't it be cool to have a Supabase for SQLite? The core idea here is: let SQLite run next to your application on the server; but have all features a client-server database give…
-
comment
Comment #37059926
I just did a quick search and struggled to find anything about the performance issues you referred to - can you link something so I can take another look? Thanks for the suggestion…
-
comment
Comment #37054940
Hey! Thanks for the feedback. I'd just be worried people might not be using the correct libraries since I think they still provide different functionality. So exporting one Databas…
-
comment
Comment #37054887
Yup! I doubt this project will naturally evolve into whatever you're describing. And that's ok! This project might help people who want to use SQLite like Firebase, with a similar …
- comment
-
comment
Comment #37054721
Yeah interesting. I'm wondering what happens when I'm starting to introduce things from "outside" the system that need async operations, like processing webhooks.
-
comment
Comment #37054671
Just didn't find it quickly enough after some browsing. Also, using SQLite seemed so simple.
-
comment
Comment #37054666
I'm using SQLites underlying Data Change Notification functionality. It's exposed by one of the libraries mine relies on.
- comment
- comment
-
comment
Comment #37043041
Thank you!
-
comment
Comment #37043034
If I understood you correctly, Documents in a database, and database as a file. If else please let me know.
-
comment
Comment #37042768
Thank you for the feedback. Seems this is important.
-
comment
Comment #37042700
Here's the source: https://github.com/thenorthbay/doculite
-
comment
Comment #37042564
Yup! I actually don't know about that. I figured this would be used for setting up newer, server-side Remix or Next projects rather than more dated ones. I could imagine that by ke…
-
comment
Comment #37042481
If you use the library on a server in a node.js environment, wouldn't it be useful to fetch data (e.g. Remix / NextJS)? Besides, I'm not sure if better-sqlite3 offers the listener …
-
comment
Comment #37042435
I guess it was sufficient to not have that kind of accuracy in most of the application to deliver user value. There probably were parts of the application where we used transaction…
-
comment
Comment #37041651
Interesting. Updating values via incrementing them is a use case I barely had in Firebase. I mostly only dealt with 1-time updates to values, e.g. by the user or scheduled jobs. In…
-
comment
Comment #37041482
Yes – I'm using JSON_extract and generated virtual columns https://www.sqlite.org/json1.html#jex Edit: the database is stored in a sqlite.db file in the cwd
-
story
Show HN: Doculite – Use SQLite as a Document Database
Hi! As I was working on a side project, I noticed I wanted to use SQLite like a Document Database on the server. So I built Doculite. DocuLite lets you use SQLite like Firebase Fir…