Explore >> Select a destination


You are here

initialcommit.com
| | www.paepper.com
4.6 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.
| | martinheinz.dev
5.0 parsecs away

Travel
| | Function overloading is a common programming pattern which seems to be reserved to statically-typed, compiled languages. Yet there's an easy way to imp...
| | kishstats.com
4.3 parsecs away

Travel
| | functools is part of the Python standard library which is defined as being a "module is for higher-order functions" and that "functions that act on or return...
| | swethatanamala.github.io
14.3 parsecs away

Travel
| The authors developed a straightforward application of the Long Short-Term Memory (LSTM) architecture which can solve English to French translation.