You are here |
www.iamsim.me | ||
| | | |
digitaldrummerj.me
|
|
| | | | Web Developer, Tester and Professional Speaker; passionate about good code, automated testing, devops, and presenting. | |
| | | |
sean.heelan.io
|
|
| | | | A few months back I started Persistence Labs with the goal of developing better tools for bug discovery, reverse engineering and exploit development. I've also moved my blog over to that domain and the new RSS feed is here. Anyway, that's about it really =) I'll be making any future blog posts over there, starting... | |
| | | |
blog.martinig.ch
|
|
| | | | Architecture is an important asset for good programming and the notion of "pattern" is here to help us apply already trusted code architecture solutions to common problems. Jason McDonald has done a wonderful job to group some of them in a document that should be useful to most software developers. Go to his blog to | |
| | | |
ezyang.github.io
|
|
| | When you're learning to use a new framework or library, simple uses of the software can be done just by copy pasting code from tutorials and tweaking them as necessary. But at some point, it's a good idea to just slog through reading the docs from top-to-bottom, to get a full understanding of what is and is not possible in the software. One of the big wins of AI coding is that LLMs know so many things from their pretraining. For extremely popular frameworks that occur prominently in the pretraining set, an LLM is likely to have memorized most aspects of how to use the framework. But for things that are not so common or beyond the knowledge cutoff, you will likely get a model that hallucinates things. Ideally, an agentic model would know to do a web search and find the docs it needs. However, Sonnet does not currently support web search, so you have to manually feed it documentation pages as needed. Fortunately, Cursor makes this very convenient: simply dropping a URL inside a chat message will include its contents for the LLM. |