History in the making. @vay_io will be the first company to put a passenger vehicle without a driver inside on public roads in Europe 🇪🇺! Here’s a small teaser from our testing ground at #tegel, #berlin. Beginning of 2023 will be legendary! 🎉
JS Belgrade meetup is back!
After a long break, we'll meet in the @ICTHubBgd on Tuesday, November 1st, 2022, with the following topics:
- “A Multiplayer Game - but in the Browser” by @maya_ndljk
- “Front End as it Should be” by @dimi_2011meetup.com/js-belgrade-meetu…
Here's an article by @dimi_2011 that explains how to install the DynamoDB locally and use it for writing and testing your Lambda functions without/before the deployment:
medium.com/@dimi_2011/develo…
The "Software Engineering at Google" book is now free to read online: bit.ly/swe-book. Great insights on improving code quality & scaling engineering teams.
ALT Today, software engineers need to know not only how to program effectively but also how to develop proper engineering practices to make their codebase sustainable and healthy. This book emphasizes this difference between programming and software engineering.
How can software engineers manage a living codebase that evolves and responds to changing requirements and demands over the length of its life? Based on their experience at Google, software engineers Titus Winters and Hyrum Wright, along with technical writer Tom Manshreck, present a candid and insightful look at how some of the world’s leading practitioners construct and maintain software.
This book covers Google’s unique engineering culture, processes, and tools and how these aspects contribute to the effectiveness of an engineering organization.
I love seeing this diagram from @argyleink of Chrome DevRel showing how the new Viewport Units (specifically svh, lvh, dvh) will work in Chrome for Android.
These units are going to be super helpful on all mobile devices, in all the browsers.
A full free Stanford course on Web Security: stanford.io/2UHIu65 & all the videos too: bit.ly/web-se-vids by @feross
🍪 HTTP(S), Cookies, Sessions
🛡 Same Origin Policy
👿 Cross-Site Scripting (XSS)
☠️ Cross-Site Script Inclusion
🔑 WebAuthn
and more.
ALT Demo: Is cross-origin fetch allowed?
From https:/web.stanford.edu/class/cs253/:
const res = await fetch('https://axess.stanford.edu')
const data = await res.body.text()
console.log(data)
No! Would be a huge violation of Same Origin Policy.
Any site in the world could read your grades if you're logged into
Axess in another tab!