Explore >> Select a destination


You are here

arthur.ludus.club
| | blog.jak-linux.org
12.0 parsecs away

Travel
| | On Monday, I joined Software in the Public Interest (SPI). I'm currently a non-contributing member and have already applied for contributing membership. MJ Ray asked why people do and dont join SPI,and received answers. Not knowing SPI is no good reason, at least if you are participating in Debian's development, and you should really know SPI if you are a Debian Developer. For me, personally, not joining the SPI would not make any sense. The existance of other organizations is no good reason. Look at me, I am also a Fellow of the Free Software Foundation Europe.
| | johannesbrodwall.com
10.2 parsecs away

Travel
| |
| | osarch.org
11.4 parsecs away

Travel
| | Google Summer of Code is an annual programme that helps students and those new to open source software make their first steps into contributing code to software projects. GSoC Contributors Read more
| | ezyang.github.io
51.3 parsecs away

Travel
| 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.