frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Increased autonomic activation in vicarious embarrassment (2012) [pdf]

https://pubmed.ncbi.nlm.nih.gov/22864257/
1•thunderbong•4m ago•0 comments

Two Chinese Nationals Arrested for Allegedly Illegal Shipping AI Chips to China

https://www.justice.gov/opa/pr/two-chinese-nationals-arrested-complaint-alleging-they-illegally-s...
2•737min•5m ago•1 comments

'Universal' Cancer Vaccine Destroys Resistant Tumors in Mice

https://www.sciencealert.com/universal-cancer-vaccine-destroys-resistant-tumors-in-mice
1•amichail•9m ago•0 comments

BCHS Stack: BSD, C, httpd, SQLite

https://learnbchs.org
1•ryandotsmith•11m ago•0 comments

Ask HN: How to teach a 4 year old to code?

3•kamphey•12m ago•2 comments

F1 in Hungary: Strategy and fast tire changes make all the difference

https://arstechnica.com/cars/2025/08/f1-in-hungary-strategy-and-fast-tire-changes-make-all-the-di...
1•PaulHoule•15m ago•1 comments

Bad Craziness

https://www.math.columbia.edu/~woit/wordpress/?p=15191
2•jjgreen•16m ago•0 comments

The Rise of Computer Use and Agentic Coworkers

https://a16z.com/the-rise-of-computer-use-and-agentic-coworkers/
1•kjhughes•16m ago•0 comments

We Oops-Proofed Infrastructure Deletion on Railway

https://blog.railway.com/p/how-we-oops-proofed-infrastructure-deletion-on-railway
1•thisismahmoud_•18m ago•1 comments

From the 'Banter Bill' to Bias Hotlines: The Alarming Rise of Snitch Networks

https://thedailyeconomy.org/article/the-dangerous-rise-of-snitch-networks/
2•dmitrygr•20m ago•0 comments

The latest Covid vaccines come with restrictions

https://www.npr.org/sections/shots-health-news/2025/08/27/nx-s1-5515503/fda-covid-vaccines-restri...
2•metabagel•21m ago•2 comments

The big idea: Turn lobbying into a high-stakes financial market

https://nodumbideas.com/p/the-big-idea-decentralized-lobbying
1•hhs•21m ago•0 comments

Mainframe upgrade done with wire cutters (2015)

https://alt.folklore.computers.narkive.com/nZagiUHj/mainframe-upgrade-done-with-wire-cutters
1•WorldPeas•22m ago•0 comments

Python: The Documentary

https://lwn.net/Articles/1035537/
2•chmaynard•25m ago•1 comments

Show HN: DeepShot – an open-source NBA predictor with ML, EWMA, and live UI

https://github.com/saccofrancesco/deepshot
1•f_sacco•26m ago•0 comments

ExxonMobil Global Outlook: Our view to 2050

https://corporate.exxonmobil.com/sustainability-and-reports/global-outlook
1•mxschumacher•28m ago•1 comments

Show HN: oLLM – LLM Inference for large-context tasks on consumer GPUs

https://github.com/Mega4alik/ollm
2•anuarsh•32m ago•1 comments

Should We Anthropomorphize LLMs?

https://aethermug.com/posts/there-is-thinking-and-there-is-thinking-and-there-is-thinking
1•mrcgnc•41m ago•0 comments

Prompt Engineering for Grok Code Fast 1

https://docs.x.ai/docs/guides/grok-code-prompt-engineering
1•empressplay•41m ago•0 comments

All Revenue Is Not Created Equal (2011)

https://abovethecrowd.com/2011/05/24/all-revenue-is-not-created-equal-the-keys-to-the-10x-revenue...
1•lispybanana•41m ago•0 comments

Ask HN: How much better can the LLMs become assuming no AGI

1•yalogin•41m ago•0 comments

The A.I. Talent Wars

https://www.nytimes.com/2025/08/25/podcasts/the-daily/ai-salaries-tech-silicon-valley.html
1•doener•43m ago•0 comments

Garmin Blaze Equine Wellness System

https://www.garmin.com/en-US/p/1277934/
1•carabiner•45m ago•0 comments

RSS Is Awesome

https://evanverma.com/rss-is-awesome
27•edverma2•48m ago•2 comments

Why HyperCard Had to Die (2011)

https://www.loper-os.org/?p=568
5•mgrayson•50m ago•2 comments

Hygiene Hypothesis

https://en.wikipedia.org/wiki/Hygiene_hypothesis
2•Jimmc414•54m ago•0 comments

The ABC Programming Language

https://homepages.cwi.nl/~steven/abc/
2•TheFreim•55m ago•0 comments

The Electro-Industrial Stack Will Move the World

https://a16z.com/the-electro-industrial-stack-will-move-the-world/
2•lemonberry•59m ago•0 comments

US withdraws from UN human rights report

https://www.reuters.com/world/europe/us-withdraws-key-un-human-rights-report-draws-criticism-righ...
6•geox•1h ago•0 comments

I've always wanted to be an open-source maintainer- now I regret it

https://joaomagfreitas.link/for-years-ive-always-wanted-to-be-an-open-source-maintainer/
4•freitzzz•1h ago•0 comments
Open in hackernews

Speed-coding for the 6502 – a simple example

https://www.colino.net/wordpress/en/archives/2025/08/28/speed-coding-for-the-6502-a-simple-example/
13•mmphosis•2h ago

Comments

rbanffy•2h ago
What a delightful short read.

They could go one step further and calculate the table as needed and use it as a cache.

For an single image scaling it might get a little bit better.

spc476•21m ago
If you read the entire article, they do that at the end of the article.
anyfoo•6m ago
Not quite. They build the entire table upfront, whether any individual entry is needed or not.

Making it an on-demand cache instead is a neat next step. Whether it helps or hurts depends on the actual input: If the input image uses every pixel value anyway, the additional overhead of checking whether the table entry is computed is just unnecessary extra with no value.

But if a typical image only uses a few pixel values, then the amortized cost of just calculating the few needed table entries may very well be significantly below the cost of the current algorithm.

If images are somewhere in between, or their characteristics not well known, then simply trying out both approaches with typical input data is a good approach!

Unless you’re perfectly happy with 0.2 seconds, for example because the runtime of some other parts take so long that dwarfs those 0.2s, then why bother.

Joker_vD•4m ago
I wonder if building this table can be sped up by noticing a recurring pattern?

    x    0  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 ... 254 255
    f(x) 0  0  1  2  3  3  4  5  6  6  7  8  9  9 10 11 12 12 ... 190 191
So something like

    sta table,y
    iny
    sta table,y
    adc $0
    iny    
    sta table,y
    adc $0
    iny    
    sta table,y
    adc $0
    iny    
used as the loop body that should be repeated 64 times, should work. Will it take less than 6000 cycles total?
anyfoo•3m ago
Very neat. Breaking up multiplications and divisions into bit shifts, and lookup table to trade off memory for runtime, are indeed nothing new to engineers working on the low level, but this paints a very pretty picture of how this looks in practice.