frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GoFast v0.1.0: Next-generation Web Framework

https://github.com/Darkblade1995/gofast
1•fernando-darkbl•2m ago•0 comments

Infra Lang – DSL That Compiles to Kubernetes, Helm, Compose, Terraform, and CI

https://github.com/TuviDev/infra-lang
1•Tuvi•3m ago•0 comments

OpenAI pauses frontier model training

https://twitter.com/sama/status/2089787807611195475
2•vinyl7•8m ago•0 comments

Focus for 7 Months

1•Ssedume•10m ago•0 comments

Recursive Middle Manager Hell

https://www.lesswrong.com/posts/pHfPvb4JMhGDr4B7n/recursive-middle-manager-hell
1•rzk•10m ago•0 comments

OVHCloud dedicated servers: price change in the second half of 2026

https://blog.ovhcloud.com/en/posts/dedicated-servers-pricing-update-h2-2026/
1•pmw•14m ago•0 comments

GTA 6 hackers say leak is meant to punish Rockstar for the game's lack of discs

https://cyberleek.vilenarios.com/
1•HelloUsername•14m ago•1 comments

The most influential economist is oddly unconvincing

https://www.economist.com/finance-and-economics/2026/08/17/the-worlds-most-influential-economist-...
1•aragonite•17m ago•1 comments

Terra Incognita: The Economics of a Shrinking World [pdf]

https://www.sas.upenn.edu/~jesusfv/Demographics.pdf
1•toomuchtodo•18m ago•1 comments

Claude Code Teaching macOS to Natively Print to the HP Laser 1008a

https://cdn.kuber.studio/chat/hp-laser-1008a-driver
13•amrrs•18m ago•2 comments

Companies promote incompetent employees to management tolimit damage they can do

https://lawsofsoftwareengineering.com/laws/dilbert-principle/
1•behnamoh•19m ago•0 comments

Show HN: Live 1v1 push-up battles with friends or random people

https://apps.apple.com/us/app/pushrank-push-up-counter-game/id6796676940
1•haruniriz•21m ago•0 comments

ASCII-art bake-off – 7 models × 3 prompts

https://bloop.monster/ascii-art-92081b30cfc5d00135795942
2•glittle2•21m ago•2 comments

Mojo 1.0 vs. Jac, a Roadmap

https://github.com/jaseci-labs/jac/issues/8361
1•marsninja•21m ago•1 comments

Framework Laptop 12, now with Core Series 3

https://frame.work/gb/en/blog/framework-laptop-12-now-with-core-series-3
2•vin047•22m ago•0 comments

Putting Ideas into Words (2022)

https://paulgraham.com/words.html
1•rzk•23m ago•0 comments

Unemployment Benefits Boost Growth

https://www.nominalnews.com/p/how-unemployment-benefits-boost-growth
3•NomNew•24m ago•0 comments

Find Chicago Parking Cops

https://www.secondcitycitation.com
2•zayfai•24m ago•2 comments

The three pillars of observability were never designed

https://greptime.com/blogs/2026-08-11-observability-three-pillars-history
1•xzhuang1984•25m ago•0 comments

Snow-eater heat waves of the western United States

https://www.science.org/doi/10.1126/sciadv.aeb3361
2•littlexsparkee•28m ago•0 comments

Combinatorics-Framework released for QA testers/students

1•yb-combi•28m ago•0 comments

Medieval Medicine Fueled the Belief That Vampires Are Real

https://www.fangoria.com/real-life-vampire-lore-and-medieval-medicine-the-blood-of-dawnwalker/
1•wertyk•31m ago•0 comments

Comcast turns your Xfinity WiFi into a home motion detector

https://www.bleepingcomputer.com/news/security/comcast-turns-your-xfinity-wifi-into-a-home-motion...
1•nazgulsenpai•32m ago•0 comments

China Is Building a Blue Granary

https://www.palladiummag.com/2026/08/04/china-is-building-a-blue-granary/
1•sorenKaram•33m ago•0 comments

Unicode Consortium

https://en.wikipedia.org/wiki/Unicode_Consortium
1•toomuchtodo•34m ago•1 comments

What If America Went Dark?

https://www.nytimes.com/2026/08/18/magazine/national-blackout-power-electricity-outage.html
3•danso•35m ago•1 comments

DeckSpace – presentations that are web pages, not slide files

https://deckspace.org/
2•lijifly•37m ago•0 comments

LabCraft Blog: What does the hash in a Nix store path name?

https://www.labcraft.dev/blog/nix-store-paths
1•anandsuresh•40m ago•0 comments

Agents for Robot Builders

https://foxglove.dev/blog/foxglove-goes-agentic
1•intrepidsoldier•40m ago•0 comments

Npx passproof install: agent can't say tests passed unless the runner printed

https://github.com/AziizBg/passproof
1•AziizBg•41m ago•0 comments
Open in hackernews

Mojo 1.0 vs. Jac, a Roadmap

https://github.com/jaseci-labs/jac/issues/8361
1•marsninja•21m ago

Comments

marsninja•21m ago
I am the creator of Jac, a Python-like synechic programming language with AOT native backend among other backends. Now that Mojo is open source, I can fully understand it as a serious language. I, along with my best friend GPT, sat down to do a comparison and brainstorm how Jac should evolve (as I imagine C++/rust and Zig needs to do the same based on the strong contributions of Mojo).

The result is surprising in both directions. Two of the features Mojo is well known for already exist in Jac: a gradual borrow checker (more than 4k lines with use-after-move, borrow conflicts, region escape, with ARC as the default so plain Python-style code still runs unannotated), and parallel loops whose data-race freedom is checked statically at compile time. That last one is still a Phase 2 roadmap item for Mojo.

I have to acknowledge the other direction too though. Mojo is ahead on four concrete things: value/const generic parameters, first-class SIMD, native trait bounds, and GPU codegen. This issue lays out a potential plan for each, plus non-goals. We are not adopting MLIR, and ownership stays opt-in "gradual" rather than mandatory as this is one of the key innovations in Jac.

I would love to hear feedback on this analysis and potential roadmap, especially from anyone who has taken a look at the KGEN Elaborator sources.