play-with-docker / play-with-kubernetes.github.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RawGit CDN is dead and terminal doesn't work because of that

Kraktorist opened this issue · comments

There are a lot of opened issues about that here...

I see error 404 in my browser console when the site loads https://cdn.rawgit.com/play-with-docker/sdk/master/dist/pwd.js
I've checked a bit and found following on their main page:

RawGit is now in a sunset phase and will soon shut down. It's been a fun five years, but all things must end.
GitHub repositories that served content through RawGit within the last month will continue to be served until at least October of 2019. URLs for other repositories are no longer being served.
If you're currently using RawGit, please stop using it as soon as you can.

I don't know where to find this file to replace it in the repository to rebuild my container

This is the proper link now it seems: https://unpkg.com/pwd-sdk@0.0.12/dist/pwd.min.js
Workaround: Put a breakpoint before the usage of pwd, copy and paste the js from that site in your console and type var pwd = new PWD()
However I never managed to get past the authentication phase errors that come after

This is the proper link now it seems: unpkg.com/pwd-sdk@0.0.12/dist/pwd.min.js Workaround: Put a breakpoint before the usage of pwd, copy and paste the js from that site in your console and type var pwd = new PWD() However I never managed to get past the authentication phase errors that come after

Thanks I didn't know that we can change the values on browser debugger as well! Amazing man!