frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

AI Is Making Us Work More

https://tawandamunongo.dev/posts/2025/10/ai-work-more
48•elcapithanos•48m ago•31 comments

Neural audio codecs: how to get audio into LLMs

https://kyutai.org/next/codec-explainer
168•karimf•3h ago•57 comments

LLMs Can Get "Brain Rot"

https://llm-brain-rot.github.io/
48•tamnd•1h ago•13 comments

StarGrid: A Brand-New Palm OS Strategy Game in 2025

https://quarters.captaintouch.com/blog/posts/2025-10-21-stargrid-has-arrived,-a-brand-new-palm-os...
130•capitain•4h ago•17 comments

Ilo – a Forth system running on UEFI

https://asciinema.org/a/Lbxa2w9R5IbaJqW3INqVrbX8E
61•rickcarlino•3h ago•18 comments

Our modular, high-performance Merkle Tree library for Rust

https://github.com/bilinearlabs/rs-merkle-tree
56•bibiver•3h ago•9 comments

South Africa's one million invisible children without birth certificates

https://www.france24.com/en/africa/20250705-south-africa-s-one-million-invisible-children-without...
83•mooreds•1w ago•57 comments

UA 1093

https://windbornesystems.com/blog/ua-1093
120•c420•1h ago•40 comments

Sell tickets to concerts agentically – Hive (YC S14) is hiring

1•patman_h•1h ago

Diamond Thermal Conductivity: A New Era in Chip Cooling

https://spectrum.ieee.org/diamond-thermal-conductivity
70•rbanffy•4h ago•21 comments

RF Shielding History: When the FCC Cracked Down on Computers

https://tedium.co/2025/10/20/computers-fcc-rf-interference-history/
14•shortformblog•1h ago•4 comments

Language Support for Marginalia Search

https://www.marginalia.nu/log/a_126_multilingual/
145•Bogdanp•9h ago•11 comments

AWS multiple services outage in us-east-1

https://health.aws.amazon.com/health/status?ts=20251020
2144•kondro•1d ago•1956 comments

Show HN: Clink – Bring your own CLI Agents, Ship instantly

https://clink.new
8•aaronSong•35m ago•6 comments

Quantum dynamics on your laptop? New technique moves us closer

https://www.buffalo.edu/news/releases/2025/10/quantum-dynamics-on-your-laptop.html
44•ceolin•1w ago•13 comments

Pasta/80 is a simple Pascal cross compiler targeting the Z80 microprocessor

https://github.com/pleumann/pasta80
88•mariuz•8h ago•14 comments

Show HN: I'm making a detective game built on Wikipedia

https://detective.wiki/
255•jasonsmiles•4d ago•41 comments

Solving the Wrong Problem

https://www.ufried.com/blog/ai_assisted_coding/
16•erlend_sh•1w ago•7 comments

KDE Connect: Enabling communication between all your devices

https://community.kde.org/KDEConnect
280•snthd•1w ago•113 comments

Weekend projects: Chicken Squisher 3000

https://lcamtuf.substack.com/p/weekend-projects-chicken-squisher
19•robinhouston•1w ago•2 comments

Practical Scheme

https://practical-scheme.net/index.html#docs
118•ufko_org•10h ago•41 comments

A laser pointer at 2B FPS [video]

https://www.youtube.com/watch?v=o4TdHrMi6do
563•thunderbong•2d ago•95 comments

Show HN: ASCII Automata

https://hlnet.neocities.org/ascii-automata/
51•california-og•3d ago•8 comments

Alibaba Cloud says it cut Nvidia AI GPU use by 82% with new pooling system

https://www.tomshardware.com/tech-industry/semiconductors/alibaba-says-new-pooling-system-cut-nvi...
499•hd4•1d ago•286 comments

Calendar Puzzle "Rhombus"

https://praxispuzzles.com/calendar_puzzle_rhombus
47•xyzzy_plugh•1w ago•17 comments

Bare Metal (The Emacs Essay)

https://waxbanks.wordpress.com/2025/08/01/bare-metal-the-emacs-essay/
125•hpaone•6d ago•46 comments

Production RAG: what I learned from processing 5M+ documents

https://blog.abdellatif.io/production-rag-processing-5m-documents
504•tifa2up•1d ago•107 comments

My trick for getting consistent classification from LLMs

https://verdik.substack.com/p/how-to-get-consistent-classification
287•frenchmajesty•1w ago•65 comments

BERT is just a single text diffusion step

https://nathan.rs/posts/roberta-diffusion/
434•nathan-barry•1d ago•102 comments

I made a small LED panel

https://www.stavros.io/posts/really-small-led-panel/
132•Brajeshwar•1w ago•60 comments
Open in hackernews

The Fastest Way yet to Color Graphs

https://www.quantamagazine.org/the-fastest-way-yet-to-color-graphs-20250512/
62•GavCo•5mo ago

Comments

tonyarkles•5mo ago
In case you haven't looked at the article, this is looking specifically at the Edge Coloring problem and not the more commonly known Vertex Coloring problem. Vertex Coloring is NP-complete unfortunately.
erikvanoosten•5mo ago
You can convert edge coloring problems into vertex coloring problems and vice versa through a simple O(n) procedure.
meindnoch•5mo ago
Wrong. You can convert edge-coloring problems into vertex-coloring problems of the so-called line graph: https://en.m.wikipedia.org/wiki/Line_graph

But the opposite is not true, because not every graph is a line graph of some other graph.

erikvanoosten•5mo ago
Indeed. Thanks, I stand corrected.
tonyarkles•5mo ago
Hrm... right. It's been a while. And it looks like both Vertex Coloring and Edge Coloring are both NP-complete (because of the O(n) procedure you're talking about and the ability to reduce both problems down to 3-SAT). I've started looking closer at the actual paper to try to figure out what's going on here. Thanks for the reminder, I miss getting to regularly work on this stuff.

Edit: thanks sibling reply for pointing out that it's not a bidirectional transform.

mauricioc•5mo ago
For the edge-coloring problem, the optimal number of colors needed to properly color the edges of G is always either Delta(G) (the maximum degree of G) or Delta(G) + 1, but deciding which one is the true optimum is an NP-complete problem.

Nevertheless, you can always properly edge-color a graph with Delta(G) + 1 colors. Finding such a coloring could in principle be slow, though: the original proof that Delta(G) + 1 colors is always doable amounted to a O(e(G) * v(G)) algorithm, where e(G) and v(G) denote the number of edges and vertices of G, respectively. This is polynomial, but nowhere near linear. What the paper in question shows is how, given any graph G, to find an edge coloring using Delta(G) + 1 colors in O(e(G) * log(Delta(G))) time, which is linear time if the maximum degree is a constant.

Syzygies•5mo ago
Yes. The article ran through this point as follows:

"In 1964, a mathematician named Vadim Vizing proved a shocking result: No matter how large a graph is, it’s easy to figure out how many colors you’ll need to color it. Simply look for the maximum number of lines (or edges) connected to a single point (or vertex), and add 1."

I keep wondering why I ever read Quanta Magazine. It takes a pretty generous reading of "need" to make this a correct statement.

JohnKemeny•5mo ago
Not really. Coloring a graph is almost always talking about proper coloring, meaning that things that objects that are related receive different colors.

If you read the introduction, you'll also read that the goal is to "color each of your lines and require that for every point, no two lines connected to it have the same color."

Ps. "How many colors a graph needs" is a very well established term in computer science and graph theory.

mockerell•5mo ago
I think the comment referred to the phrase „a graph needs X (colors or whatever)“. For me, this can be read two ways: 1. „a graph always needs at least X colors“ or 2. „a graph always needs at most X colors“.

Personally, I would interpret this as option 1 (and so did the comment above I assume). In that case, the statement is wrong. But I’d prefer to specify „at most/ at least“ anyways.

Or even better, use actual vocabulary. „For every graph there exists a coloring with X colors.“ or „any graph can be coloured using X colors“.

PS: I also agree with the sentiment about quanta magazine. It’s hard to get some actual information from their articles if you know the topic.

JohnKemeny•5mo ago
What about this statement:

No matter how large a car is, it is easy to figure out how much money you'll need to buy it. Simply look at the price tag.

(From: No matter how large a graph is, it’s easy to figure out how many colors you’ll need to color it. Simply look for the maximum ...)

mauricioc•5mo ago
Parent's point is that sometimes (but not always) the store is perfectly fine selling you a car for $1 less than what the "price tag" of Delta(G)+1 dollars asks for, so "need" is a bit inaccurate.
phkahler•5mo ago
Is this going to lead to faster compile times? Faster register allocation...
john-h-k•5mo ago
Very few compilers actually use vertex coloring for register allocation
isaacimagine•5mo ago
Totally. The hard part isn't coloring (you can use simple heuristics to get a decent register assignment), rather, it's figuring out which registers to spill (don't spill registers in hot loops! and a million other things!).
NooneAtAll3•5mo ago
and this post isn't even about vertex coloring
DannyBee•5mo ago
No.

In SSA, the graphs are chordal, so were already easily colorable (relatively).

Outside of SSA, this is not true, but the coloring is still not the hard part, it's the easy part.