Explore >> Select a destination


You are here

cyborg.blogspot.com
| | www.itsupportguides.com
14.8 parsecs away

Travel
| | IT Support Guides: Your destination for mastering WordPress and Gravity Forms. Dive deep into PHP coding, troubleshoot Windows issues, and empower yourself with our comprehensive IT knowledge base.
| | doubleclix.wordpress.com
15.6 parsecs away

Travel
| | I am spending this weekend with Yann LeCun (virtually, of course) studyingthe excellent video Lectures and slidesat the College de France.A set of 8 lectures by Yann LeCun (BTW pronounced as LuCaan) and 6 guest lectures. The translator does an excellent job - especially as it involves technical terms and concepts ! (I will post...
| | benoitpasquier.com
15.1 parsecs away

Travel
| | For the past few years, I had the opportunity to mentor new joiners through different roles. In some aspects, I could see myself in them the same way I started years back: eager to prove themselves, jumping on the code and hacking around. I tried to think about what I learnt the hard way since my first role in the tech industry and how could I help them learn the easy way.
| | ezyang.github.io
58.5 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.