返回首页
最新
I built this as a personal replacement for Kiwi Browser, since it is now archived.<p>It brings Chrome extensions to Android. I just wanted something that works fast and feels right for daily use.<p>If Firefox and Edge just don't feel right on Android, and you prefer Chromium but are too lazy to maintain your own fork, this might be the answer. Just don't expect too much—I really just built this for myself.<p>P.S. I realized the name clash with Elixir lang after finishing it. Well, whatever.
Curious what people are building this year.<p>What side projects are you working on in 2026?
Could be software, hardware, research, learning projects, businesses, or just experiments.<p>Links welcome.
Hi HN,<p>I’m the author of agent-contracts, a Python library that explores a
contract-based approach to structuring LangGraph agents.<p>When building larger LangGraph-based systems, I kept running into the
same issues:
- node responsibilities becoming implicit
- state dependencies spreading across the graph
- routing logic getting harder to reason about
- refactoring feeling increasingly risky<p>agent-contracts is an attempt to make these boundaries explicit.
Each node declares a contract that describes:
- which parts of the state it reads and writes
- what external services it depends on
- when it should run, using rule-based conditions with optional LLM hints<p>From these contracts, the LangGraph structure can be assembled in a more
predictable and inspectable way.<p>This is still early-stage and experimental.
I’m mainly interested in feedback on the design trade-offs and whether
this mental model resonates with others building complex agent systems.
<a href="https://xcancel.com/eastdakota/status/2009654937303896492" rel="nofollow">https://xcancel.com/eastdakota/status/2009654937303896492</a><p><a href="https://torrentfreak.com/italy-fines-cloudflare-e14-million-for-refusing-to-filter-pirate-sites-on-public-1-1-1-1-dns/" rel="nofollow">https://torrentfreak.com/italy-fines-cloudflare-e14-million-...</a>
Wanted a simple way to install command line tools released on GitHub without waiting for the repository owner to create and publish a Chocolatey package.<p>For now works for simple .zip releases based on Regex. The website simply replies to choco with a nupkg that essentially just says "install/update this release from GH".<p>If some package release is not being recognized or you want me to add support for MSI and other package types, post to <a href="https://github.com/GitCho-co/GitChoco/issues" rel="nofollow">https://github.com/GitCho-co/GitChoco/issues</a>