Skip to content

Instantly share code, notes, and snippets.

View koutsie's full-sized avatar
I don't code.

koutsie koutsie

I don't code.
View GitHub Profile
@bkaradzic
bkaradzic / orthodoxc++.md
Last active August 18, 2025 19:13
Orthodox C++

Orthodox C++

What is Orthodox C++?

Orthodox C++ (sometimes referred as C+) is minimal subset of C++ that improves C, but avoids all unnecessary things from so called Modern C++. It's exactly opposite of what Modern C++ suppose to be.

Why not Modern C++?

tmpdir=tmp
if [ -d "$tmpdir" ]; then
rm -rf $tmpdir
fi
mkdir $tmpdir
height=2592
width=10
n=0
for f in *.jpg
do