frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Open in hackernews

How I code with AI on a budget/free

https://wuu73.org/blog/aiguide1.html
75•indigodaddy•3h ago

Comments

swader999•2h ago
Noped right out of that fast as soon as I saw the font.
sestep•1h ago
You probably only saw the cursive backup font and not the intended Roboto font that the page actually uses (which took about half a second to load for me); here's a snippet from the CSS:

  font-family: "Roboto", "Underdog", cursive, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol";
adastra22•1h ago
Site really needs to drop the completely unreadable backup font.
dangus•1h ago
Commenters need to stop complaining and hit the reader mode button on their browsers.
nosioptar•46m ago
Reader mode isn't an option for me on this page using Firefox mobile.

The better solution is that web devs and designers should either stop changing fonts or learn how to do so without making peoples' eyes bleed.

bravesoul2•34m ago
UA's FTW.
adastra22•31m ago
Not all browsers have a reader mode. And for the record I usually don’t like these design-related comments, but it was literally unreadable. Like some sort of 17th century chicken scratch cursive.
CjHuber•2h ago
Without tricks google aistudio definitely has limits, though pretty high ones. gemini.google.com on the other hand has less than a handful of free 2.5 pro messages for free
GaggiX•1h ago
OpenAI offering 2.5M free tokens daily small models and 250k for big ones (tier 1-2) is so useful for random projects, I use them to learn japanese for example (by having a program that list informations about what the characters are just saying: vocabulary, grammar points, nuances).
cammikebrown•1h ago
I wonder how much energy this is wasting.
bravesoul2•32m ago
Untradable carbon tax (or carbon price for people who hate the T word) is needed.
Havoc•1h ago
For anyone else confused - there is a page 2 and 3 in the post that you need to access via arrow thing at bottom.
porlemni•1h ago
“How I do free data entry for every corpo fascist tech oligarchs’ plagiarism and manufactured consent machines simultaneously.”
bravesoul2•34m ago
You could get them all to idly chat to each other.
andai•1h ago
My experience lines up with the article. The agentic stuff only works with the biggest models. (Well, "works"... OpenAI Codex took 200 requests with o4-mini to change like 3 lines of code...)

For simple changes I actually found smaller models better because they're so much faster. So I shifted my focus from "best model" to "stupidest I can get away with".

I've been pushing that idea even further. If you give up on agentic, you can go surgical. At that point even 100x smaller models can handle it. Just tell it what to do and let it give you the diff.

Also I found the "fumble around my filesystem" approach stupid for my scale, where I can mostly fit the whole codebase into the context. So I just dump src/ into the prompt. (Other people's projects are a lot more boilerplatey so I'm testing ultra cheap models like gpt-oss-20b for code search. For that, I think you can go even cheaper...)

Patent pending.

statenjason•23m ago
Aider as a non-agentic coding tool strikes a nice balance on the efficiency vs effectiveness front. Using tree-sitter to create a repo map of the repository means less filesystem digging. No MCP, but shell commands mean it can use utilities I myself am familiar with. Combined with Cerebras as a provider, the turnaround on prompts is instant; I can stay involved rather than waiting on multiple rounds of tool calls. It's my go-to for smaller scale projects.
reactordev•1h ago
To the OP: I highly recommend you look into Continue.dev and ollama/lmstudio and running models on your own. Some of them are really good at autocomplete-style suggestions while others (like gpt-oss) can reason and use tools.

It's my goto copilot.

navbaker•14m ago
Same! I’ve been using Continue in VSCode and found most of the bigger Qwen models plus gpt-oss-120b to be great in agentic mode!
chromaton•1h ago
If you're looking for free API access, Google offers access to Gemini for free, including for gemini-2.5-pro with thinking turned on. The limit is... quite high, as I'm running some benchmarking and haven't hit the limit yet.

Open weight models like DeepSeek R1 and GPT-OSS are also made available with free API access from various inference providers and hardware manufacturers.

gooosle•1h ago
Gemini 2.5 pro free limit is 100 requests per day.

https://ai.google.dev/gemini-api/docs/rate-limits

tomrod•38m ago
Doesn't it swap to a lower power model after that?
chiwilliams•32m ago
I'm assuming it isn't sensitive for your purposes, but note that Google will train on these interactions, but not if you pay.
radio879•1h ago
I am the person that wrote that. Sorry about the font. This is a bit outdated, AI stuff goes at high speed. More models so I will try to update that.

Every month so many new models come out. My new fav is GLM-4.5... Kimi K2 is also good, and Qwen3-Coder 480b, or 2507 instruct.. very good as well. All of those work really well in any agentic environment/in agent tools.

I made a context helper app ( https://wuu73.org/aicp ) which is linked to from there which helps jump back and forth from all the different AI chat tabs i have open (which is almost always totally free, and I get the best output from those) to my IDE. The app tries to remove all friction, and annoyances, when you are working with the native web chat interfaces for all the AIs. Its free and has been getting great feedback, criticism welcome.

It helps the going from IDE <----> web chat tabs. Made it for myself to save time and I prefer the UI (PySide6 UI so much lighter than a webview)

Its got Preset buttons to add text that you find yourself typing very often, per-project state saves of window size of app and which files were used for context. So next time, it opens at same state.

Auto scans for code files, guesses likely ones needed, prompt box that can put the text above and below the code context (seems to help make the output better). One of my buttons is set to: "Write a prompt for Cline, the AI coding agent, enclose the whole prompt in a single code tag for easy copy and pasting. Break the tasks into some smaller tasks with enough detail and explanations to guide Cline. Use search and replace blocks with plain language to help it find where to edit"

What i do for problem solving, figuring out bugs: I'm usually in VS Code and i type aicp in terminal to open the app. Fine tune any files already checked, type what i am trying to do or what problem i have to fix, click Cline button, click Generate Context!. Paste into GLM-4.5, sometimes o3 or o4-mini, GPT-5, Gemini 2.5 Pro.. if its a super hard thing i'll try 2 or 3 models. I'll look and see which one makes the most sense and just copy and paste into Cline in VS Code - set to GPT 4.1 which is unlimited/free.. 4.1 isn't super crazy smart or anything but it follows orders... it will do whatever you ask, reliably. AND, it will correct minor mistakes from the bigger model's output. The bigger smarter models can figure out the details, and they'll write a prompt that is a task list with how-to's and why's perfect for 4.1 to go and do in agent mode....

You can code for free this way unlimited, and its the smartest the models will be. Anytime you throw some tools or MCPs at a model it dumbs them down.... AND you waste money on all the API costs having to use Claude 4 for everything

indigodaddy•49m ago
Is glm-4.5 air useable? I see it's free on Openrouter. Also pls advise what you think is the current best free openrouter model for coding. Thanks!
bravesoul2•35m ago
Windsurf has a good free model. Good enough for autocomplete level work for sure (haven't tried it for more as I use Claude Code)
indigodaddy•34m ago
Assuming you have to at least be logged into a windsurf account though?
bravesoul2•33m ago
Yeah. I didn't see not logged in as a requirement.

Just Buy Nothing: A fake online store to combat shopping addiction

https://justbuynothing.com/
68•Improvement•1h ago•15 comments

How I code with AI on a budget/free

https://wuu73.org/blog/aiguide1.html
77•indigodaddy•3h ago•27 comments

Abusing Entra OAuth for fun and access to internal Microsoft applications

https://research.eye.security/consent-and-compromise/
84•the1bernard•4h ago•19 comments

GPTs and Feeling Left Behind

https://whynothugo.nl/journal/2025/08/06/gpts-and-feeling-left-behind/
58•Bogdanp•2h ago•33 comments

Show HN: The current sky at your approximate location, as a CSS gradient

https://sky.dlazaro.ca
553•dlazaro•12h ago•113 comments

My Lethal Trifecta talk at the Bay Area AI Security Meetup

https://simonwillison.net/2025/Aug/9/bay-area-ai/
272•vismit2000•11h ago•84 comments

Don't “let it crash”, let it heal

https://www.zachdaniel.dev/p/elixir-misconceptions-1
17•ahamez•3d ago•0 comments

A CT scanner reveals surprises inside the 386 processor's ceramic package

https://www.righto.com/2025/08/intel-386-package-ct-scan.html
169•robin_reala•8h ago•47 comments

GPT-5: Overdue, overhyped and underwhelming. And that's not the worst of it

https://garymarcus.substack.com/p/gpt-5-overdue-overhyped-and-underwhelming
174•kgwgk•1h ago•117 comments

Ch.at – a lightweight LLM chat service accessible through HTTP, SSH, DNS and API

https://ch.at/
86•ownlife•7h ago•28 comments

OpenFreeMap survived 100k requests per second

https://blog.hyperknot.com/p/openfreemap-survived-100000-requests
370•hyperknot•12h ago•74 comments

R0ML's Ratio

https://blog.glyph.im/2025/08/r0mls-ratio.html
42•zdw•13h ago•3 comments

Debian 13 "Trixie"

https://www.debian.org/News/2025/20250809
532•ducktective•7h ago•197 comments

People returned to live in Pompeii's ruins, archaeologists say

https://www.bbc.com/news/articles/c62wx23y2v1o
37•bookofjoe•2d ago•7 comments

Who got arrested in the raid on the XSS crime forum?

https://krebsonsecurity.com/2025/08/who-got-arrested-in-the-raid-on-the-xss-crime-forum/
60•todsacerdoti•3d ago•1 comments

Quickshell – building blocks for your desktop

https://quickshell.org/
247•abhinavk•4d ago•31 comments

Long-term exposure to outdoor air pollution linked to increased risk of dementia

https://www.cam.ac.uk/research/news/long-term-exposure-to-outdoor-air-pollution-linked-to-increased-risk-of-dementia
248•hhs•13h ago•78 comments

A Simple CPU on the Game of Life (2021)

https://nicholas.carlini.com/writing/2021/unlimited-register-machine-game-of-life.html
34•jxmorris12•3d ago•4 comments

Suzhou Imperial Kiln Ruins Park and Museum of Imperial Kiln Brick (2018)

https://www.theplan.it/eng/award-2018-Culture/suzhou-imperial-kiln-ruins-park-museum-of-imperial-kiln-brick-1
3•mooreds•3d ago•0 comments

How I use Tailscale

https://chameth.com/how-i-use-tailscale/
184•aquariusDue•3d ago•35 comments

An AI-first program synthesis framework built around a new programming language

https://queue.acm.org/detail.cfm?id=3746223
64•tosh•10h ago•3 comments

Consistency over Availability: How rqlite Handles the CAP theorem

https://philipotoole.com/consistency-over-availability-how-rqlite-handles-the-cap-theorem/
23•otoolep•3d ago•1 comments

Did California's fast food minimum wage reduce employment?

https://www.nber.org/papers/w34033
78•lxm•16h ago•172 comments

Stanford to continue legacy admissions and withdraw from Cal Grants

https://www.forbes.com/sites/michaeltnietzel/2025/08/08/stanford-to-continue-legacy-admissions-and-withdraw-from-cal-grants/
172•hhs•13h ago•341 comments

ESP32 Bus Pirate 0.5 – A hardware hacking tool that speaks every protocol

https://github.com/geo-tp/ESP32-Bus-Pirate
106•geo-tp•11h ago•22 comments

An engineer's perspective on hiring

https://jyn.dev/an-engineers-perspective-on-hiring
64•pabs3•16h ago•83 comments

Testing Bitchat at the music festival

https://primal.net/saunter/testing-bitchat-at-the-music-festival
75•alexcos•3d ago•40 comments

MCP overlooks hard-won lessons from distributed systems

https://julsimon.medium.com/why-mcps-disregard-for-40-years-of-rpc-best-practices-will-burn-enterprises-8ef85ce5bc9b
258•yodon•11h ago•146 comments

Isle FPGA Computer: creating a simple, open, modern computer

https://projectf.io/isle/fpga-computer.html
42•pabs3•3d ago•4 comments

Ratfactor's illustrated guide to folding fitted sheets

https://ratfactor.com/cards/fitted-sheets
136•zdw•14h ago•18 comments