Have you ever wished your website could feel more dynamic and responsive without diving into complex JavaScript coding? Well, meet HTMX! It’s like magic for the web, allowing you to create interactive web applications without the need for much JavaScript. In this article, we’ll explore the basics of HTMX in… Read More... "HTMX: A Basic Introduction"
I’ve been fairly interested in python and multithread programming recently, so I decided “what better way to learn it than to try and teach it?”, and so here it is: a simplified explanation to python threads, what are they, how to create one, the advantages and ways to communicate between… Read More... "Python Threads: How do they work?"
Have you ever wanted to use javascript, but with obligatory types to ensure the code is easy to maintain? Well, someone at Microsoft did a long time and now, we shall take a look at typescript: a “super set” of javascript, adding better maintenability, static typing, checks, etc to help… Read More... "TypeScript: A Basic Introduction"
Many programming languages have tried to tackle memory management in different, better ways. Some, like C/C++, leave it up to the programmer to allocate and free memory, others like Python do it all automatically, with something called a Garbage Collector. A dev at mozilla didn’t like either approach, as both… Read More... "Rust: A Basic Introduction"
With the massive popularity of personal computers and their usage by people of all areas, its inevitable that people who aren’t primarily programmers will sooner or later need to do at least some programming. With that in mind, python was made: A language with focus on being easy to understand,… Read More... "Python: A Basic Introduction"