frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Emails sent to spam folder lead to licence suspension for 20 teachers says union

https://www.cbc.ca/news/canada/british-columbia/surrey-teachers-suspension-emails-spam-9.7107633
1•barbazoo•52s ago•0 comments

The future is unimaginably long

https://thinkingpensando.substack.com/p/the-future-is-unimaginably-long
1•badphilosopher•1m ago•0 comments

Show HN: Find like-minded developers from your GitHub activity

https://mates.symploke.dev/
1•thomasfromcdnjs•1m ago•0 comments

Google Antigravity Unbans Accounts and Clarifies Third-Party Tool Rules

https://twitter.com/antigravity/status/2027435365275967591
1•meetpateltech•1m ago•0 comments

(mostly) successful cases of software rewrites with agents in 2026

https://suriya.cc/essays/agents/
1•suriya-ganesh•1m ago•0 comments

Tax Planning for Irregular Freelance Income

https://longviewy.com/quarterly-tax-planner-worksheet-for-irregular-freelance-income/
1•josephcs•2m ago•0 comments

Ask HN: How to best use time before starting a SWE job?

1•taniquetil•2m ago•0 comments

Show HN: Brainrot messed up my kid's attention span, so I built a tool to fix it

https://www.agentkite.com/
1•aadivar•3m ago•0 comments

DualPath: Breaking the Storage Bandwidth Bottleneck in Agentic LLM Inference

https://arxiv.org/abs/2602.21548
1•gmays•3m ago•0 comments

Perplexity's new tool deploys teams of AI agents

https://www.pcworld.com/article/3071595/perplexitys-new-tool-deploys-teams-of-ai-agents.html
2•gnabgib•4m ago•0 comments

Memory Without Attention: Short‑Context Language from an Algebraic Operator

https://www.blogosvet.cz/@/quantumangle/clanek/memory-without-attention.RFvlu
2•amthorn•4m ago•0 comments

Sudo-rs echos * for every character typed breaking security measures

https://bugs.launchpad.net/ubuntu/+source/rust-sudo-rs/+bug/2142721
2•josephcsible•5m ago•0 comments

Academic journal AI policies aren't going to last

https://muddy.jprs.me/notes/2026-02-26-these-academic-journal-ai-policies-aren-t-going-to-last/
2•jprs•6m ago•0 comments

Show HN: A CLI tool for agentic code review and auto-fixing

https://github.com/kenryu42/ralph-review
2•kenryu•7m ago•0 comments

Rm -RF Salesforce; I replaced our CRM with a Git repo and an AI Agent

https://twitter.com/doppenhe/status/2027430646382317857
2•doppenhe•7m ago•0 comments

Open Source IRS: Tax Witholding Estimator

https://github.com/IRS-Public/tax-withholding-estimator
4•recursivedoubts•7m ago•1 comments

Meta tried to block lawyers from asking Zuckerberg about $231B fortune at trial

https://nypost.com/2026/02/26/business/meta-tried-to-block-lawyers-from-asking-mark-zuckerberg-ab...
4•1vuio0pswjnm7•7m ago•0 comments

The Unreasonable Effectiveness of External Feedback Loops

https://bernste.in/writings/the-unreasonable-effectiveness-of-external-feedback-loops/
2•mbernstein•8m ago•0 comments

Show HN: Vibe Code your 3D Models

https://github.com/ierror/synaps-cad
2•burrnii•10m ago•0 comments

Burger King testing AI headsets to track if employees say 'please', 'thank you'

https://thehill.com/policy/technology/5757413-burger-king-artificial-intelligence-headsets/
5•type0•10m ago•1 comments

Qwen3.5-35B-A3B

https://huggingface.co/Qwen/Qwen3.5-35B-A3B
3•throwaway2027•10m ago•0 comments

Uniquely Modern Weapons

https://greysands.org/weapons
3•globalstatic•11m ago•0 comments

Show HN: DAAF – Reproducible AI-assisted data analysis for researchers

https://github.com/DAAF-Contribution-Community/daaf
2•brhkim•13m ago•1 comments

Is the World Cup bump real? MLS is going to find out

https://www.theguardian.com/football/2026/feb/19/world-cup-bump-mls
2•PaulHoule•13m ago•0 comments

Tech people keep falling for the same scam

https://explodingcomma.com/posts/tech-people-keep-falling-for-the-same-scam
5•speckx•14m ago•0 comments

Saaspocalypse Survival Scanner

https://deathbyclawd.com/
3•iacguy•14m ago•1 comments

Java's Cover (2001)

https://www.paulgraham.com/javacover.html
2•Spide_r•14m ago•0 comments

Daniel Joseph Simmons Passed Away

https://www.dignitymemorial.com/obituaries/longmont-co/daniel-simmons-12758871
3•markus_zhang•15m ago•0 comments

747s and Coding Agents

https://carlkolon.com/2026/02/27/engineering-747-coding-agents/
2•cckolon•15m ago•0 comments

Show HN: Patterns for coordinating AI agents on real software projects

https://github.com/timothyjrainwater-lab/multi-agent-coordination-framework
2•Thunderstomp•16m ago•0 comments
Open in hackernews

Ask HN: Is reasoning just some iterative context refinement?

2•sschmitt•9mo ago
context = "you are a useful model. you evaluate your own output for N steps after the initial user input"

prompt = "here comes a prompt by the user"

context += prompt

for _ in range(N): context += evaluate_llm(context)

Comments

Reubend•9mo ago
Are you asking in terms of how the current crop of "reasoning models" are implemented, or are you asking more philosophically about the nature of true reasoning?

Calling it "refinement" is dismissive. It's generating new information, which is in many cases well beyond the scope of the original prompt.

Reasoning models today are just a marketing spin on chain-of-thought techniques that benefit from reinforcement learning.