ChadyWady | 1 year ago | on: AWS Code Commit Ceased Onboarding New Customers
ChadyWady's comments
ChadyWady | 1 year ago | on: AWS Code Commit Ceased Onboarding New Customers
ChadyWady | 2 years ago | on: Ask HN: Is GitHub down?
ChadyWady | 2 years ago | on: I use Nix and make(1) to develop
I'd also argue it makes your code overall less volatile. If you ever wanted to build your code outside of Nix for whatever reason (such as migrating to another reproducible packaging tool), having everything in unopinionated `make` is a whole lot easier. Plus, it leverages the advantages of a tool that is dedicated to building code.
ChadyWady | 3 years ago | on: Amazon built a new unit to fix its engineering culture
My own opinion is that the Brazil had far too many running parts. I didn't like that reproducibility required the tool interacting with 3-4 different services, and I'm much more a fan of having the source code repository act as a single source of truth for reproducibility. Plus, using Brazil meant you had to use their entire tech stack, where GitLab/GitHub beat them by far.
ChadyWady | 4 years ago | on: Dagger: a new way to build CI/CD pipelines
ChadyWady | 4 years ago | on: AWS us-east-1 outage
ChadyWady | 8 years ago | on: Houston is experiencing its third ‘500-year’ flood in 3 years
But for this case, it would still be very unlikely. For any arbitrary 3-year span, the probability of consecutively getting a "1 in 500 year" flood for 3 years is (1/500)^3. If we have N cities, then the probability of none of these cities having 3 consecutive floods is (1-(1/500)^3)^N. For even a vast overestimate such as N=20000, it is still a significantly improbable event. Of course, this doesn't account for "3 consecutive years or more within some year range" and it is a gross simplification, but I think there are probably better explanations than selection bias, such as the inaccuracy of the model or the fact that these events might be temporally dependent on each other.
ChadyWady | 8 years ago | on: Houston is experiencing its third ‘500-year’ flood in 3 years
ChadyWady | 8 years ago | on: Ask HN: What maths are critical to pursuing ML/AI?
Russell and Norvig have a good book at http://aima.cs.berkeley.edu that covers many different topics in AI, although it is definitely not comprehensive. I would say that whatever you learn in an undergraduate CS degree would give you a good starting point for learning any particular AI topics.