frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Death by a 1000 Standups

https://niyas.me/articles/standups
2•niazangels•2m ago•0 comments

Show HN: TripJam – Collaborative AI Travel Agent

https://tripjam.app
1•kenforthewin•2m ago•0 comments

Hacker who breached comms app used by Trump aide stole data from across US govt

https://www.yahoo.com/news/exclusive-hacker-breached-communications-app-100242693.html
1•rmason•3m ago•0 comments

Show HN: How to Use Mermaid Chart as an AI Diagram Generator for Developers

https://docs.mermaidchart.com/blog/posts/how-to-use-mermaid-chart-as-an-ai-diagram-generator
1•msfi•3m ago•0 comments

Scientists figure out how the brain forms emotional connections

https://arstechnica.com/science/2025/05/scientists-figure-out-how-the-brain-forms-emotional-connections/
1•pseudolus•3m ago•0 comments

My Tony Robbins Experience

https://idiallo.com/blog/a-tony-robbins-story
1•foxfired•3m ago•0 comments

UnitedHealth paid nursing homes to reduce hospital transfers

https://www.theguardian.com/us-news/2025/may/21/unitedhealth-nursing-homes-payments-hospital-transfers
2•Jimmc414•4m ago•0 comments

SysModeler AI – Instantly turn text, code, or voice into SysML models

https://sysmodeler.ai
1•mtbwaez•4m ago•1 comments

Marked decline in semicolons in English books, study suggests

https://www.theguardian.com/science/2025/may/18/marked-decline-semicolon-use-english-books-study-suggests
1•gnabgib•4m ago•0 comments

Coworker.ai launches agentic AI with company context, backed by $13M seed

https://finance.yahoo.com/news/coworker-ai-launches-first-ai-123100009.html
1•thesunsets•5m ago•0 comments

Remembering the ISP That David Bowie Ran for Eight Years

https://hackaday.com/2025/05/19/remembering-the-isp-that-david-bowie-ran-for-eight-years/
1•rmason•7m ago•0 comments

Baby Saved by First Single-Patient Gene-Editing Medicine

https://newsforkids.net/articles/2025/05/21/baby-saved-by-first-single-patient-gene-editing-medicine/
1•thunderbong•7m ago•0 comments

I made a code security auditor for all you dumb vibe coders – thank me later

https://github.com/anshulyadav1976/VulnViper
1•anshulyadav1976•7m ago•1 comments

Obsidian 1.9.0 launches with new file format

https://www.neowin.net/news/obsidian-190-launches-with-new-file-format-footnotes-view-plugin-and-more/
2•bundie•13m ago•0 comments

Verizon tries to get out of merger condition requiring it to unlock phones

https://arstechnica.com/tech-policy/2025/05/verizon-tries-to-get-out-of-merger-condition-requiring-it-to-unlock-phones/
2•coloneltcb•13m ago•0 comments

I built Zuzia.app to simplify server monitoring and task automation

https://zuzia.app/
1•gbukat•14m ago•1 comments

Mason: Scalable, Contiguous Sequencing for Building Consistent Services [pdf]

https://www.cs.princeton.edu/~wlloyd/papers/mason-jsys23.pdf
1•foota•20m ago•1 comments

Tesla's head of self-driving admits 'lagging a couple years' behind Waymo

https://electrek.co/2025/05/21/tesla-head-self-driving-admits-lagging-a-couple-years-behind-waymo/
6•NullHypothesist•20m ago•0 comments

Ask HN: What are you using to generate logos?

2•slow_turtle3•23m ago•0 comments

Google is baking Gemini AI into Chrome

https://www.pcworld.com/article/2788839/project-mariner-google-is-baking-gemini-ai-into-chrome.html
2•iio7•23m ago•0 comments

All Embedding Models Learn the Same Thing

https://twitter.com/jxmnop/status/1925224612872233081
1•MrBuddyCasino•28m ago•0 comments

An autostereogram ("Magic Eye") solver

https://huggingface.co/spaces/thearn/magiceye-solver
1•thearn4•28m ago•1 comments

Ask HN: Using LLMs for Better Design in Front End Development?

1•lukis_mx•30m ago•0 comments

Show HN: RepublishAI – WordPress AI Agents

https://republishai.com/
1•domid•30m ago•0 comments

Apple was Captured by China [video]

https://www.youtube.com/watch?v=NAj9zB4vaZc
3•ViktorRay•31m ago•0 comments

Big US cities are sinking. Which city is sinking fastest?

https://www.usatoday.com/story/news/nation/2025/05/08/big-us-cities-are-sinking-which-city-is-sinking-fastest/83492473007/
3•gmays•32m ago•0 comments

Rocky Linux 10 Will Support RISC-V

https://rockylinux.org/news/rockylinux-support-for-riscv
3•fork-bomber•32m ago•0 comments

Show HN: Gestiona tus rentas por día (Inflables, botargas,)

https://rent-ejej.onrender.com
1•oscarolbe•32m ago•1 comments

Show HN: High-resolution surface analysis with Lidar data

https://github.com/r-follador/delta-relief
1•folli•33m ago•0 comments

The Long Way into Open Source

https://opensource.org/maintainers/kgodey
2•kgodey•36m ago•0 comments
Open in hackernews

Lune: Standalone Luau Runtime

https://github.com/lune-org/lune
58•erlend_sh•6h ago

Comments

90s_dev•5h ago
This looks like a great alternative to TypeScript + Node.js which I currently use.

My main gripe with Lua (and thus Luau) is colons. It's so easy to forget them. Does the type checker catch this error? And if so, does it catch it every time, provided you always use types? If so, that could be good enough for me. Especially if it has strong LSP + VS Code support.

gsck•5h ago
Do you mean colons for calling methods of an object, or semicolons at the end of lines?
LoganDark•5h ago
Lua doesn't require semicolons at the end of lines. (Or lines at all.) Meanwhile accidentally using a period instead of a colon (field call instead of namecall) is completely semantically different (namecall passes self).
Moomoomoo309•5h ago
Oh, Lua's type checker doesn't check function calls at all. Pass too few arguments? The rest are nil. Pass too many? The extras are dropped. An editor could check for it relatively easily (and some do, I think), but the language doesn't care at all.
debugnik•4h ago
Is this true of Luau as well, which is the dialect used here? Or are you talking about just Lua (which doesn't have a type checker at all) or LuaLS?

I'd check for myself but Luau's web demo seems to lack the most important feature of their dialect, type checking.

parenwielder•3h ago
Hi there, I’m from the Luau team. Just wanted to clarify that no, nothing they said about the type system is true of Luau. It reads like a comment about Lua’s runtime typechecking maybe (which is as limited as you’d expect from a dynamically typed language).
debugnik•2h ago
Thanks, I suspected as much!

Since you're here: Is it reasonably feasible for users to add declaration files for code exported from the host application? The lack of documentation got me stuck the last time I tried to embed Luau. Aside from that, I'm very excited about it!

deviaze•1h ago
Yes! As an embedder you can write definition and declaration files! Declaration files are usually named like `globals.d.luau` and have a slightly different syntax than regular Luau. But it's really easy to set up global def files that you can pass to luau-lsp. Atm for my Luau runtime (seal), I have a small globals.d.luau and just bundle all the stdlib type files in a typedefs folder that gets included alongside my binary: https://github.com/deviaze/seal/tree/main/.seal

This is just because definition files don't support doc comments yet (for hovers w/ luau-lsp)

SkiFire13•4h ago
> Lua's type checker

Lua has a type checker?

parenwielder•3h ago
Luau’s type system does arity checking and type checking for function calls, and even has a specialized error that detects when you probably meant to write a colon instead of a dot.
euvin•5h ago
Cool to see a niche tool I use suddenly on hacker news! I just use it to serialize Roblox game assets, but I do wonder how many people are out there using it for non-roblox purposes.
ricardobeat•4h ago
At this point I see it as turn-off when a project like this uses Rust. Slow, massive tooling and such a huge barrier to entry, when we have Go, Zig or just C (this ends up being largely backed by libc/ucrt anyway?).
ellg•4h ago
whats the actual barrier? installing rust? looking at the instructions this doesnt seem much harder than installing zig or go?
codeflo•4h ago
It isn’t, arguably easier than installing Go (no GOPATH). Rust compile times are really slow compared to Zig or Go though.

(Edit: As this seems to trigger some people: I code in Rust. I’m just stating the facts.)

timschmidt•3h ago
Rust compile times are *really* fast compared to running Zig or Go through a static checker and then a compiler, to arrive at similar confidence in the behavior of the code as a single run through rustc.

It sounds like maybe you're used to skipping part of the development process required for stable well-tested software. Maybe that works for UIs? Wouldn't want my runtime authors feeling that way.

lvass•3h ago
Why run a static checker in every single machine you compile a project on if a developer already ran it elsewhere?
timschmidt•3h ago
People who aren't developers generally install pre-built binaries. I know that's how almost every Linux distribution I've used for going on 30 years has worked.

Developers, on the other hand, seem to need some help running static checkers regularly. Most don't seem to have well exercised CI toolchains doing it for them. Or aren't aware that they should be doing so - like yourself.

Rust makes use of the tight integration between language, compiler, and checker to allow the language to be easier and more thoroughly checked than possible with checkers built for other languages. Many steps performed for compilation are reused. Which is what makes it so fast.

If you think "why can't I skip this?" you have missed the point and are exactly the target developer these checks are for.

I've written a lot of software. Never had a complaint about compile times in any language. The reality of developing with Rust is that after the first build, only changed files are rebuilt, which makes it just as fast to compile as any other language.

If compile times are what concerns you about a language, that tells me you're not very far along in your career. You have a lot more problems to discover which are very much more serious. If you ever encounter the problems Rust solves, you'll grow to appreciate it's solutions.

bbkane•1h ago
The smallest unit of compilation in Rust is the crate, not individual files unfortunately. That's why you'll see larger projects like Wezterm or uv use workspaces to try to tame compile times.
timschmidt•48m ago
You're right that the crate, not the file, is the smallest unit of compilation.

My largest rust project is still fairly small at around 8k lines across two dozen files. Still, it builds and links in 30 seconds on my workstation which is several years old and not particularly fancy.

I could see this beginning to become an issue around 100k lines of code, but I'd think most people would be looking to split into multiple crates before that just for readability.

eddd-ddde•1h ago
You can install pre built binaries if you are not concerned about developing new features.
ellg•3h ago
Dont disagree that compile times are slower compared to alternatives in this space, although I'm not sure I'd quite describe that as some sort of barrier to entry from contributing
harryvederci•2h ago
Just FYI: GOPATH isn't a thing anymore.
90s_dev•4h ago
Zig is just as much mental overhead. C and C++ are too, but most of us have amortized that cost already. Go is already a legacy language that probably shouldn't be used in production in most cases.
rafram•4h ago
> Go is already a legacy language that probably shouldn't be used in production in most cases.

This is objectively not true. “Go feels legacy to me and I wouldn’t use it in production in most cases” is reasonable, if you feel that way, but “legacy language” has a definition, and Go isn’t a legacy language.

rstupek•3h ago
What reasons would you have for classifying Go as a legacy language and why would you not use it in production?
blizdiddy•1h ago
Eager to hear any reply as to how you arrived at this take on Go. It feels like bait, but i like your projects and I’m willing to give you the benefit of the doubt.
90s_dev•1h ago
From the beginning, the Go team always emphasized that it was basically just meant to replace Java and C++ for servers inside Google. One of the official Go doc pages starts off with a basically apologetic tone, saying something like "Go began back in 2007 when things were very different than they are now. C++ and Java were much worse, and that's basically what we were competing with." I can't find that page but being an official page, and having this kind of tone, already matches up with the tone the Go community always kind of had, of like, "it's not the perfect language and we acknowledge and own that fact, but at least it's better than the alternatives."

On top of this, in its excessive caution about adding features while balancing incidental and essential complexity, it just hasn't evolved and kept up to meet the kinds of demands modern languages do like Zig, Rust, C3, Carbon and Odin, and while these languages were innovating, Go was still catching up to 10-20 years ago at any given moment. It was already kind of a weird middle ground, not quite as high level as Ruby, not quite as low level as C++, and this slow catch up game plus lack of keeping up was, for me at least, just the nail in the coffin. But all of this together makes me personally think that it's just not a great fit for most scenarios, but also that it seemed to have started off on the wrong foot with itself and the wider programming community.

That's my take at least.

parenwielder•3h ago
It’s still early in its development, but the Luau team is building a first-party standalone runtime called Lute (https://github.com/luau-lang/lute) that’s in C++ because the language’s implementation is also in C++. That might be more your speed?
npalli•1h ago
Looks good. Better chance of success. Agree with the OP you are responding to, Rust might be great for those looking to write things from scratch, no baggage to deal with, not so great if you have to use it when written by someone else (even if that 'someone' is you from one year ago).
Heliodex•1h ago
I can assume that Lune (and many of the Rust-based Luau runtimes that followed it) were written in Rust mainly because of the existence of mlua <https://github.com/mlua-rs/mlua> and the bindings it provides for Luau. Binding Luau in Zig or C isn't as plug-and-play but is still relatively easy, binding Luau in Go is a nightmare. I'm working on better Luau support for Go, and some others support/binding libraries for other languages are also in development, which is awesome to see and will hopefully bring more language diversity to the Luau ecosystem.
Dekkonot•3h ago
Disclaimer: I've contributed to Lune multiple times and have contributed off and on to Luau as well.

For those who aren't familiar, Luau is a language based on Lua that is developed and maintained by Roblox. It's entirely open source (you can see the repo here: https://github.com/luau-lang/luau) and it's diverged a fair bit from Lua at this point. Most notably, it's quite a bit faster than the PUC-Rio distribution of Lua, has native vector support, and has a type checker. It's not as fast as LuaJIT, but it's about as fast as you can expect for a non-JITed language and it has support for AoT compiling to native instructions on x86 and aarch64, so it can be basically as fast as LuaJIT for some tasks.

It's worth reading the website: https://luau.org/

Lune itself is nice and I use it for basically all of the scripting needs I have. Some of the API is limited compared to what you'd get in other runtimes (the obvious example is hashing, where it's just "string in, string out" instead of a stream that you can feed into and then finalize) but the logic is essentially that APIs should be "good enough" for the average user, not perfect. I think that's fine, but I'm also the one that wrote the hashing API so take it with a grain of salt. :-)

merb•2h ago
Does it compile to wasm? So that it is useful inside the browser?
Dekkonot•2h ago
Luau itself does by design, but I've never tried compiling Lune to WASM. I know that there are some blockers with the Roblox library but that's an optional component and you can just leave it out.

The WASM build is actually what powers the demo on their website: https://luau.org/demo