./learning_something_new

Learning something new everyday


After reading alephzero's "The Self-Loathing Man of Inaction", i found that i resonated with his analogy of existing in a "ground state", and i realised that something needed to change. Unfortunately, the idea of a big shift scares me, and i have little faith in myself to actually stick to my plans, but we'll see how this goes,,,

The idea with this is that everyday, i learn just one thing which interests me - it can be about anything, but most likely it will concern programming, computers, japanese/french or music. I will log my progress on this page in a neat little table which im going to try out some funky styling on.

Date (DDMMYYYY) Category Subject
15/09/2024 Programming Memory allocation in C; differences between malloc and calloc + realloc and free()
Check out this speed test i coded
I did get the idea to do this after watching a video about it, but i coded this myself from memory about 2 hours afterwards
16/09/2024 Programming You do not declare multiple pointer variables in C by doing
int* p1, p2
since p2 would end up being a regular int, youve got do a bit of
int *p1, *p2
the * can go anywhere as long as there is one before each variable name
Go Back To Blogs