frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Self-Assembly Gets Automated in Reverse of 'Game of Life'

https://www.quantamagazine.org/self-assembly-gets-automated-in-reverse-of-game-of-life-20250910/
1•romanzubenko•2m ago•0 comments

Not all browsers perform revocation checking

https://revoked-isrgrootx1.letsencrypt.org/
1•sugarpimpdorsey•4m ago•0 comments

Compile a timeline of your water quality results

https://hydroanalyze.tech/
1•harishiitkgp7•16m ago•1 comments

996: The truth about working hours, then and now

https://medium.com/@cjc/working-hours-then-and-now-09d2469b8895
1•cristinacordova•19m ago•1 comments

Which NPM package has the largest version number?

https://adamhl.dev/blog/largest-number-in-npm-package/
1•genshii•19m ago•0 comments

How I became a machine learning practitioner (2019)

https://blog.gregbrockman.com/how-i-became-a-machine-learning-practitioner
1•cyanf•28m ago•0 comments

AI pro se lawsuit targets $15B shell-company fraud at pharma giant

https://www.15billiondollarcase.com/
2•Heretoexpose•29m ago•1 comments

Dunk: Prettier Git Diffs in the Terminal

https://github.com/darrenburns/dunk
1•JNRowe•31m ago•0 comments

Riffq is a Postgres wire protocol compatibility layer for Python

https://riffq.com/
3•Bogdanp•33m ago•0 comments

Should security cost your privacy?

https://proton.me/blog/should-security-cost-your-privacy
3•jethronethro•39m ago•0 comments

Cyber-scam camp operators shift ops to vulnerable countries as sanctions strike

https://www.theregister.com/2025/09/15/asia_tech_news_roundup/
2•rntn•44m ago•0 comments

Arbitrary control of the flow of light using pseudomagnetic fields

https://www.spiedigitallibrary.org/journals/advanced-photonics/volume-7/issue-06/066001/Arbitrary...
1•juancn•46m ago•1 comments

FBI Alert: Two Cybercriminal Groups Are Actively Compromising Salesforce

https://securityonline.info/fbi-alert-two-cybercriminal-groups-are-actively-compromising-salesforce/
2•kPwn•47m ago•0 comments

Backup and restore your dotfiles, packages and tooling – using GitHub Releases

https://github.com/Xzar-x/github-release-dotfiles-backup
1•thunderbong•48m ago•0 comments

Interface

https://www.doc.cc/syntax/interface
3•pentagrama•50m ago•0 comments

Summary/timeline of home tech advancements for each era

https://www.entertainingtech.com
1•liquidblueocean•50m ago•1 comments

Character Limit Text Length

1•sophielang0213•55m ago•1 comments

I built a Concentric Circle Sequencer [video]

https://www.youtube.com/watch?v=1E_KHO_H-DE
1•sabrina_ramonov•57m ago•0 comments

Vibe Coding Is Making Braindead Coders

https://nmn.gl/blog/vibe-coding-gambling
3•namanyayg•58m ago•1 comments

OpenAI Model Spec

https://model-spec.openai.com/2025-09-12.html
1•RyanShook•1h ago•0 comments

Hosting a WebSite on a Disposable Vape

https://bogdanthegeek.github.io/blog/projects/vapeserver/
3•Bogdanp•1h ago•1 comments

Digital Public Goods Registry

https://www.digitalpublicgoods.net/registry
1•Brysonbw•1h ago•0 comments

Scientists summon massless demon particle

https://www.popularmechanics.com/science/energy/a66087807/scientists-summon-massless-demon-particle/
3•jodacola•1h ago•0 comments

Implement Primary Support for MTE

https://github.com/WebKit/WebKit/pull/50687
1•gok•1h ago•0 comments

Waymo involved in second fatal crash – not at fault

https://www.forbes.com/sites/bradtempleton/2025/09/14/waymo-involved-apparently-not-at-fault-in--...
1•chiwilliams•1h ago•0 comments

For Good First Issue – A repository of social impact and open source projects

https://forgoodfirstissue.github.com/
2•Brysonbw•1h ago•0 comments

Jordium GanttChart vue3 v1.3.0 coming

https://github.com/nelson820125/jordium-gantt-vue3
3•nelson820125•1h ago•0 comments

Digital Public Goods

https://www.digitalpublicgoods.net/digital-public-goods
3•Brysonbw•1h ago•0 comments

What happened to the zero cost abstraction in C++? [video]

https://www.youtube.com/watch?v=fyjJPwkVOuw
2•bijan7•1h ago•0 comments

CI for Libvirt/Bhyve on FreeBSD

http://empt1e.blogspot.com/2025/09/ci-for-libvirtbhyve-on-freebsd.html
3•transpute•1h ago•0 comments
Open in hackernews

Show HN: Dagger.js – A buildless, runtime-only JavaScript micro-framework

https://daggerjs.org
18•TonyPeakman•1h ago
TL;DR: dagger.js is a buildless, runtime-only micro-framework that plays nicely with native Web Components. It uses HTML-first directives (e.g. +click, +load) so you can ship a page by dropping a single <script> from a CDN—no bundlers, no compile step.

Why I built it Modern stacks are powerful but often heavy: bundlers, compile steps, framework DSLs, local CLIs. For internal tools, small apps, and edge/serverless deployments, I wanted something you can view-source, paste into a page, and ship.

What it is:

Runtime-only: no build or VDOM compile; hydrate behaviors directly on HTML. HTML directives: e.g. +click, lifecycle +load / +loaded / +unload / +unloaded. Zero APIs: dagger.js works in pure declarative mode, modules and directives provide everything you need to build your application. Web-Components-first: works alongside Custom Elements; keep concerns local. Distributed modules: load small, focused script modules via CDN. Progressive enhancement: the page renders without a build step.

Use cases:

Admin panels & dashboards that don’t warrant a full toolchain Embed widgets, docs-sites with interactive bits Edge/serverless apps where cold start and simplicity matter

Links

GitHub: https://github.com/dagger8224/dagger.js Docs/Guide: https://daggerjs.org Examples: https://codepen.io/dagger8224/pens

I’d love feedback on edge-cases, and where it breaks. Happy to answer tough questions here.

Comments

TonyPeakman•1h ago
thanks for taking a look!

Positioning: Think Alpine/Vue-like ergonomics but no build and WC-first.

Size & perf: Focus is on simplicity and startup latency over framework features. I’m not posting synthetic benchmarks; if you have a real page you want me to try, I’ll profile it and share results.

Interop: Works with native Custom Elements. I’m preparing examples with Shoelace/FAST.

Security: Directives are sandboxed; no eval. If you spot an injection risk, please open an issue and I’ll patch quickly.

Limitations: Complex state management, SSR/streaming, and huge SPA routing aren’t first goals.

License: MIT.

Contrib: Issues and small PRs welcome (docs, examples, tests especially).

I’ll stay in the thread to answer questions and incorporate feedback into the docs.

xupybd•1h ago
Website looks dead. I get Godaddy domain parking.
pylotlight•44m ago
worked for me. See also: https://github.com/dagger8224/dagger.js
mdaniel•29m ago
I'd guess people are getting different results because of the varying A records https://dns.google/query?name=daggerjs.org

https://www.whois.com/whois/3.33.130.190 and https://www.whois.com/whois/15.197.148.33 are AWS

https://www.whois.com/whois/185.199.109.153 and similar are GitHub and is almost certainly this repo https://github.com/dagger8224/dagger8224.github.io/blob/main...

xupybd•3m ago
[delayed]
jodacola•58m ago
FYI: daggerjs.org is resolving to a GoDaddy domain parked page right now.

Will check out the repo linked at the end of your message.

TonyPeakman•2m ago
Thanks for reporting this, jodacola, it seems there is domain parsing issue sometimes, you may refer to the alternative site: https://000712133.deployed.codepen.website/#overview/introdu...
malfist•42m ago
Dagger is also a compile time java dependency injection framework
mdaniel•36m ago
And a very cool CI toolkit https://github.com/dagger/dagger (Apache 2)

Link to the DI mentioned by the parent comment https://github.com/google/dagger (also Apache 2)

mkoryak•40m ago
Seems neat. I wouldn't use it for personal stuff because I'd be afraid of getting locked into a framework that might not exist next year.

Once this project is about a year old, if it still has any commits, then I'd consider it.

mdaniel•40m ago
What are the criteria for $ interpolation? Is it everywhere?

  <div class="text">
        ${ winner ? 'Wins' : 'Draw' }!
  </div>
nivethan•25m ago
Is this aimed at being in the same role as petite-vue and alpinejs? They also don't have a build step.

I've started to think something like petite-vue and twind would let you build small internal tools quickly, there are some major downsides to it which is why I haven't committed yet.

taosx•13m ago
I’d actually love to see something that goes in the opposite direction, highly optimized and compiled, where the result is as small, fast, and efficient as possible. I get that a lot of people dislike compilation, but once I have the CI set upI never found build steps to be a problem for me.

Some time ago while I was experimenting with writing Debian benchmarks[0], I found that by completely avoiding strings, using Uint8Arrays, and manually managing bounds/memory, I could squeeze out performance that almost made you forget you were writing JavaScript. I never ended up submitting a PR, but it was pretty eye-opening.

At one point I went into a rabbit hole and tried to build something similar on my own, but it got complicated very quickly given my limited compiler knowledge. That’s why I always thought Prepack[1] was such a cool idea.

[0] https://benchmarksgame-team.pages.debian.net/benchmarksgame/... [1] https://github.com/facebookarchive/prepack

wffurr•10m ago
Seems like it’s been a while since a new JS framework landed on the front page.