10 private links
Data is more important than code.
goal -> data architecture -> code
One must never change the order here!
Interesting read for the 1945-2018 period
Very good dive into how to architect your data for optimized queries using NoSQL and AWS DynamoDB.
Ran into this, and the solution here works: https://stackoverflow.com/questions/51334732/rails-5-2-0-with-ruby-2-5-1-console-warning-already-initialized-constant
I understand 1.0.2 stays installed as the default, 1.1.0 being installed too. Hence the issue.
When installed automatically, I get the warnings. Following command shows (new rails app, 2.5.1) :
gem list | grep fileutils
fileutils (1.1.0, default: 1.0.2)
Then doing:
gem uninstall fileutils
gem update fileutils --default
makes the warnings disappear. And btw, it shows:
gem list | grep fileutils
fileutils (default: 1.1.0, default: 1.0.2)
Hope it will help fixing this annoyance. Sorry I cannot be of more help, not really a wizard with those versioning topics!
This is a great resource to learn ES6, especially the core features part where it's easy to pick up on the newer syntax.
Microsoft CSS framework for components that look like MS Office
Eller's algorithm creates 'perfect' mazes, having only a single path between any two cells, one row at a time.
What kind of data structure would you use to build a text editor?
State > Coupling > Complexity > Duplication
In this very deep and incredibly detailed article, author Pavel Zemtsov is attempting to answer the question: "what is the speed that can be achieved by a single-producer, single-consumer queue?"
Interesting article on how to prevent, detect and deter cheaters in League
Solving Rush Hour, the Puzzle July 2018
How I created a database of all interesting Rush Hour configurations.
Rush Hour is a 6x6 sliding block puzzle invented by Nob Yoshigahara in the 1970s. It was first sold in the United States in 1996.
C’est beau !
Amazing history of an hardware engineer at Atari
Something I need to do before my next travel. I want to take care of my sensor though, but at this point it's unusable if I don't clean it (too much dust).
Free book on game programming patterns. Found while reading BloogBot website.