Sudoku
Today is about a little pet work I did some years ago. In short is about a Sudoku generator I did in Javascript. The interest in »
Today is about a little pet work I did some years ago. In short is about a Sudoku generator I did in Javascript. The interest in »
Today I'll just reflect a bit about the next little piece of code public static boolean isPowerOfTwo(int value){ return ((value & -value) == value) } The previous »
Lately I've been keen to learn a new language. This time a native compiled language. Some time ago I look into the Go programming language. I »
I read recently an article about a bitcoin problem that I was trying to understand since the first time that I read the article on bitcoin »
On this second day of Io language tutorials the first exercise is a classic First question A Fibonacci sequence starts with two 1s. Each subsequent number »