Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
danielmewes
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
Show HN: Open-source AI scientist for semi-autonomous theory discovery
(github.com)
2 points
by
danielmewes
2mo ago
|
0 comments
2.
▲
Using evolution to automate AI model research
(imbue.com)
12 points
by
danielmewes
2mo ago
|
0 comments
3.
▲
by
danielmewes
7mo ago
Author here. We originally developed our evolution-inspired tool to optimize LLM prompts. To our surprise, we found that the same method also worked well for getting better performance out of a base model on ARC-AGI tasks. We're open-s
4.
▲
Tripling an LLM's ARC-AGI-2 score with code evolution
(imbue.com)
17 points
by
danielmewes
7mo ago
|
2 comments
5.
▲
Code-less vibe-"coding" – hallucinating apps one screen at a time
(amongai.com)
4 points
by
danielmewes
9mo ago
|
2 comments
6.
▲
by
danielmewes
9mo ago
Using an LLM to hallucinate arbitrary apps, one screen and user interaction at a time.
7.
▲
by
danielmewes
1y ago
It's on our roadmap! Any particular features you'd be looking for when we add support for those models/agents?
8.
▲
by
danielmewes
10y ago
Edit: While Horizon assigns versions internally, it looks like they are not currently used for catching concurrent client-side modifications by different users. (I previously wrote that they would cause the "losing" write to fail
9.
▲
by
danielmewes
10y ago
You'll need to pass the a certificate to `connect` through the `ssl` option, see http://www.rethinkdb.com/api/python/connect/
10.
▲
by
danielmewes
10y ago
Daniel @ RethinkDB here. We're constantly improving performance and a lot has happened within the past year. I think that at this point RethinkDB is as good a database for analytics as many of the other general-purpose databases when i
11.
▲
by
danielmewes
11y ago
Daniel from RethinkDB here. The answer is yes, that's definitely on the radar. I can't give an ETA for the official drivers yet, but I hope it's going to happen relatively soon.
12.
▲
by
danielmewes
11y ago
We've heard from a lot of users who want to run RethinkDB on their Windows computer for development purposes. Production servers could then run on either Linux or Windows. I'm not too familiar with Microsoft's licensing terms
13.
▲
by
danielmewes
11y ago
> That's not what http://rethinkdb.com/docs/quickstart/ says. It shows a connection that exposes context-bound Builder methods with trigger (insert, changes, run, etc) methods. I think the confusion stems
14.
▲
by
danielmewes
11y ago
You might want to check out the new Windows build instructions here: https://github.com/rethinkdb/rethinkdb/blob/atnnn/windows2/W... We've since simplified the build process, and it can now bui
15.
▲
by
danielmewes
11y ago
A new epoch timestamp is generated when you either first create a new table, or when you use the "emergency repair" operation to manually recover from a dead Raft cluster (usually one that has lost a majority of servers). The wall
16.
▲
by
danielmewes
11y ago
Daniel @ RethinkDB here. We're going to add an asynchronous API soon. We decided to get the synchronous driver out to get some early feedback and because we know that a lot of our users have been waiting for official Java support, and
17.
▲
by
danielmewes
11y ago
Yes! We wanted to get the synchronous driver out first to get feedback. But a non-blocking mode is definitely coming up. https://github.com/rethinkdb/rethinkdb/issues/4802
18.
▲
by
danielmewes
11y ago
We only submitted the configuration that passed all scenarios, but tested some of the others internally. You generally don't get guaranteed linearizability of operations under network partitions in any of the faster configurations.
19.
▲
by
danielmewes
11y ago
We're still working on the full documentation for the Twisted and asyncio backends. We'll put it up in the next days. You can find the Tornado documentation under the link coffeemug mentioned.
20.
▲
by
danielmewes
11y ago
Unfortunately 2.0 nodes cannot connect to 2.1 nodes and vice versa, so depending on your table configuration you might need to update all of them at the same time.
21.
▲
by
danielmewes
11y ago
If I understand that scenario correctly, it assumes that there is a node that can successfully send messages to the other nodes in the cluster, but cannot receive any responses. Since RethinkDB uses TCP connections, this shouldn't usua
22.
▲
by
danielmewes
11y ago
Ah, I have to check how we behave in that case. Thanks for the pointers.
23.
▲
by
danielmewes
11y ago
We haven't added special logic for handling such cases. I think having servers with particularly unstable connectivity in a RethinkDB cluster is really uncommon though. If you want to run a RethinkDB server on your mobile device that&
24.
▲
by
danielmewes
11y ago
We have carefully designed the way data is versioned and replicated in RethinkDB 2.1 to result in a correct and consistent system in combination with the Raft-supported configuration management. For example we make sure that both components
25.
▲
by
danielmewes
11y ago
That's a great question. In our current architecture, we perform failover by selecting a new primary among the existing replicas for a given shard. We do not however add new servers to the replica list during a failover condition. Ther
26.
▲
by
danielmewes
11y ago
Yes, that patch for soft durability writes is in there. Looking forward to hear if it improves things for you.
27.
▲
by
danielmewes
11y ago
3 nodes are indeed required to have automatic failover working. We recommend using 3 (or more) nodes and replicating all tables with a replication factor of 3. That way each node is going to maintain a full copy of the data. In case of a 1
28.
▲
by
danielmewes
11y ago
General query performance should be the same, if not better in this release (the improvements are not due to Raft, but due to other changes). We use Raft only to determine a consistent configuration. The queries themselves are executed in t
29.
▲
by
danielmewes
11y ago
(Daniel at RethinkDB here) Thanks for the nice words. We're going to add changefeeds that can survive short client disconnects in 2.2, and add further reliability features for changefeeds in the following versions.
30.
▲
by
danielmewes
11y ago
Note that (according to the linked commits), RethinkDB is using what we call "hard" durability in this comparison. This is our default to ensure maximum data safety. Hard durability means that every individual write will wait for
More ›