Fancy learning how to Base64 encode with modern C++? Learn how to implement an easy Base64 encoder and decoder using cutting-edge features of the Cpp standard.
Computers, Coding and Caffeine
Fancy learning how to Base64 encode with modern C++? Learn how to implement an easy Base64 encoder and decoder using cutting-edge features of the Cpp standard.
Base64 is an encoding algorithm for converting any binary data into printable ASCII text, to be sent over the internet. Learn how to base64 encode and decode!
Conway’s Game Of Life is a popular 2D cell evolution game. In tis post, we will implement the whole game with graphics display in less than 80 lines of Python!
The trapezium rule can be tricky to implement, specially in C++. This post will teach you how to get a fairly performant trapezium rule area estimator with CPP!
This post shows how to implement the trapezium rule with pure Python and Numpy! Learn how the trapezium rule works by implementing it.