- DORA metrics - The predictive link between DevOps practice and business outcomes
- DORA Research: 2024
- Highlights from the 2024 DORA State of DevOps Report
- What is the SPACE framework and when should you use it?
- The SPACE of Developer Productivity
- How I use a metrics tree to align, prioritize, and track progress
- How to Calculate Technical Debt: 5 Methods Compared
- Technical Debt: How to Calculate What Your Legacy Code Really Costs
- [Engineering metrics leaders should track in 2026 (and what to do with them)](https://www.swarmia.com/blog/engi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const a = [], b = []; | |
| pairs.split('\n').forEach(line => { | |
| const x = line.split(' '); | |
| const [left, right] = [+x[0], +x[1]]; | |
| a.push(left); | |
| b.push(right); | |
| }) | |
| a.sort((a,b) => a-b); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const audios = document.querySelectorAll('audio'); | |
| const tracks = [...audios].map((audio, i) => { | |
| const article = audio.parentNode; | |
| const title = article.querySelector('h2 a'); | |
| const img = article.querySelector('img'); | |
| return { | |
| pos: i, | |
| audio: audio, | |
| metadata: { |
date: 2020-04-27 title: 'TODO' language: ru hosts:
- Вадим Макеев
- Никита Дубко
- Ольга Алексашенко chapters:
- time: 00:00:00
- Essential Image Optimization — Addy Osmani
- Image Optimization — Ilya Grigorik
- The Contrast Swap Technique: Improved Image Performance with CSS Filters — Una Kravets
- Compressive Images Revisited — Tim Kadlec
- w descriptors and sizes: Under the hood — Eric Portis
- Lazy Loading Images and Video — Jeremy Wagner
- How WebP Increases Your Web Performance — Dieter Petereit
- [Lazy Loading Images for Performance Using Intersection
- play.csssecrets.io/inner-rounding — sqrt
- play.csssecrets.io/diamond-images — sqrt
- play.csssecrets.io/bevel-corners — sqrt
- play.csssecrets.io/folded-corner — sqrt
- play.csssecrets.io/folded-corner-realistic — sqrt, sin, cos
sqrt(2) == cos(45deg) * 2
NewerOlder