HackerTrans
TopNewTrendsCommentsPastAskShowJobs

realPubkey

no profile record

Submissions

Local-Second, Event-Driven Webapps

softwaremill.com
2 points·by realPubkey·10 bulan yang lalu·0 comments

[untitled]

1 points·by realPubkey·11 bulan yang lalu·0 comments

Unlocking Value on the Private Internet

julianduru.com
1 points·by realPubkey·11 bulan yang lalu·0 comments

First time building an LMS: Offline first

polymorph.co.za
1 points·by realPubkey·2 tahun yang lalu·0 comments

[untitled]

1 points·by realPubkey·3 tahun yang lalu·0 comments

[untitled]

1 points·by realPubkey·3 tahun yang lalu·0 comments

comments

realPubkey
·3 bulan yang lalu·discuss
A big limitation for skills (or agents using browsers) is that the LLM is working against raw html/DOM/pixels. The new WebMCP API solves this: apps register schema-validated tools via navigator.modelContext, so the agent has structured JSON to work with and can be way more reliable.

WebMCP is currently being incubated in W3C [1], so if it lands as a proper browser standard, this becomes a endpoint every website can expose.

I think browser agents/skills+WebMCP might actually be the killer app for local-first apps [2]. Remote APIs need hand-crafted endpoints for every possible agent action. A local DB exposed via WebMCP gives the agent generic operations (query, insert, upsert, delete) it can freely compose multiple steps of read and writes, at zero latency, offline-capable. The agent operates directly on a data model rather than orchestrating UI interactions, which is what makes complex things actually reliable.

For example the user can ask "Archive all emails I haven't opened in 30 days except from these 3 senders" and the agent then locally runs the nosql query and updates.

- [1] https://webmachinelearning.github.io/webmcp/

- [2] https://rxdb.info/webmcp.html
realPubkey
·4 bulan yang lalu·discuss
The last days I built the WebMCP plugin for the RxDB database [1]

The goal is to let agents interact with apps through explicit tools instead of DOM scraping or visual navigation. This works nicely because agents can run operations directly on the local-first data the UI already uses.

[1] https://rxdb.info/webmcp.html
realPubkey
·tahun lalu·discuss
This is likely done with the WebLocks API
realPubkey
·tahun lalu·discuss
By buildings small things, you will find ideas for bigger things that people actually need.
realPubkey
·2 tahun yang lalu·discuss
Yes most servers support websockets. But unfortunately most proxies and firewalls do not, especially in big company networks. Suggesting my users to use SSEs for my database replication stream solved most of their problems. Also setting up a SSE endpoint is like 5 lines of code. WebSockets instead require much more and you also have to do things like pings etc to ensure that it automatically reconnects. SEEs with the JavaScript EventSource API have all you need build in:

https://rxdb.info/articles/websockets-sse-polling-webrtc-web...
realPubkey
·2 tahun yang lalu·discuss
No. The title is the title, not the context. If people do not read the first 5 sentences of the introduction, you cannot help anyway.
realPubkey
·2 tahun yang lalu·discuss
Imagine what you could dream about if you stopped THC.
realPubkey
·2 tahun yang lalu·discuss
You have to quit THC for at least two weeks until you start dreaming again.
realPubkey
·2 tahun yang lalu·discuss
Wow. This should be fixed. Which browser/OS are you using? Are you in dark mode?
realPubkey
·2 tahun yang lalu·discuss
Half-life of DNS bondings is about 10k years.
realPubkey
·2 tahun yang lalu·discuss
Same experience for me but with west africa.
realPubkey
·2 tahun yang lalu·discuss
Most of the time you should not even check for the runtime. Instead you should check for the specific feature support that you want to use.
realPubkey
·2 tahun yang lalu·discuss
Looks great. How does it behave on conflicts when 2 offline users write to the same rows and then go online?
realPubkey
·2 tahun yang lalu·discuss
When they reach lower temperatures like 900C, we could finally replace the inefficent hot water turbines in coal power stations.
realPubkey
·2 tahun yang lalu·discuss
Which books are they banning?
realPubkey
·2 tahun yang lalu·discuss
[flagged]
realPubkey
·2 tahun yang lalu·discuss
I use it in production so i can crawl instagram (and others) without paying for proxies. Tor is single threaded so I have 6 docker containers that run tor proxies to get more bandwith out of it. The best thing about tor is that you set it up once and it will work forever for free.
realPubkey
·2 tahun yang lalu·discuss
Is there any hidden information?
realPubkey
·2 tahun yang lalu·discuss
These "propaganda" makers will tell you straight into the face. It is upon you to not watch their content or buy their products.
realPubkey
·2 tahun yang lalu·discuss
Author here. The article is mostly about web apps. How would your signaling server emit new connection updates to clients in the scenario you describe?