ai, tutorial, open source, theory, python
Author(s): Kieran Wood
AI has hit the world hard in the last few years. Particularly with the introduction of newer generative AI systems like LLM’s (Large language models like ChatGPT, Bard, Llama), and image generators (like Midjourney, DALL-E-2, Imagen etc.... Read more
python, scorch, web, theory
Now that we have our functionality, it’s time to make our program more practical and easy to use. For our use case a CLI is the best tool for this!... Read more
We have what we need to make HTTP requests and responses properly, so now let’s look at adding networking so we can see the results in the browser.... Read more
Now that we have our basic HTTP structure we need a way to read actual http requests/responses. Currently we have hardcoded everything, so today we will focus on creating everything we need for steps 2-4:... Read more
HTTP is the protocol that runs the web, it’s the way most devices talk to each other these days. It’s also the protocol we are going to use, and as such we need to get everything setup for the http protocol.... Read more
HTTP is the way that we communicate over the internet. It’s what allows you to see the content you’re currently looking at.... Read more
c, c++, python, low-level
Author(s): Cole Pawliw
In many high level coding languages, The idea of a pointer either doesn’t exist, or is hidden from the programmer’s use.... Read more