Improved Logging

No Comments

This is an improved logging technique I developed in the last couple of days. It’s not to debug an specific problem, but to get a general idea of where your bug is, and if there are no bugs, to know the stack of methods called.

It’s quite simple, but it does require some work to implement. If you have a big project, it could take some time to implement.

More

Using i++ and ++i

No Comments

Just thought I’d clear the difference of using i++ and ++i, where i is an int.

More

Efficient Buffer

No Comments

This is a “tip” on making an efficient buffer in which, after you use the first object in it, it is removed from it.

More