Q&A sites and data science forums are buzzing with the same questions over and over again: I'm new to data science, what language should I learn? What's the best language for machine learning? There's an abundance of articles attempting to answer these questions, either based on personal experience or based on job offer data. Τhere's so much more activity in machine … [Read more...] about What is the Best Programming Language for Machine Learning?
Javascript
Immutability in JavaScript using Redux
In an ever growing ecosystem of rich and complicated JavaScript applications, theres more state to be managed than ever before: the current user, the list of posts loaded, etc. Any set of data that needs a history of events can be considered stateful. Managing state can be hard and error prone, but working with immutable data (rather than mutable) and certain supporting … [Read more...] about Immutability in JavaScript using Redux