— Brian Moeskau (@bmoeskau)
— Ted Patrick (@__ted__)
— Ryan Vice (vicesoftware.com)
Expedia is always hiring! expediajobs.com
The open-source JavaScript runtime for the modern web.
Deno is designed to fix Node's shortcomings:
It's also Node.js-compatible
Released Aug 22, 2024
1.46 is the last 1.x release and includes:
deno compile
deno serve
Plus, the standard library is now stable
Released Sept 19, 2024
window
and process
So now's a great time to check it out!
MDN | Newly available since Firefox 130
Easily implement accordions via the name
attribute
name
specifies group name
<details name="my-accordion">
<summary>Section 1</summary>
Section 1 info here.
</details>
<details name="my-accordion">
<summary>Section 2</summary>
Section 2 info here.
</details>
MDN | Newly available since Safari 18
Apply effects like blur or color shift behind an element
backdrop-filter: blur(2px);
backdrop-filter: brightness(60%);
backdrop-filter: contrast(40%);
backdrop-filter: blur(4px) saturate(150%) invert(70%);
MDN | Newly available since Safari 18
Canvas optimization hint to skip hardware acceleration
const img = canvas.getContext("2d", {
willReadFrequently: true
});
MDN | Newly available since Safari 18
Defers layout/paint of an element's subtree until requested
<style>
.some-container {
content-visibility: hidden;
}
</style>
Deep dive for more info
Aka "Release notes for the web"
Website maintained by the WebDX Community Group
Published Sep 5
Laravel is "the PHP framework for Web Artisans"
Related: PHP is the new JavaScript
Published Sep 26
Researchers could access millions of vehicles remotely
Don't own a Kia? Similar issues found for Honda, Toyota, Infiniti, Nissan, Acura, Mercedes-Benz, Hyundai, Genesis, BMW, Rolls Royce, and Ferrari
October 3rd
24 hour marathon of talks from the teams innovating in the Vite Ecosystem!
Free and virtual, excellent speaker list
Highly recommended for all web devs!October 8–9th
Explore the critical intersection of AI and application security
Free and virtual, hosted by Snyk
Recommended for devs focused on AI and securityOctober 24th
Explore the latest trends in modern JS and TS development
October 24th
Learn to build the best apps on the web (mostly with Next.js)
In person in SF for $500, or free online
→ Register
Recommended for React devsA typeface inspired by typewriters, ASCII art and CLIs
A typeface inspired by 80s/90s GUIs and Sci-Fi
New in Safari 18
See the Pen Pure css tic tac toe AI by lee (@leemeyer) on CodePen.
Learn how (and why?) this was done
Brian Moeskau