Skip to content

Instantly share code, notes, and snippets.

@wulfboy-95
wulfboy-95 / code.py
Last active June 13, 2023 16:03
CircuitPython (7.x.x and above) code for a TADA-68 style keyboard with a Raspberry Pi Pico controller.
# Copyright wulfboy_95 2022, All Rights Reserved.
# Copying and distribution of this file, with or without modification,
# are permitted in any medium without royalty provided the copyright
# notice and this notice are preserved. This file is offered as-is,
# without any warranty.
import board
import keypad
import struct
@bkaradzic
bkaradzic / orthodoxc++.md
Last active June 7, 2024 01:34
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++?