Explore >> Select a destination


You are here

endjin.com
| | martinheinz.dev
3.8 parsecs away

Travel
| | Even if you write clear and readable code, even if you cover your code with tests, even if you are very experienced developer, weird bugs will inevitab...
| | flask.palletsprojects.com
4.1 parsecs away

Travel
| |
| | guicommits.com
4.6 parsecs away

Travel
| | I'll show you what good logging is with real-life examples. Most people don't know what to log, so they end up creating just noise.
| | www.paepper.com
47.7 parsecs away

Travel
| A note on bit-wise operations Today I read some JavaScript source code and stumbled on a line like var delta = ~~time; and I was unsure what that purpose of using ~~ was. So I started to research and digging a bit deeper. It turns out that the binary not operator (~) when applied twice on a floating number (e.g. 4.12) returns an integer (~~4.12 = 4). Why not simply use Math.