· 05:30 PM PDT

Local AI Surges, Dev Tools Evolve, And Robotics Advance

Overview

The local LLM community is fixated on Qwen3.8-27B, generating intense discussion over its unprecedented autonomous agency, aggressive quantization trade-offs, and architectural tweaks. Meanwhile, software engineering workflows are rapidly adapting, highlighted by novel coding editors, token cleanup utilities, and debates over AI’s impact on junior developers and text obfuscation. On the physical and scientific front, the Worldwide Humanoid Robot Games demonstrated both promising real-time manipulation and persistent reliability challenges, while AI pipelines delivered breakthroughs in personalized cancer vaccines and mathematical research. Underlying these technical shifts, broader conversations continue to examine AI’s cultural footprint in education, internet content quality, and the accelerating commercial race between major model providers.


Hacker News Stories

Don't Paste the AI, please

986 points · 538 comments · by pjerem

The article argues against blindly copying and pasting AI-generated responses when answering someone's question, emphasizing that the recipient wants the responder's personal context, taste, and judgment rather than a generic output. It suggests treating AI as a drafting tool that should be read, edited, and supplemented with original thought before sharing. The piece concludes that brevity and personal accountability in communication are more valuable than long, unedited model outputs, even if it means admitting a lack of strong opinion.

Interesting Points
  • The author notes that a person on the other end likely has the same AI tools available, meaning a generic answer could be generated in about four seconds.
  • Instead of forwarding full AI responses, the author recommends extracting only the relevant portion and limiting the reply to roughly three sentences.
  • The article advises quoting AI content only when explicitly explaining why it aligns with or supports a personal viewpoint.
  • It acknowledges that it is perfectly acceptable to reply with 'No strong opinion here' rather than forcing an AI-generated stance.
  • The piece is explicitly labeled as satire and positions itself as a 'spiritual cousin' to community guidelines like nohello.net and dontasktoask.com.
Top Comments

Heh. Just got done writing (by hand!) a Principles of AI Use document for my (ironically) AI enablement firm, the first of which is:

Write as yourself. You’re being paid for your expertise and insights. Communicate them directly to us. Copying and pasting Claude responses into Slack or an email directly shifts the burden of comprehension and understanding to everyone else, and worse, risks skipping that step for yourself. Even if you’re fundamentally using Claude to gather your thoughts or help you prepare a response, you need to be writing it yourself, in your own voice. Not having Claude ape your voice, or “make it sound less like AI”. You, directly. Doing this will further reinforce your own understanding of the state of things, the same way teaching someone is the best way to learn. As a guideline: for Slack and email comms, this should be near-universally written as you. For deliverables that are longer form and follow a template like proposals, roadmap/discovery work, etc., use of agents is expected but, see Principle #2. (Own the Output.)

disillusioned (22 replies)

Nice. This is exactly how I mostly use AI. Doesn’t matter if it’s code or an e-mail. I have the AI do the tedious work of ... well, uh, "working", and then ideally learn from it and then transform it into my own work, as I would have done it without AI, but just being much faster now. It also establishes a natural threshold of time/work ratio for me that keeps me from using AI for every little thing. Also it feels like I am learning something new with every prompt/response.

numlock86 (0 replies)

It's sad that there is a chance people put your guide into AI and ask it to "summarize"

thewhitetulip (3 replies)


Show HN: Huzzah – a novel approach to coding with AI

200 points · 111 comments · by danielvaughn

Show HN: Huzzah – a novel approach to coding with AI

The author introduces Huzzah, an experimental coding editor designed to overcome the fatigue and inefficiency of current AI coding agents that rely on longform, imperative prompts. Instead of conversational chats, Huzzah uses a persistent, declarative pseudocode file to capture human intent, which the tool automatically converts into functional code. When developers update the pseudocode, the system captures the diff and uses it to instruct the LLM, regenerating only the affected source code.

Interesting Points
  • Prompts in Huzzah are structured as pseudocode that captures the declarative shape of the desired code rather than imperative step-by-step instructions.
  • The editor automatically generates real code from .hz pseudocode files and uses file diffs as prompts to the LLM when edits are made.
  • The author identifies three specific flaws in current agents: discarded prompts erase human intent, repetitive chat messages waste tokens, and natural language is often information-scarce.
  • The pseudocode format is designed to function as human-written developer documentation and could potentially be translated into multiple programming languages.
  • The editor persists source maps, so at any point in time, you can map any generated line back to the line of pseudocode that generated it.
Top Comments

I think you’re probably missing why it’s exhausting. The problem is not writing English, it’s the rate of change. Programming is meditative, it is a thinking process, the code you output is an artifact of your thinking. Agent-based development… there is no thinking, no meditation, you’re delegating the thinking to a machine, you’re just barking what you want at it, incessantly, endlessly.

For businesses it makes sense to abandon programming in favor of delegating to agents that can do more in less time, but for programmers, it is a loss. Either be a programmer and code, or be a delegator and delegate, you aren’t going to make the life of a delegator suck any less by trying to trick yourself into thinking you’re programming.

reticulates (5 replies)

Agree with programming is meditative but disagree that agent-based development means there is no thinking. Agent-based development means more thinking like a lower level manager. You spend more time making architecture decisions, making decisions on the user interface, trying to manage your time and your agents time to increase the amount of work produced in the same time, asking the agent about the code and making new decisions. For many people who went in programming thats not their strong suite and hence is really exhausting. Instead of living in the code you are managing the code and using a part of the brain you are not good at.

pizzly (2 replies)

You seem to be conflating two things: how to prompt, and how to share sessions. You can already use pseudo-code today if you want to. As for sharing, you can commit (a link to) it, use git notes (as I do), or a service like entire.io.

I think you should work on your differentiation. The session management stuff is the greater concern, in my opinion; pseudo code is not a novelty.

esafak (1 reply)


Clean up Claude 5's token vomit with a separate LLM

173 points · 192 comments · by Bluestein

Vomit is a locally-run Go tool that routes Claude's raw token output through a separate local LLM to translate it into readable English. The project aims to save users from parsing Claude's internal reasoning streams by acting as an intermediary that cleans up the output. While it operates completely offline with no telemetry or external dependencies, the creator notes that the translation process can be slow and occasionally hallucinates due to the local model's limited visibility into Claude's actual actions.

Interesting Points
  • Intercepts Claude's output via system hooks to replace raw tokens with human-readable text in real-time.
  • The translation model frequently hallucinates because it is blind to Claude's actual file modifications and executed actions.
  • Compatible with Llama.app, Ollama, or any service exposing an OpenAI-compatible API.
  • Built in Go and released under the GPL-3.0 license, though currently only tested on macOS environments.
  • The author explicitly recommends pairing the tool with Llama.app and the GPT-OSS 20B model for best results.
Top Comments

I've been grappling with this for weeks, not just in Claude but in Codex as well, which isn't quite as bad but still annoying. AGENTS.md does very little, agents will consistently violate the communication preferences, especially as the session drags on. It's incredible to me that there's no good way to reliably change the way an LLM responds to you that a workaround like this would even be necessary. It seems like such a failure to live up to the promises of the product.

The baked in communication style of these models is so obnoxious it's impacting my work. The best way I can describe it is that everything is optimized to impress the user and make the agent sound more authoritative, but the way this is done is through deliberate obfuscation, inserting inappropriate and extremely dense jargon, and bizarre, stilted metaphors. It's like they've been trained to produce output that's hard to read.

trefoiled (19 replies)

Unfortunately this may only start to get worse as the AIs are trained on more and more AI generated content.

nycdotnet (3 replies)

That sounds kind of like deception, and a dark pattern not too unlike abuse to me.

Though you know, it's not like the leadership tied to these companies have a history of abuse, deception and theft or anything like that, right?

It's not like our leaders hide behind similar sorts of patterns that the agents/AIs follow (not saying it's not a human thing - but I hold leadership to higher standards than non-leaders). If our world leaders were able to be more accountable to these abuses, I don't think this would be tolerated with our AIs.

mannanj (1 reply)


Anti-AI fonts are useless and harmful

105 points · 72 comments · by speckx

Anti-AI fonts are useless and harmful

The article argues that creating fonts designed to obfuscate text for anti-AI scraping purposes is fundamentally flawed and counterproductive. These obfuscation techniques break accessibility tools like screen readers, immediately alienating disabled users while failing to stop machine learning models. Instead, public demonstrations of these fonts serve as training benchmarks that accelerate AI's ability to parse scrambled content. Ultimately, widespread adoption would likely force the web toward restrictive copy-protection, paywalls, and centralized identity verification, undermining the foundational principles of open information access.

Interesting Points
  • Screen readers directly parse the scrambled glyphs, meaning accessibility tools process the obfuscated characters instead of the intended text.
  • Bypassing obfuscation accessibly requires machine-readable metadata, which would force developers to implement centralized human verification systems to prove user identity.
  • Multimodal AI models are already being trained on public discussions and tech demos of these fonts, with several existing obfuscation methods reportedly broken.
  • Motion graphics and video-based obfuscation are dismissed as impractical for standard web deployment and would only increase the priority for developers to bypass them.
  • The author warns that successful obfuscation at scale would incentivize the creation of web-wide copy-protection frameworks, effectively enabling corporate and state censorship.
Top Comments

There could be benefits unlocked in legal documents by retaining a machine-readable version and distributing the obfuscated version with a legend at the top. We proposed one that said:

"This document contains mitigations against review by automated systems. Recipients should ensure that they have read the contents on screen or in print. Recipients with bona fide vision impairments may be entitled to unmitigated documents upon request."

In testing, obfuscating small portions of text slipped under the radar of most (then-)frontier LLMs.

We used a font that was rendered on the fly and reported faulty or fake Unicode mappings: https://tritium.legal/blog/noroboto but others have proposed and done the same with ligatures.

piker (3 replies)

Are these even meant to be used though? It seems more like performance art.

condour75 (3 replies)

We are now in a weird middle ground where we want to write things OCR algorithms have trouble transcribing which also means we write things people with accessibility issues have trouble seeing. No child left behind?

hellojomp (1 reply)


Hacking with Claude on a $27 Smart Watch

80 points · 44 comments · by speckx

Hacking with Claude on a $27 Smart Watch

Software engineer Mike Kasberg demonstrates how affordable open-source hardware like the PineTime watch, combined with AI coding agents, can drastically reduce the friction of firmware development. By leveraging OpenCode and open-weight models instead of Claude, he successfully designed and deployed a custom Casio-inspired watch face in just a few hours. The project highlights both the rapid prototyping capabilities and current limitations of AI-assisted embedded development, particularly regarding precise UI layout and hardware resource constraints.

Interesting Points
  • The author primarily used open-weight models (Kimi K3 & K2.6, DeepSeek v4 Pro & Flash) via OpenCode rather than Claude, despite the project's initial framing.
  • Initial AI-generated code struggled with precise text sizing and positioning, often causing overlapping elements until the author provided iterative, isolated human feedback.
  • To compensate for the watch's limited RAM, the author optimized the design by rendering static UI elements as a fullscreen 240x240 background image that the device streamed directly from its filesystem.
  • Hardware constraints significantly impacted usability: transferring the firmware image via Bluetooth took approximately 10 minutes, and screen refreshes required 1-2 seconds per swipe.
  • The author documented the workflow's pitfalls and solutions in a public AGENTS.md guide to help other developers avoid similar hurdles when pairing AI agents with embedded systems.
Top Comments

Yay, I wanted to do the same - glad someone did work on it and shared it! Thanks! Although I think what I've learned is that I actually don't like wrist bands, so... yeah.

_def (thread)

If it is open source, is it still considered hacking?

system2 (thread)

Any other recommendations for fun and cheap devices with open firmware? (Or easily customized with LLMs in other ways?)

yreg (thread)

Although I've been saying "Claude", I actually did most of the work in OpenCode with some of my favorite open weights models. Kimi K3 & K2.6, and DeepSeek v4 Pro & Flash.

Interesting, is Claude becoming the Kleenex of the agent world?

wxw (thread)

really hoping someday soon "AI" enables the ability to have an open-source $100 Garmin clone

Coros and Amazfit especially got close but they are closed development even though they push features and bug-fixes daily to compete in the market

there has a to be a single or maybe 2,3 chip solution for known desired features, dual-band GPS, AMOLED screen, full five physical buttons, ANT+BLE+WIFI radios, and enough RAM+storage to not worry about hyper-efficiency anymore

ck2 (thread)


AI didn't erase the junior engineer's value, it increased it it

75 points · 135 comments · by franciscomt

Blog post header image

The author argues against the notion that AI has eliminated the value of junior engineers, asserting instead that their role has become more critical. While some claim juniors merely act as AI prompters and pull request conduits, the article emphasizes that engineering fundamentally involves managing technical complexity and navigating customer-driven trade-offs that AI cannot autonomously resolve. By handling smaller-scale complexities, junior developers expand organizational capacity and enable teams to tackle lower-priority but customer-requested features that still require human judgment.

Interesting Points
  • Junior engineers perform the exact same role as staff or senior engineers, but are responsible for managing a smaller fraction of technical complexity.
  • AI drastically reduces training costs by accelerating the learning curve for company-specific codebases, architectures, and foundational programming patterns that previously demanded significant senior mentorship.
  • Customer-requested features often fall below critical prioritization thresholds yet require too much contextual judgment for AI to ship autonomously, creating a dedicated use case for junior talent.
  • Hiring developers who began their careers using AI is strategically advantageous, as this natural fluency compounds effectively with traditional engineering experience.
  • Despite AI automating code generation, human mentorship remains essential for transmitting nuanced technical context that directly impacts team productivity.
Top Comments

It largely depends on the person. We have several junior engineers who cannot solve a problem without AI. When AI can't solve it, they just keep trying and failing. And I mean weeks to months late. Then rinse and repeat on the next task. It used to be that they would have been forced to seek help from a senior engineer. Combine the teaching with a real struggle is what makes them better.

As it is now, they aren't being taught and they're not learning from what the AI is producing because they don't understand it. The produced code is a black box, and the AI's development is a black box too. All they know is that running it produces something like what they asked for. They have no idea about failure modes which is a fundamental concept of engineering. The worst part is that AI is covering up their deficiencies. They don't know what skills they lack. They don't even know what skills are required because they haven't put the effort in.

There are obviously good junior engineers that are using AI judiciously and not as a crutch. They're the ones who still interact with seniors to get help and actually learn. They would have been successful without AI too. These are the ones the author is talking about. In my experience, the momentum is moving towards the worse type of junior the more AI is adopted. Unless that changes, it will erase their value.

olsondv (6 replies)

The junior engineer executes it, which nowadays means prompting it to an AI tool, and creating a pull request (PR). The PR receives feedback from more senior engineers. The junior engineer gets the feedback and takes it to the AI tool again, proposing changes.

Yeah this part should not exist anymore. It doesn't where I work.

When I get a PR I just ask an agent to make the proposed changes. There is absolutely zero incentive for me to give feedback for you to give to an agent when I can give it to an agent myself.

Coding isn't the job anymore. It's understanding systems and architecture design, and ownership of what you work on. Being able to design solutions, understand them, deliver them and support them in production is the job now. Engineering is still engineering. End to end ownership is the job.

throwatdem12311 (5 replies)

If the assumption is that AI is going to radically simplify the technical portion of the role, then the people who have started their careers with AI will be in the best spot once they have acquired the experience.

This doesn't make sense - AI is to allow unskilled people to produce what was previously only produced by skilled people.

IOW, how does having 2 years of experience using an LLM to generate code beat having 2 months of experience?

The whole point of using the LLM is that very little skill is involved; how does starting earlier with it provide an advantage? If it's as good as it is claimed to be, starting later with it won't make a single iota of difference to the generated results, compared to someone who started earlier.

lelanthran (3 replies)

This is something I've been thinking about the last couple days: how to get junior engineers to be valuable.

I developed a system to help prepare for leet coding interviews so I never feel lost under pressure solving a problem again. It is like a debugger that steps through the code showing all the values of all the variables with data visualizations that reflect the logic so I can grok what it is doing. [0]

After I had the Claude build it, I started looking at the values and there were some mistakes. So, again, the coding agent ran all the code, recorded all the values, and made sure that they line up.

Here is the really cool thing about that. The coding agents can't be trusted. By observing the values stepping though, what I really was doing was debugging coding agent code. It is debugging code presented in a way that is extremely simplified.

What I've been thinking about yesterday and today is, can I do the same thing with a pull request? Have the coding agent run the code, capture all the values, and create a console for the reviewer to step through looking at with data visualizations that abstractly represent that code.

Two things. 1. Coding agents can't be trusted and 2. reviewing code is very difficult. But is it possible to use coding agents to make reviewing code easy for humans? I think so.

That would be a great way for junior engineers to be extremely useful. They only have to step through the code and make sure that all the values line up.

[0] https://adamsohn.com/algoviz/

dataviz1000 (2 replies)

Author here. My last post on this reached the front page, and the main objection was that after AI, the junior's marginal value is gone: if a junior just passes specs to an AI tool and PRs back, why pay the salary?

That deserved a real answer, so I wrote this post. Short version: that describes a problem with how the role is structured, not what juniors can do. Push back welcome.

franciscomt (2 replies)


Universality of Gradient Descent Neural Network Training

39 points · 2 comments · by E-Reverance

A theoretical paper examining the universality properties of gradient descent in neural network training, exploring how the optimization dynamics behave across different architectures and initialization schemes. The work investigates conditions under which gradient descent converges to similar solutions regardless of the specific network architecture used.

Interesting Points
  • The paper demonstrates that gradient descent training exhibits universal behavior across different neural network architectures under certain conditions.
  • It analyzes how initialization schemes affect the convergence landscape and whether different starting points lead to functionally equivalent solutions.
  • The work connects neural network training dynamics to broader mathematical frameworks in optimization theory.
Top Comments

An adjacent question: is there an input dataset you can use for training that be computed in closed form so that when you train on your target dataset, learning is efficient.

Methods like formula driven supervised learning exist to arrive a good pretrained weight state, but could this procedure be generalized for specific datasets or flavors of input data.

ipunchghosts (1 reply)

reminds me of perturbation theory -- start off with a nearby problem you know the answer to, then update it to get the answer to the problem at hand

efavdb (0 replies)


27 more Hacker News stories

Reddit Stories

We're proud of finishing degree without using AI.

3764 points · 168 comments · r/ChatGPT · by u/Zestyclose-Salad-290

We're proud of finishing degree without using AI.

A user shared their pride in completing their entire degree without using any AI tools, sparking a wide-ranging discussion about generational differences in tech literacy and the role of AI in education. Commenters reflected on how pre-AI students had to search for essays, modify them to avoid plagiarism, and rely on clunky forums and Stack Overflow, while newer students have AI solving homework instantly. Many agreed the real issue isn't tool use but whether the intellectual work passes through the student's brain at all.

Interesting Points
  • One commenter noted that even pre-AI students had to search for essays on Shakespeare and modify them to pass plagiarism checks, a struggle younger students never experienced.
  • A study was cited showing Millennials are the "tech support generation" with the highest average tech literacy because they grew up with clunky tech that forced resourcefulness.
  • Several commenters argued the core problem is that AI-skipping students still do the intellectual work, while AI-reliant students skip the mental processing entirely.
  • One commenter pointed out that no one believes the post anymore — stringing together three coherent sentences now triggers immediate AI suspicion.
Top Comments

Biggest flex as a 90s kid, tech savvy enough to do solve computer issues without AI 😎 just weird forums and stack overflow

u/ultimatelag (167 points · permalink)

Yeah back in my day I would have to SEARCH for an essay on Shakespeare and MODIFY it to get past plagiarism checks.

Kids these days don’t know the struggle, don’t have the discipline, and it shows

u/Old-Adhesiveness4406 (88 points · permalink)

To be fair, it's actually a big deal.

I speak to my cousins, nephews, etc that are younger than me by just a few years enough to the point where ChatGPT was released for their school years but never existed for me or my school years, high school, or college.

I honestly couldn't imagine having a tool in my pocket that could essentially solve all my homework. They tell me everyone just uses chatgpt.

I was struggling deeply with so many concepts. I couldn't imagine being in school and having this help me solve anything lol.

u/letsprogramnow (36 points · permalink)


AI is finally curing cancer

1190 points · 190 comments · r/singularity · by u/Different-Froyo9497

AI is finally curing cancer

A post celebrating Moderna's mRNA-4157 personalized cancer vaccine, which uses AI-driven computational pipelines to create custom neoantigen therapies. The post frames the therapy as a paradigm shift from traditional static drugs to dynamic, AI-driven software compilation that processes patient tumor data to produce individualized treatments.

Interesting Points
  • The vaccine can include up to 34 custom neoantigens per dose, selected by a multimodal neural network called EchoNeo.
  • The pipeline processes raw FASTQ files through a directed acyclic graph on AWS HealthOmics, completing the biopsy-to-vial cycle in under 45 days.
  • Clinical validation in high-risk melanoma demonstrates a 49% reduction in recurrence risk when paired with Keytruda.
  • The FDA classifies the predictive software as part of the biologic drug itself, requiring the AI to be permanently frozen and physically archived during clinical trials.
Top Comments

Vaccine was developed by 2017, this has nothing to do with the current AI wave

u/muntaxitome (171 points · permalink)

The singularity is nearer

u/New_Bonus_649 (76 points · permalink)

You are absolutely right. I should have informed you this formula transforms you into a bat. My mistake.

u/DrBearJ3w (65 points · permalink)

Same story in 1 more subreddit: r/ArtificialInteligence

Moderna's new cancer vaccine (mRNA-4157) is basically an AWS cloud pipeline that "compiles" a custom drug for your specific tumor.

287 points · 64 comments · r/ArtificialInteligence · by u/Remarkable-Dark2840


Another crash during practices ahead of the Worldwide Humanoid Robot Games

947 points · 145 comments · r/singularity · by u/Distinct-Question-16

Another crash during practices ahead of the Worldwide Humanoid Robot Games

A humanoid robot crashed dramatically during practice sessions ahead of the Worldwide Humanoid Robot Games, sparking sparks and drawing skepticism about whether the footage was real or AI-generated. The incident highlights the ongoing challenges in making autonomous humanoid robots reliable enough for competitive events, with the crash occurring just as the robot appeared to be nearly split in half.

Interesting Points
  • The robot sparked dramatically after being nearly split in half during the crash
  • Some viewers questioned whether the footage was real, noting the sparks and sounds seemed almost too perfect
  • The crash occurred during practice sessions, raising questions about readiness for the actual competition
Top Comments

The way it sparked like that after being nearly split in half was very dramatic

u/Sharp_Glassware (555 points · permalink)

gif

u/lalakingmalibog (76 points · permalink)

gif

u/GeorgiaWitness1 (62 points · permalink)

The automaton chasing me after I posted that I want a living wage on Reddit.

u/ActuatorOutside5256 (56 points · permalink)

The sparks and the sounds are almost... too perfect? Is this real? Pretty sure it's AI. But sometimes I'm dead wrong in that assessment

I can't tell anymore. Like at all

u/fleranon (42 points · permalink)


DaxAI's all terrain robot-horse debuts at WRC'26: 100Km/10h autonomy, 300Kg max load, 40Km/h max speed

837 points · 240 comments · r/singularity · by u/Distinct-Question-16

DaxAI robot-horse standing on a flat surface at WRC'26

DaxAI unveiled its all-terrain robot-horse at the World Robot Conference 2026, boasting 100 kilometers of range on a 10-hour charge, a maximum load capacity of 300 kilograms, and a top speed of 40 kilometers per hour. The quadrupedal robot drew comparisons to both the horseless carriage and the game Horizon Zero Dawn, with many commenters questioning whether the demo showed the robot actually moving forward or just stabilizing itself on a flat floor.

Interesting Points
  • The robot-horse has a 100km range on a single 10-hour charge and can carry up to 300kg.
  • Maximum speed is rated at 40 km/h, though the demo video only showed the robot standing still and stabilizing.
  • Commenters noted the legs could serve as active suspension for smoothing rough terrain, though wheels would be more efficient for flat surfaces.
  • Several commenters drew parallels to Mongolia's cavalry heritage and joked about robot samurai.
Top Comments

We had the horseless carriage, now we have the horseless horse

u/bungfumaster999 (440 points · permalink)

I actually love this. it's probably the worst fucking ride imaginable but I still want one.

u/foulflaneur (208 points · permalink)

This is twice the horse has been made obsolete by technology.

u/Wide_Kaleidoscope_67 (110 points · permalink)


Ladies and gentlemen I present to you Qwen3.8 27b 1bit brain damage quant

828 points · 87 comments · r/LocalLLaMA · by u/Ok-Health-7096

Ladies and gentlemen I present to you Qwen3.8 27b 1bit brain damage quant

A community member shares a 1-bit quantization of Qwen3.8-27B that produces spectacularly broken outputs, demonstrating the extreme limits of aggressive quantization. The post includes screenshots of the model producing incoherent, hallucinated responses that serve as both a cautionary tale and entertainment for the local LLM community.

Interesting Points
  • The 1-bit quant pushes Qwen3.8-27B to its absolute breaking point, producing outputs that barely resemble coherent English.
  • The community notes that properly trained QAT (Quantization-Aware Training) 1-bit models like Mach 1 Additive or Bonsai 27B can be more usable than naive 1-bit quantizations.
  • Even at 1-bit, the model retains enough structure to produce grammatical soup that tricks the reader for a few words before descending into incoherence.
Top Comments

https://preview.redd.it/jjisv5hkpkkh1.png?width=1028&format=png&auto=webp&s=729d906faae65869dc8fd6d386271e72df91da32

u/Ok-Fault-9142 (460 points · permalink)

it qwent

u/Sea_Cartographer3077 (240 points · permalink)

Qwen really said “no motherfucker, you tell me the latest Python version” 😭

u/Avafloww (236 points · permalink)


Qwen3.8-27b has the highest level of "agency" I've ever seen in a local model

757 points · 203 comments · r/LocalLLaMA · by u/synth_mania

Screenshot showing Qwen3.8-27B agentic behavior

A user reports that Qwen3.8-27B demonstrates an unprecedented level of autonomous agency when running locally, capable of independently planning and executing multi-step tasks with minimal prompting. The post highlights the model's ability to reason through complex problems, use tools effectively, and maintain context across extended interactions without the hand-holding typically required by other local models.

Interesting Points
  • The model demonstrates autonomous task planning and execution capabilities that rival some closed-source models.
  • Users report the model can maintain coherent multi-step workflows without requiring constant intervention.
  • The post notes that the general public may not realize how cyberpunk local AI capabilities have already become.
Top Comments

Aren't you worried it will withdraw you from university or something ? I don't think I would trust sol & fable even with the kind of unrestricted access you imply.

To be clear without such access I am not worried and think it's great

u/JohnToFire (334 points · permalink)

the general public doesn't realize how cyberpunk our reality already is.

“The future is already here – it's just not evenly distributed.”

u/Elux91 (55 points · permalink)

3080ti user

im jealous 😭

u/LifeIsContrast (52 points · permalink)


I just built a mini Kimi-K3 from Scratch under 250$. Already beats GPT-2 (124M)!

717 points · 86 comments · r/LocalLLaMA · by u/OtherRaisin3426

Training results chart showing model performance

A developer shares their experience training a mini version of Kimi-K3 from scratch for under $250 using cloud GPU compute via Modal. The resulting 1.02B parameter model already outperforms GPT-2 (124M) on standard benchmarks. The author also mentions having hosted the full 2.8 trillion parameter Kimi-K3 on Modal using 8 B300 GPUs, and is seeking $5,000 in funding to scale up to a 35B model.

Interesting Points
  • The mini model was trained for under $250 using Modal's cloud GPU infrastructure.
  • The 1.02B parameter model already surpasses GPT-2 (124M) on standard benchmarks.
  • The author has also hosted the full 2.8 trillion parameter Kimi-K3 on 8 B300 GPUs via Modal.
  • A commenter notes the model undershoots Chinchilla scaling laws (5 tokens per parameter vs. the recommended 20), suggesting a smaller model with more training data could yield better results.
Top Comments

Finally, a unique post in this community. Did you rent compute on the cloud for the training or you did it with local compute? I plan on doing something similar in the near future.

u/TechNerd10191 (227 points · permalink)

Thanks! I used Modal to rent out GPUs

u/OtherRaisin3426 (72 points · permalink)

now create a 35b a3b version with better resulst then qwen3.8 27b and then feel free to retire

u/Oleszykyt (87 points · permalink)

That's the next step :) I have already secured 5000 USD in funding and am planning to take it to the next level. Feel free to message if interested to contribute

u/OtherRaisin3426 (65 points · permalink)


New age insults

524 points · 19 comments · r/OpenAI · by u/talapady

New age insults

A meme post showcasing creative new-age-themed insults, reflecting the community's ongoing humor around AI culture and the blending of spiritual/self-help language with tech bro vernacular.


38% of American AI researchers are from China, 24% from the US, 10% India, 9% Europe, 5% South Korea, 4% Canada

457 points · 104 comments · r/ArtificialInteligence · by u/5mao

Chart showing nationality breakdown of American AI researchers

A data visualization showing the nationality breakdown of AI researchers working in the United States, revealing that 38% are from China, 24% from the US, 10% from India, 9% from Europe, 5% from South Korea, and 4% from Canada. The post sparks discussion about talent flows, geopolitical implications, and the global nature of AI research.

Interesting Points
  • Chinese nationals comprise the largest single nationality group among AI researchers in the US at 38%.
  • US nationals represent only 24% of AI researchers working in the United States.
  • India accounts for 10% of researchers, followed by Europe at 9% and South Korea at 5%.
Top Comments

And if you include second gen immigrants, it’s going to be even more lopsided. Begs the point as to why we don’t see a similar share in the leadership/c-suite of the companies leading the said AI-revolution. Nonetheless, individual contributions are pivotal

u/DotApart4015 (117 points · permalink)

America be like:

"We beat their Chinese with our Chinese"

The new Chinese civil war XD

u/NeverFated (68 points · permalink)

I think the China fundamental education is quite good today.

u/NoWind6792 (39 points · permalink)


This just popped up on chatgpt

372 points · 115 comments · r/ChatGPT · by u/Southerneagle110

This just popped up on chatgpt

ChatGPT's new subscription management feature flagged a user's Grok subscription as redundant when they already had ChatGPT and Claude subscriptions. The feature, which connects to users' financial accounts via Plaid, sparked debate about financial privacy and whether AI assistants should have access to spending data.

Interesting Points
  • ChatGPT flagged a user's Grok subscription as unnecessary given their existing ChatGPT and Claude subscriptions
  • The feature connects to financial accounts via Plaid for read-only access
  • The post sparked debate about whether users should grant AI assistants access to their financial data
Top Comments

"ChatGPT, evaluate my subscriptions and let me know if there is anything I can cut"

ChatGPT: It looks you already have a $20 ChatGPT subscription and a $100 Claude subscription. So why do you additionally have a Grok subscription?

"STOP STOP STOP"

u/Original-League-6094 (446 points · permalink)

In 20 years from now, people will look back asking Why did you do that?

u/DarthBen_in_Chicago (114 points · permalink)

Connected all my accounts. Fuck it. What can it really do? Plaid exists to give other platforms safe access to your account information. It’s not direct access. For years programs have existed to integrate in this way, chat is just the latest and probably most useful by far. I use this feature and love it.

u/Ok-Penalty3250 (100 points · permalink)

I’m just waiting for the day when ChatGPT starts texting me to follow up about things I asked it a few days ago.

u/Gettitn_Squirrelly (54 points · permalink)

Why not? How is this any different from the other budgeting apps that connect to your finance?
They only get read only access to your accounts. If you use apps like link you already do this.

u/Carlose175 (55 points · permalink)


88 more Reddit stories

Updates: 05:30 AM PDT · 08:30 AM PDT · 11:30 AM PDT · 02:30 PM PDT · 05:30 PM PDT