frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Toward provably private insights into AI use

https://research.google/blog/toward-provably-private-insights-into-ai-use/
2•ignoramous•5m ago•0 comments

NetBSD GSOC 2025 Mentor Summit in Munich, Germany: Travel Notes

https://blog.netbsd.org/tnf/entry/gsoc2025_mentor_summit
2•jaypatelani•8m ago•0 comments

The infrastructure stack is getting faster. Terraform is not

https://stategraph.dev/blog/terraform-is-not-getting-faster
1•lawnchair•10m ago•0 comments

"It Works on My Machine" (The Startup's Anthem) [video]

https://www.youtube.com/watch?v=VoXXcA2lxL4
1•yosid•11m ago•0 comments

LitServe: Build custom AI inference engines

https://github.com/Lightning-AI/LitServe
1•wfalcon•11m ago•0 comments

Aerial additive manufacturing: drones to construct remote infrastructure

https://engineering.cmu.edu/news-events/news/2025/10/10-skybound-construction.html
1•giuliomagnifico•12m ago•0 comments

Show HN: Magiclip – AI that turns long videos into short clips

https://magiclip.io/
1•kokau•14m ago•0 comments

Attention lapses due to sleep deprivation due to flushing fluid from brain

https://news.mit.edu/2025/your-brain-without-sleep-1029
10•gmays•16m ago•0 comments

Human DNA detected in 2B year old meteorite

https://geekspin.co/human-dna-detected-2-billion-year-old-meteorite/
1•isaacfrond•17m ago•1 comments

AI labs use Mercor to get the data companies won't share

https://techcrunch.com/2025/10/29/how-ai-labs-use-mercor-to-get-the-data-companies-wont-share/
4•gmays•23m ago•0 comments

Bash-ircd: An IRCd in pure Bash

https://github.com/dgl/bash-ircd
2•thunderbong•26m ago•0 comments

OpenAI Uses Complex and Circular Deals to Fuel Its Multibillion-Dollar Rise

https://www.nytimes.com/interactive/2025/10/31/technology/openai-fundraising-deals.html
4•reaperducer•26m ago•1 comments

My Worst Mistake in Product-Market Fit

https://www.instagram.com/p/DQeXYdLEgz6/
1•nookeshkarri7•30m ago•0 comments

Deadly storm shatters NYC rainfall records

https://www.cbsnews.com/newyork/news/nyc-flooding-record-rainfall-totals/
3•geox•31m ago•0 comments

Savers in Sweden conned out of millions in AI-powered scams

https://www.sverigesradio.se/artikel/thousands-of-small-savers-in-sweden-conned-out-of-millions-i...
3•Frieren•32m ago•0 comments

The Economics of Culture

https://www.wsj.com/opinion/the-economics-of-culture-29c337f2
1•RickJWagner•32m ago•0 comments

The World Without Hegemony

https://aeon.co/essays/what-southeast-asian-history-tells-us-about-a-multipolar-order
2•elashri•33m ago•0 comments

Everyone has a Chinese peptide dealer now

https://sfstandard.com/2025/09/14/everyone-has-chinese-peptide-dealer-now/
2•Sebastian_09•33m ago•0 comments

Hiding in plain sight: Star Wars Episode IV is an elaborate color/form puzzle

https://web.archive.org/web/20160708165920/mstrmnd.com/log/1241
1•Marshferm•33m ago•1 comments

I declared for Governor of Oklahoma. I was described as a vandal, then banned

https://en.wikipedia.org/w/index.php?title=2026_Oklahoma_gubernatorial_election&diff=next&oldid=1...
2•totalZero•37m ago•1 comments

Show HN: Text Generator is a powerful online font generator

https://text-generator.app/
2•epistemovault•39m ago•0 comments

Rust Hobby OS projects worth exploring

https://oshub.org/users/OSHub/posts/rust-hobby-os-projects-worth-exploring
2•joexbayer•40m ago•0 comments

Show HN: Product analytics with zero instrumentation (using vision models)

https://www.trysignal.ai/
3•aditya1081•40m ago•0 comments

The Shining's soundtrack – OOP and only available on archive.org

https://archive.org/details/various-the-shining-the-unofficial-soundtrack
2•Marshferm•41m ago•0 comments

Show HN: I Built a Real-Time Transit Map for Sofia Using Open GTFS Data

https://www.pavlinbg.com/posts/sofia-map
1•Pavlinbg•42m ago•0 comments

Claude.ai outage for Claude Code, OAuth, API keys

2•jph•46m ago•0 comments

Why I'm Suing YouTube. [video]

https://www.youtube.com/watch?v=4IaOeVgZ-wc
1•ekjhgkejhgk•49m ago•0 comments

Copper rush pushes Vale to ramp up mining near Amazonian protected areas

https://news.mongabay.com/2025/10/copper-rush-pushes-vale-to-ramp-up-mining-near-amazonian-protec...
1•PaulHoule•50m ago•0 comments

Google vs. Microsoft: the battle of AI business models

https://economist.com/business/2025/10/30/google-v-microsoft-the-battle-of-ai-business-modelsfrom...
1•andsoitis•53m ago•0 comments

How An Amazon Seller Files Taxes – Get Ready for the 2026 Tax Season

https://fromzerotollc.com/amazon-seller-tax-schedulec
1•erayalakese•54m ago•1 comments
Open in hackernews

Show HN: Ü Programming Language

https://github.com/Panzerschrek/U-00DC-Sprache
3•Panzerschrek•6h ago
Hello, HN!

Today I want to show my project: a programming language named Ü.

For many years I has been using C++ for coding - both at my job and for hobby projects. C++ is mostly fine for me, since it delivers great performance and powerful abstractions. But C++ had and has many footguns, which make using it sometimes painful. So I thought a better programming language could exist, which can have many advantages of C++ without its downsides. Especially I wanted safety by-default, so that shooting the leg is hard, but without unnecessary overengineering. After a brief search I found no other language fully satisfying my requirements and thus I decided to create one myself.

Developing a new programming language wasn't fast and easy, but after many years of development I have managed to do this and created a language, which satisfies my requirements. I think it's now ready for a wide audience.

Ü is a general-purpose programming language designed to be safe and fast and it achieves these goals. Surprisingly achieving both doesn't require insanely complex language design and compiler implementation. Static typing in combination with clever compile-time analysis and safe/unsafe code separation allow achieving safety. Compilation into machine code (with help of LLVM) provides enough speed. Also Ü just doesn't do much in runtime which could slow-down its performance - most of the safety checks are done in compile-time and destructor-based memory and resources management requires no runtime penalty typical for languages with garbage collection.

Ü isn't just a better C with a couple of bells and whistles. It's pretty feature-reach, much like C++ is. These features include classes, inheritance, type and function templates, lambdas, coroutines, compile-time reflection and possibilities of compile-time code generation.

Ü uses curly braces-style syntax, but it doesn't try to copy all syntax elements of some particular language. There are keywords and syntax elements borrowed from C++, Rust or whatever else. Despite this most syntax rules should be pretty familiar for users of mainstream programming languages.

I have developed and continue developing two compilers for Ü - one written in C++ and another one written in Ü itself (specifically frontends, both use LLVM backend written in C++). Besides that Ü has many other components like its own standard library, a build system, a language server, a tool for C headers conversion, etc.

I believe that the language is ready to be used for writing some real code. Having a self-hosted compiler and many other components written in it should prove this claim to be true. Ü maybe isn't ready for very reliable industrial code doing serious stuff (like OS kernels or banking software), but it should be fine to use it for things like hobby projects.

See examples (https://github.com/Panzerschrek/U-00DC-Sprache/tree/master/s...) to get a general idea what Ü is and how it looks like and feels. Read the documentation (https://panzerschrek.github.io/U-00DC-Sprache-site/docs/en/c...) for more details. If you have some questions about the specific mechanism providing safety, read the corresponding chapter (https://panzerschrek.github.io/U-00DC-Sprache-site/docs/en/r...). If some topic isn't clear for you after reading the documentation, contact me and I can answer your questions.

You may ask, why have I named my language Ü? The answer is simple: I wanted a single-letter name, but all regular Latin letters were already used (https://beza1e1.tuxen.de/one_letter_proglangs.html). So I chose a letter, which belongs to extended Latin alphabet and is pretty common in many natural languages (like German).

Comments

alabhyajindal•6h ago
Very nice! Some feedback about the home page and presentation:

- A snippet on the home page to give the reader a quick feel of the language.

- A line or two on how to pronounce Ü.

- Using a list or sections to highlight important features prominently and make the home page more information dense.

- Date of publication on the blog posts.

Panzerschrek•3h ago
Thanks for suggestions!

> A snippet on the home page

What kind of code snippets could you suggest? Posting something trivial like a hello world program isn't particularly useful, I think.

> how to pronounce

There is for now no correct way to pronounce Ü. Maybe because it's not named in spoken language but only in written form. But assuming how this letter is used in natural languages, you can use a pronunciation from these languages.

> highlight important features

I have a comparison table mentioning features which I find necessary and useful. Maybe it isn't detailed enough?

alabhyajindal•2h ago
> What kind of code snippets could you suggest?

Anything really! Some websites that do this currently: https://ziglang.org, https://crystal-lang.org and https://www.ruby-lang.org/en

> I have a comparison table mentioning features

Yes - I did see this in the README. Maybe worth adding it, or something similar to the website.