That really doesn’t matter. What really matter is they fixed Ranger and Paladin is no longer MAD.
HN user
lisardo
I love this project!
Apple did the breaking change from their side. I don't think DJI is to blame.
I learned this lesson the hard way.
Is there a source / blog post with rough explanation what you mean? I'm really curious.
Go Adonaac!
Brazil undertook a similar project and moved the capital from Rio de Janeiro to Brasilia in 1960. This was a big mistake. Brasilia is like giant robot very far away from the people and with no connection with society. Brasilia has the highest income per capita in Brazil and it doesn't produce anything. Rio Janeiro, the old capital, was left with no alternative and has been decaying ever since.
Great UX analysis.
This one. Zelda Breath of the Wild has the best meta review ever given to game. It's worth buying a Nintendo switch for this game alone.
annealing algorithm in the release build to reorder
This is a damn cool use of simulated annealing.
That was really instructive. Thank you for sharing.
It's missing Carlos Chagas https://en.wikipedia.org/wiki/Nobel_Prize_controversies#1921
Go Adonaac! It's nice to read about you on the internet from time to time! - Lisardo
"Dort wo man Bücher verbrennt, verbrennt man auch am Ende Menschen." - Wherever they burn books, in the end will also burn human beings. Heinrich Heine
I read this book during law school. The conclusions are nice, but the book writing is obtuse.
70-80k is salary for senior in Berlin.
It’s nice to finally see a FRP framework for iOS like React/Elm. MVC must die already.
I see Jordan Pererson gets downvoted here, but recommend all critic to read “12 rules for life” themselves. This book helped me a lot.
I use in Elm 0.19 and it works just fine. Maybe it’s some JavaScript port?
Yes, we're using in production in http://getsurance.de and it has been great.
About nested module, they are not necessary at all. Check "The life of a file" by Evan Czaplicki - create a new file if Model/Update gets too big, there is no need for upfront component partitioning.
I watched all streams listed in the comments, but I liked the most GM Jerry: https://www.twitch.tv/chessnetwork
I'm among the hacked people. I'm feeling so disappointed.
Care to explain what is Fluent Forever approach and how do I download their app?
I learned FP using Racket. It was a good experience, but the parenthesis were really annoying. It makes you feel stupid.
I believe Elm would be better choice. It would allow to get a visual result easily (html), there is a clear convention about code formatting and the compiler errors are really friendly.
This is a great insight, thank you! Do you have some source of information to dig further?
yes
I talk about my experience. I deployed Elm to production in several projects for the biggest group fitness company in the US.
It's incredible. Compiler errors are incredible. No undefined bullshit. It's purely functional, so the code you need to understand at the same time is always gonna be inside 20 lines. And you can use it with javascript if you want too.
You will learn a lot using a pure functional programming language. Programming is about transforming data, so even if I go back to any OO language I learned that state can cause several problems.
Sign up with 100 fields before seeing any content?
That is one of the most common complaints about iOS.
Unidirectional data flow greatly reduce complexity because you don't to reason about several places making changes of the state.
I'm programming Elm after 3 years of iOS and, man, it's great. The amount of code I'm reasoning about is always contained in a in single vim window. It's something that can be done in iOS, but it would require very high discipline. In Elm it came naturally.
What are the normal iOS conventions?
MVC pattern in iOS usually creates Massive View Controllers that are really hard to maintain and test.