Comedian Demetri Martin does a bit about the phrase “sort of”. He says:
“Sort of’ is such a harmless thing to say… sort of. It’s just a filler. Sort of… it doesn’t really mean anything. But after certain things, sort of means everything. Like… after “I love you”… or “You’re going to live.”
SCADboard is an OpenSCAD library that lets you create 3D printable circuit boards…sort of. The library lays out like a breadboard with two bus bars on each side and a grid of rows and columns. OpenSCAD modules provide a way to create a board, ICs, LEDs, wires and other fundamental components. You set a few initial variables (like the board thickness) then your code looks like this:
wire(1,bln,1,e, neg); // Neg left trace to LED led(1,e+1, 1,e+2, yellowled); // LED wire(1,f, 1,i, pos); // LED Pos wire(1,j, 1,brp, resistor); // Resistor wire(3,c,3,h, pos); // Cap Pos wire(4,c,4,h, neg); // LED Resistor






