Skip to content

Instantly share code, notes, and snippets.

@StephanTLavavej
StephanTLavavej / programming.md
Last active January 16, 2024 16:10
How and Why to Become a Programmer

How and Why to Become a Programmer

Audience

If you're starting your career (especially if you're in high school or college), or if you're thinking about changing your career, this is meant for you. (It's also possible to learn programming as a hobby, or as a complementary skill for a day job in a different field.)

Author

@StephanTLavavej
StephanTLavavej / videos.md
Last active January 19, 2024 03:33
C++ Videos by Stephan T. Lavavej
@StephanTLavavej
StephanTLavavej / stl_tiles.cpp
Created November 23, 2022 01:57
Solution for parquet tiles coding exercise
// Original solution by Stephan T. Lavavej
// for https://www.reddit.com/r/cpp/comments/z1xich/c_interview_coding_exercise_with_solution/
#include <algorithm>
#include <cassert>
#include <cstddef>
#include <cstdint>
#include <format>
#include <iostream>
#include <numeric>
@StephanTLavavej
StephanTLavavej / boost_ublas.cpp
Created November 23, 2022 05:53
Boost.uBLAS solution for parquet tiles coding exercise
// Boost.uBLAS solution by Stephan T. Lavavej
// for https://www.reddit.com/r/cpp/comments/z1xich/c_interview_coding_exercise_with_solution/
#include <algorithm>
#include <cassert>
#include <chrono>
#include <cstddef>
#include <cstdint>
#include <format>
#include <iostream>