Quote: "Remark things, people! I still try to make my code as efficient as possible. If I make three equations that can be compressed into one with some complex math, I do. Then I remark the hell outuvit! Haha."
I do that, minus the markings xD
If I have a diagram of an object, and say "index 1 represents this, index 2 represents this", then my code looks a bit obfuscated because of shortcuts if you take the diagram into account. Otherwise it's just like: "Why is he taking the floor(ln(some integer))???", when it's just a handy shortcut
Also... I love ternary operators.
int _=1; int __=2; int ___=3;
for(int ____=0;____<___;____++)
System.out.println(____<__?____<___?_:__:___);