nostedime.bsky.social
@nostedime.bsky.social
Diving deep into C and reinventing the wheel because it is fun ! https://github.com/dimenoste
Scenario popular for testing in coding sessions and Edtech products : unit test a function with input() and print() You need to simulate the user input and catch the output of the print of the tested function.
Benchmark your push_swap algorithm on random generated list across all possible disorder. github.com/dimenoste/pe...
For future me : Pattern sucks when combined with a coding norm. www.adamtornhill.com/Patterns%20i... User enters numbers with option as arguments of the program Program should validate the user input. Silly idea : use a state machine and implement it as a state pattern in C. Without global vars.
adamtornhill.com
A true gem for a straight to the point explainer of all the tools we need when programming with C bytes.usc.edu/cs104/wiki/
This repository consists of coding cheatsheets and tooling guides for students in 104. Our goal is for this content to be applicable not just to this class, but in professional settings as well. Please submit an issue if you have a request, suggestion, or contribution.
bytes.usc.edu
Perfect Curriculum crafting is like traveling with google map : you know what is there, you dont know what it is, you still cant talk about with someone who traveled there. Solution : embrace frustration And : codingchallenges.fyi/challenges/i...
Coding Challenges - Intro | Coding Challenges
Welcome to the Coding Challenges.
codingchallenges.fyi
Building your own printf in C goes like : - Let it be clean : if else - Let it be cleaner : dispatch table of function pointer - Just let it be : dispatch table of (void *) Choose your pain