nobu _at_ mori.enterprises
What are the guarantees about the networking? I saw this in the blog post: > The server state is automatically synchronized to clients, and the data model is the same on the server and client. This means that in the…
https://bugs.chromium.org/p/chromium/issues/detail?id=706008 It looks like the new headless mode does support extensions.
Now that headless mode is a "real" Chromium instance, is it possible to add extension support to Chrome running in headless mode?
That's great! All we need to do is negate the output and it will be more accurate.
Digital goods have very low marginal unit costs compared to physical goods.
The article talks only about nominal wage increases. It also has this gem: > Due to the transient nature of pandemic inflation... Real wages, overall, are decreasing: https://www.bls.gov/news.release/realer.nr0.htm >…
This is definitely a valid concern. OpenAI did extensive data grooming to ensure high-quality inputs were used as training data. They went out of their way, for instance, to attempt to remove auto-translated content.…
The case where User B navigates to cursor offset 0 as User A inserts at position 0 is actually easy because User B's cursor can just stay at 0. A harder case would be where User B moves to cursor offset X while User A…
The basic prototype I have right now works like this: The data model has this type in TypeScript: { text: string; cursors: { [userId]: { offset: number; } }; } Basically, the data model is a string of text and a set of…
I agree. Everything should be collaborative. Feel free to reach out if you're interested in collaborating (email in my HN profile). I'm trying to get a v0 of this database out now, and building desirable use-cases is…
CRDTs have been on HN a lot recently. I'm working on a database that deals in events rather than raw data. Application developers specify event handlers in JavaScript. The database layer then takes the event handlers…
That looks cool. Thanks for sharing. Rust's enums and match syntax make the API look pretty slick. What types of applications are you seeing people use Aper for?
I'm developing a new type (AFAIK) of database that makes many types of real-time multi-player use-cases really easy to implement. The original idea came from implementing something called "rollback netcode" in…
What are the guarantees about the networking? I saw this in the blog post: > The server state is automatically synchronized to clients, and the data model is the same on the server and client. This means that in the…
https://bugs.chromium.org/p/chromium/issues/detail?id=706008 It looks like the new headless mode does support extensions.
Now that headless mode is a "real" Chromium instance, is it possible to add extension support to Chrome running in headless mode?
That's great! All we need to do is negate the output and it will be more accurate.
Digital goods have very low marginal unit costs compared to physical goods.
The article talks only about nominal wage increases. It also has this gem: > Due to the transient nature of pandemic inflation... Real wages, overall, are decreasing: https://www.bls.gov/news.release/realer.nr0.htm >…
This is definitely a valid concern. OpenAI did extensive data grooming to ensure high-quality inputs were used as training data. They went out of their way, for instance, to attempt to remove auto-translated content.…
The case where User B navigates to cursor offset 0 as User A inserts at position 0 is actually easy because User B's cursor can just stay at 0. A harder case would be where User B moves to cursor offset X while User A…
The basic prototype I have right now works like this: The data model has this type in TypeScript: { text: string; cursors: { [userId]: { offset: number; } }; } Basically, the data model is a string of text and a set of…
I agree. Everything should be collaborative. Feel free to reach out if you're interested in collaborating (email in my HN profile). I'm trying to get a v0 of this database out now, and building desirable use-cases is…
CRDTs have been on HN a lot recently. I'm working on a database that deals in events rather than raw data. Application developers specify event handlers in JavaScript. The database layer then takes the event handlers…
That looks cool. Thanks for sharing. Rust's enums and match syntax make the API look pretty slick. What types of applications are you seeing people use Aper for?
I'm developing a new type (AFAIK) of database that makes many types of real-time multi-player use-cases really easy to implement. The original idea came from implementing something called "rollback netcode" in…