Took this class with Prof. Sahai last semester when they redesigned the syllabus. I would recommend to anyone who wants to understand ML with some math rigor. The class notes: http://snasiriany.me/files/ml-book.pdf is excellent. The hw problems are pretty fun too
When Github enabled https for sites hosted on Github Pages, sites that were using custom domains went from redirecting https->http to giving certificate errors overnight. This happened to me. I didn't get a notification; the only way I found out what happened was by reading the Github blog. The blog post has a fix but it requires action by the site owner.
If you want to use https with github and a custom domain you need to use either Cloudflare flexible SSL or with a domain host that allows ANAME or a flattened Cname... https://kolemcrae.com/Moving-To-GitPages/
I looked into this a little further. The data is encrypted with Github's private key (thus decrypted with their public cert). I then wondered how he got a copy of Github's private key...but as it turns out, the IP does belong to Github.
In either event, definitely misconfigured, but I added an exception as it all seems legit in the end. It looks like he's just hosting his site (with his own DNS) on github's server and didn't get an ssl cert yet.
> The data is encrypted with Github's private key (thus decrypted with their public cert).
I don't think that's how it works, because then anyone could decrypt the data since the decryption key is public.
Rather, I think how asymmetric crypto works is you pass your public key to them so they can encrypt stuff with it and send it to you to decrypt with your private key. Then, to send stuff to them, you use their public key to encrypt the data for them so they can decrypt with their private key. That said, I think TLS works differently by using asymmetric crypto only to negotiate a symmetric key for the actual encryption of data.
disclaimer: i work for berkeley EECS, but have no association w/these faculty or class.
TL;DR: they probably wanted to save some money by not paying our instructional group to do the hosting, and instead are (most likely) paying github for hosting. because they're doing this themselves, it means that things like real, working SSL certs are their responsibility, and most likely were "too hard" or would take "too long" to set up properly.
thanks for sharing... It's crazy that Berkeley (such an awesome institution) has come to this... The US/CA govt's owe it to the university to increase funding.
I really have my doubts that a university as big as Berkeley has any trouble with the costs of hosting video lectures. And afaik the UC's are also already very well funded
Weird, this shouldn't happen. If you set GitHub's certificate up correctly it should work. I'm assuming they never set up HTTPS at all, but someone linked to HTTPS here anyway?
Wow, I took a CS189 course, was Wilensky’s “Artificial Intelligence”.
I have never quite followed the numbering of Berkeley courses. Whereas MIT’s numbers evoke a regular taxonomy, like Library of Congress numbering. Any ontology is eventually broken, I suppose.
In Berkeley EECS is one department and classes are numbered as levels of abstraction (that was the original idea, it kinda works but somewhat derailed). 100 to roughly 140s are EE courses; 150 is CPU design, machine design, embedded systems etc; 160s is systems (security, operating systems, compilers, networking, software engineering); 170s is theory (algorithms, theory of computation, stochastic algorithms, computational biology); 180s is ... I guess misc high-level stuff (graphics, databases, artificial intelligence, natural language processing, machine learning). So from 100 to 189 goes from lowest level (semiconductor physics) to highest level.
190s are reserved for university-wide courses like research, experimental courses, deCal (classes offered by undergrad students) etc...