C C Programming
December 1, 2024 5 min read
This repository post compiles all the articles in our 'Intermediate C Concepts' series, covering dynamic memory, linked lists, trees, graphs, and more!
Read article Racket Logic Programming
December 1, 2024 5 min read
Racket isn't just functional; it's also logical! Explore #lang datalog to write declarative queries and facts similar to Prolog.
Read article Racket Lazy Evaluation
November 28, 2024 5 min read
Understand the difference between strict and lazy evaluation. Use 'delay' and 'force' to work with infinite data structures and optimize performance.
Read article Racket LOP
November 25, 2024 5 min read
The ultimate goal of Racket. Learn how to create your own programming language, complete with a parser, compiler, and customized syntax using #lang.
Read article Racket Web Development
November 23, 2024 5 min read
Build stateful web applications easily. Explore the Racket Web Server and how it uses continuations to manage user sessions automatically.
Read article