frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

First Autonomous Delivery of a Tesla

https://twitter.com/elonmusk/status/1938681051939008549
1•spikels•1m ago•0 comments

LiteLLM for Native Audio Models

https://github.com/haizelabs/spoken
1•nimitkalra•3m ago•0 comments

Show HN: Thockfactory – An Online Configurator for Custom Keycaps Enthusiasts

https://thockfactory.com/us
1•ehov•4m ago•0 comments

Munich Open Source

https://opensource.muenchen.de/
1•smartmic•8m ago•0 comments

Seamless Interaction

https://ai.meta.com/research/seamless-interaction/?_fb_noscript=1
2•jkw•8m ago•0 comments

A highly efficient CRISPR-Cas9-based gene-editing system in oats

https://onlinelibrary.wiley.com/doi/10.1111/pbi.70146
1•PaulHoule•8m ago•0 comments

PEP 795 – Deep Immutability in Python

https://pep-previews--4468.org.readthedocs.build/pep-0795/
1•ayhanfuat•9m ago•0 comments

Watch the World Getting Older

https://www.react-graph-gallery.com/example/population-pyramid
2•gmays•10m ago•0 comments

Industrial Archeology Image Archive

https://www.indarch.mtu.edu/
1•bookofjoe•12m ago•0 comments

Show HN: Shouldiuse.dev – software dependency health checker

https://shouldiuse.dev/
2•louis_w_gk•12m ago•0 comments

AAA eligibility errors in plain English

https://www.stedi.com/blog/aaa-eligibility-errors-in-plain-english
1•mooreds•12m ago•0 comments

Trump Says U.S. Ending Trade Talks with Canada

https://www.nytimes.com/2025/06/27/business/trump-ends-canada-trade-talks.html
3•ChrisArchitect•15m ago•1 comments

Fed chair Powell says AI will make significant changes to economy, labor market

https://www.theregister.com/2025/06/27/powell_ai_coming_for_your_job/
1•rntn•18m ago•0 comments

Ex-Doge employee 'Big Balls' gets new Trump administration position

https://www.theguardian.com/technology/2025/jun/27/doge-big-balls-trump-administration
1•mitchbob•20m ago•0 comments

Claude Code Commands Directory

https://claudecodecommands.directory/
2•ananddtyagi•21m ago•1 comments

Explainable Git diff for your ML models [OSS]

https://github.com/adrida/tarmac
1•adam_rida•22m ago•0 comments

7 People Now Have Elon Musk's Neuralink Brain Implant

https://www.pcmag.com/news/7-people-now-have-elon-musks-neuralink-brain-implant
1•edreib•25m ago•0 comments

Ask HN: Is this the future of operating systems?

1•amichail•26m ago•3 comments

Canada's Digital Services Tax Stays in Place Despite G-7 Deal

https://www.bloomberg.com/news/articles/2025-06-27/canada-s-digital-services-tax-stays-in-place-despite-g-7-deal
4•baby-yoda•32m ago•1 comments

Facebook will suggest AI-edited versions of the photos in your camera roll

https://techcrunch.com/2025/06/27/facebook-is-asking-to-use-meta-ai-on-photos-in-your-camera-roll-you-havent-yet-shared/
3•bundie•34m ago•2 comments

What Makes Europe Better Than America?

https://www.thefp.com/p/what-makes-europe-better-than-america
3•danielam•35m ago•0 comments

No Time to Learn React (2024)

https://www.keithcirkel.co.uk/i-dont-have-time-to-learn-react/
2•ingve•37m ago•2 comments

SVG Optimization and Accessibility Basics

https://dbushell.com/2025/06/25/svg-optimization-and-accessibility-basics/
1•tatersolid•38m ago•0 comments

Show HN: Split Vim Markdown Preview – Terminal-Based Markdown Preview for Vim

https://github.com/drewipson/glowing-vim-markdown-preview
1•drewipson•42m ago•0 comments

Run Coverage on Tests

https://hugovk.dev/blog/2025/run-coverage-on-tests/
2•todsacerdoti•44m ago•0 comments

Where Did CP852 Come From Again?

https://www.os2museum.com/wp/where-did-cp852-come-from-again/
1•ingve•44m ago•0 comments

Rails 8 Improvements

https://rubyonrails.org/2025/6/6/this-week-in-rails
2•andrewstetsenko•48m ago•0 comments

FigureMark: Simple syntax for marking up figures in Markdown documents

https://mattgemmell.scot/figuremark/
1•ingve•48m ago•0 comments

HP Wolf Security Threat Insights June 2025

https://threatresearch.ext.hp.com/hp-wolf-security-threat-insights-report-june-2025/
1•dexter_it•49m ago•0 comments

Show HN: GPU market is absurd! So I built a dashboard of pricing/restock trends

https://gpuisfine.singhkays.com
2•singhkays•52m ago•0 comments
Open in hackernews

Most ints are not floats

https://www.johndcook.com/blog/2025/06/27/most-ints-are-not-floats/
3•zdw•3h ago

Comments

taeric•3h ago
It is a shame we tend to teach floats as the computer version of reals. Thinking of them as "scientific numbers" really helps a ton with this.
PaulHoule•3h ago
... but people are in the habit of using doubles. Many languages, like Javascript, only support doubles and int32(s) do embed in doubles.

I have some notes for a fantasy computer which is maybe what would have happened if Chinese people [1] evolved something like the PDP-10 [2] Initially I was wanting a 24-bit wordsize [3] but decided on 48-bit [4] because you can fit 48 bits into a double for a Javascript implementation.

[1] There are instructions to scan UTF-8 characters and the display system supports double-wide bitmap characters that are split into halves that are indexed with 24-bit ints.

[2] It's a load-store architecture but there are instructions to fetch and write 0<n<48 bits out of a word even overlapping two words, which makes [1] possible; maybe that write part is a little unphysical

[3] I can't get over how a possible 24-bit generation didn't quite materialize in the 1980s, and find the eZ80 evokes a kind of nostalgia for an alternate history

[4] In the backstory, it started with a 24-bit address space like the 360 but got extended to have "wide pointers" qualified by an address space identifier (instead of the paging-oriented architecture the industry) really took as well as "deep pointers" which specify a bitmap, 48-bit is enough for a pointer to be deep and wide and have some tag bits. Address spaces can merge together contiguously or not depending on what you put in the address space table.