Explore >> Select a destination


You are here

rdrr.io
| | xnacly.me
8.8 parsecs away

Travel
| | Interacting with the Go runtime with c++ (or c, i think)
| | thinkingeek.com
9.3 parsecs away

Travel
| | A common task in imperative programming languages is writing a loop. A loop that can terminate requires a way to check the terminating condition and a way to repeatedly execute some part of the code. These two mechanisms exists in many forms: from the crudest approach of using an if and a goto (that must jump backwards in the code) to higher-level structured constructs like for and while ending in very high-level constructs built around higher-order functions in for_each-like constructs and more recently...
| | www.paepper.com
9.3 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.
| | ujjwalkarn.me
18.8 parsecs away

Travel
| An Artificial Neural Network (ANN) is acomputational modelthat is inspired by the way biological neuralnetworks inthe human brain process information. Artificial Neural Networks have generated a lot ofexcitement in Machine Learning research and industry, thanks to many breakthrough results in speech recognition, computer vision and text processing. In this blog post we will try to...