标签:#hackernews
找到 8789 篇相关文章
Claude Code Is Steganographically Marking Requests
No Systemd
The labor share of income in the US is at its lowest post-war level
Supreme Court strikes down limits on party spending in federal elections
We moved our Bluesky data to Eurosky
Supreme Court rejects Trump bid to restrict birthright citizenship
Scientists reverse autism-like symptoms in mice
Show HN: OM Core – multidimensional models without spreadsheet cell formulas
Show HN: Curvytron 2, I rewrote my browser party game, 10 years later
Hi everyone, french web dev here, About 10 years ago I did a little party game in the browser inspired by Achtung die Kurve genre, it reached HN ( https://news.ycombinator.com/item?id=9494619 ) and everything went crazy, it's still largely played in open-spaces all over the world today. This past year, I've been working on a sequel: https://curvytron2.com is live. Same goal as the first one: challenge myself, perfect my skills, have fun and give back to the internet community the best way I know
Supreme Court upholds broad conception of birthright citizenship
Changes to Our Contribution Policies
Words Are a Byproduct of Consciousness. For LLMs, It's Backwards
Have You Restarted Your Computer This Week?
Looking Ahead to Postgres 19
Show HN: ServerKit – A mobile UI for server management
Problem Statement: A few months ago, I was outside of my city. I was on a bus when one of my team members messaged me saying users were unable to read the product description PDF. I had to wait 3 more hours until I got back home, opened the laptop, and SSH'd into the server to find out what was wrong. In that moment I realized that being able to manage a server from a phone is very important when a laptop is not nearby. What it does: It is a UI wrapper over standard SSH command outputs. It parse
Show HN: C++, Java and C# light-weight-logger
This is a library I've been working on with versions for C++, java & C# where you make custom formats and Log based on them, for example you could make an ERROR Like this: [ERROR] [date, time-stamp, time-zone] <main log message> (file:thread-ID:line) but you would write it like this: // define the master format master_style = "%C[%N]%c%S%G[%D %T %Z]%c %M %G(%F:%t:%L)"; // tell the logger what colour to use for a given name logger.add_format("ERROR", master_style, Colour::RED); so now the [ERROR]