Tag: ai-assisted-programming
-
Simon Willison’s Weblog: The 3 AI Use Cases: Gods, Interns, and Cogs
Source URL: https://simonwillison.net/2024/Oct/20/gods-interns-and-cogs/#atom-everything Source: Simon Willison’s Weblog Title: The 3 AI Use Cases: Gods, Interns, and Cogs Feedly Summary: The 3 AI Use Cases: Gods, Interns, and Cogs Drew Breunig introduces an interesting new framework for categorizing use cases of modern AI: Gods refers to the autonomous, AGI stuff that’s still effectively science fiction. Interns…
-
Simon Willison’s Weblog: An LLM TDD loop
Source URL: https://simonwillison.net/2024/Oct/13/an-llm-tdd-loop/#atom-everything Source: Simon Willison’s Weblog Title: An LLM TDD loop Feedly Summary: An LLM TDD loop Super neat demo by David Winterbottom, who wrapped my LLM and files-to-prompt tools in a short Bash script that can be fed a file full of Python unit tests and an empty implementation file and will then…
-
Simon Willison’s Weblog: lm.rs: run inference on Language Models locally on the CPU with Rust
Source URL: https://simonwillison.net/2024/Oct/11/lmrs/ Source: Simon Willison’s Weblog Title: lm.rs: run inference on Language Models locally on the CPU with Rust Feedly Summary: lm.rs: run inference on Language Models locally on the CPU with Rust Impressive new LLM inference implementation in Rust by Samuel Vitorino. I tried it just now on an M2 Mac with 64GB…
-
Simon Willison’s Weblog: Quoting Jason Gorman
Source URL: https://simonwillison.net/2024/Sep/29/jason-gorman/#atom-everything Source: Simon Willison’s Weblog Title: Quoting Jason Gorman Feedly Summary: In the future, we won’t need programmers; just people who can describe to a computer precisely what they want it to do.— Jason Gorman Tags: ai-assisted-programming, llms, ai, generative-ai AI Summary and Description: Yes Summary: The text anticipates a future where programming…
-
Simon Willison’s Weblog: Solving a bug with o1-preview, files-to-prompt and LLM
Source URL: https://simonwillison.net/2024/Sep/25/o1-preview-llm/ Source: Simon Willison’s Weblog Title: Solving a bug with o1-preview, files-to-prompt and LLM Feedly Summary: Solving a bug with o1-preview, files-to-prompt and LLM I added a new feature to DJP this morning: you can now have plugins specify their metadata in terms of how it should be positioned relative to other metadata…
-
Simon Willison’s Weblog: The Pragmatic Engineer Podcast: AI tools for software engineers, but without the hype – with Simon Willison
Source URL: https://simonwillison.net/2024/Sep/25/pragmatic-engineer-podcast/ Source: Simon Willison’s Weblog Title: The Pragmatic Engineer Podcast: AI tools for software engineers, but without the hype – with Simon Willison Feedly Summary: The Pragmatic Engineer Podcast: AI tools for software engineers, but without the hype – with Simon Willison Gergely Orosz has a brand new podcast, and I was the…
-
Simon Willison’s Weblog: Quoting Forrest Brazeal
Source URL: https://simonwillison.net/2024/Aug/31/forrest-brazeal/#atom-everything Source: Simon Willison’s Weblog Title: Quoting Forrest Brazeal Feedly Summary: I think that AI has killed, or is about to kill, pretty much every single modifier we want to put in front of the word “developer.” “.NET developer”? Meaningless. Copilot, Cursor, etc can get anyone conversant enough with .NET to be productive…
-
Simon Willison’s Weblog: Gemini Chat App
Source URL: https://simonwillison.net/2024/Aug/27/gemini-chat-app/#atom-everything Source: Simon Willison’s Weblog Title: Gemini Chat App Feedly Summary: Gemini Chat App Google released three new Gemini models today: improved versions of Gemini 1.5 Pro and Gemini 1.5 Flash plus a new model, Gemini 1.5 Flash-8B, which is significantly faster (and will presumably be cheaper) than the regular Flash model. They’re…
-
Simon Willison’s Weblog: AI-powered Git Commit Function
Source URL: https://simonwillison.net/2024/Aug/26/ai-powered-git-commit-function/#atom-everything Source: Simon Willison’s Weblog Title: AI-powered Git Commit Function Feedly Summary: AI-powered Git Commit Function Andrej Karpathy built a shell alias, gcm, which passes your staged Git changes to an LLM via my LLM tool, generates a short commit message and then asks you if you want to “(a)ccept, (e)dit, (r)egenerate, or…