It looks similar to the style you get from draw.io if you choose "Sketch" as the style for an object (add box -> "Style" from right sidebar -> Sketch).
Am I looking at the wrong thing or am I right to wonder why we still bother with public status pages if it never shows the real status?
Edit: nvm just saw another comment pointing out the same further down the thread (I randomly came across this page while looking for the physical location of another DC)
I rencently read a book that touches on such social simulation - "An Introduction to Multiagent systems / Michael Wooldridge".
He mentions p.214-218 such a grid like social simulation that was done in the EOS project, undertaken at the University of Essex in the UK. The goal of the EOS project was to investigate the causes of the emergence of social complexity in Upper Palaeolithic France and they were using a 10000x10000 grid.
You could also be interested in "Simulating Societies using Distributed Artificial Intelligence / Jim Doran"
I wonder what is a good hardware setup for following this kind of course and seriously play with deep learning in general (outside of an enterprise context where the enterprise would provide the hardware). What kind of budget should be considered ?
I did a lot of my learning on a GTX 1060 about 2 years ago with 16gb of RAM and an i5-6400.
The issue with machine learning is that you need enough GPU VRAM to load your dataset and then have to wait for a result being trying something else.
If you have too little VRAM, you get nothing done, but if your GPU is slow (GTX 1070 is about 2x faster than a GTX 1060) you will have to wait before learning something after trying something. The feedback loop for learning is better if you're able to iterate quickly. This is why you sometimes see GPU rigs with up to 4 GPUs that are not being used on the same task (so you can do more than 1 thing at a time)
This post[0] by Tim Dettmers should help. Reading through the article, it seems like he covers a lot of ground and lays out choices quite well. tl;dr is that only Nvidia is your best bet for local computing power, stay away from AMD & Intel for now.
Regarding YQL, I found this github repo - https://github.com/yql/yql-tables that seem to describe some of the external tables that used to be available through YQL.
"We started Asana because our co-founders experienced firsthand the growing problem of work about work. While at Facebook, they saw the coordination challenges the company faced as it scaled. Instead of spending time on work that generated results, they were spending time in status meetings and long email threads trying to figure out who was responsible for what. They recognized the pain of work about work was universal to teams that need to coordinate their work effectively to achieve their objectives. Yet there were no products in the market that adequately addressed this pain. As a result of that frustration, they were inspired to create Asana to solve this problem for the world’s teams."
I can only imagine that the complexity of the coordination inside Facebook continued to grow after Asana was created.
So is Facebook a client of Asana to solve this problem ? How does a company like Facebook handle the "coordination problem" ? Do they have one tool that solves all the issues or a myriad of project management tools ?
It is nice to see that CockroachDB's team keep their original vision of creating a long term open source "commons" of their database.
What I don't totally understand when I take my developer's hat is why the split between "enterprise" features under CCL and core features under APL/BSL is kept. Without the "enterprise" features, CRDB does not feel like beeing totally open source and open source users are sort of second-zone users.
Are open-source fans supposed to write clean-room implementations of the features (would it even make sense in the licencing model CRDB uses) ?
It would also be nice to have a licencing clause where a change of ownership of CockRoach Labs or the bailout of the company would trigger a licence change for the enterprise features (maybe even after N years).
But as I said congrats on the product and all the best in your commercial endeavour ! may this licence change open new cloud opportunities !
dgraph does try to provide horizontal scaling out of the box. The sharding is done by predicate - cf https://docs.dgraph.io/deploy/#multiple-instances for a documentation link ; I am not sure how it behaves for very frequent predicates though