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!
Computers, Coding and Caffeine
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!
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.