-
https://www.python.org/dev/peps/pep-0553/ Proposal to add a
breakpoint
function similar to javascript's debugger statement. Aim to simplify the use of a debugger and also to make it more pluggable (same syntax for all the debuggers). -
http://www.b-list.org/weblog/2017/sep/05/how-python-does-unicode/ Interesting read on how Python handles unicode plus an explanation on what Unicode is
-
https://github.com/pshah123/console-logging Javascript like console logging, but with colors.
-
https://www.theguardian.com/info/developer-blog/2017/sep/04/how-not-to-break-the-guardian-website how the Guardian handles deploys without breaking the production website
-
https://www.youtube.com/playlist?list=PLOU2XLYxmsIJz-cYWfjQP8SV7n8C-PTVm Google has released all the videos of the Google Developers Days Europe event
-
https://www.fastcodesign.com/90139019/a-simple-design-flaw-makes-it-astoundingly-easy-to-hack-siri-and-alexa [...] Using a technique called the DolphinAttack, a team translated typical vocal commands into ultrasonic frequencies that are too high for the human ear to hear, but perfectly decipherable by the microphones and software powering our always-on voice assistants.
-
https://dev.twitter.com/web/overview/privacy#what-privacy-options-do-website-publishers-have This meta tag tells twitter to not track your site visitors
-
https://twitter.com/jaffathecake/status/905404171024814080 Jake Archibald shows a new (Chrome only for now) api to get information about the viewport.
-
https://github.com/mbasso/asm-dom Build your next SPA in C++
-
https://dev-blog.apollodata.com/graphql-schema-stitching-8af23354ac37 Super useful if you're dealing with more GraphQL servers. "Schema stitching is the idea that you can take two or more GraphQL schemas, and merge them into one endpoint that can pull data from all of them."