I’ve used Linux for a while now, and after ~15 years I think I’m finally happy with how I’m handling
- My login
- My environmental variables
- My daemons
| # A reverse polish calculator for the dozenal system | |
| def dozToDec(doz): | |
| dozenal = None | |
| if '.' in doz: | |
| doz, dozenal = doz.split('.') | |
| sum = 0 | |
| for i in range(len(doz)): | |
| addition = DOZ_DIGITS.index(doz[len(doz) - i - 1]) | |
| for _ in range(i): |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <math.h> | |
| typedef struct Point Point; | |
| struct Point { | |
| float x; | |
| float y; | |
| }; |
| [ | |
| { | |
| "backcolor": "", | |
| "name": "MiniDox - RSI Terminated", | |
| "author": "Timeo Pochin", | |
| "switchMount": "cherry", | |
| "pcb": false | |
| }, | |
| [ | |
| { |