diff --git a/_11ty/scripts/weekly-links.js b/_11ty/scripts/weekly-links.js index 7c8e396..2580fea 100644 --- a/_11ty/scripts/weekly-links.js +++ b/_11ty/scripts/weekly-links.js @@ -10,7 +10,7 @@ const fs = require('fs'); const collectionId = process.env.RAINDROP_COLLECTION_ID; const token = process.env.RAINDROP_ACCESS_TOKEN; const today = new Date(); -const lastSaturday = subDays(today, 8); +const lastSaturday = subDays(today, 7); const formattedLastSaturday = format(lastSaturday, 'yyyy-MM-dd'); const formattedToday = format(today, 'yyyy-MM-dd'); const prettyToday = format(today, 'dd MMMM yyyy'); diff --git a/src/chunks/weekly-2024-02-03.md b/src/chunks/weekly-2024-02-03.md index b3ff937..ee9907e 100644 --- a/src/chunks/weekly-2024-02-03.md +++ b/src/chunks/weekly-2024-02-03.md @@ -2,7 +2,7 @@ layout: links-list.njk title: 'Weekly Links: 03 February 2024' date: 2024-02-03 -linksCount: 20 +linksCount: 12 dateUpdated: Last Modified cover: https://mefody.dev/images/weekly-links.jpg tags: @@ -12,14 +12,6 @@ tags: * [Learn SVG by drawing an arrow](https://blog.shalvah.me/posts/learn-svg-by-drawing-an-arrow) — Demonstration of SVG by constructing an arrow in HTML/JavaScript. Step by step, with Math and pictures. * [Safari 17.4 Beta Release Notes](https://developer.apple.com/documentation/safari-release-notes/safari-17_4-release-notes) — A lot of new features in CSS, forms, JavaScript, Web Components, etc. `@scope` is my favorite. * [What’s next for Dev Mode: Annotations, Compare Changes, Plugins, and More](https://www.figma.com/blog/dev-mode-ga/) — Figma moves Dev Mode out of free beta. -* [Highlight Text When a User Scrolls Down to That Piece of Text](https://frontendmasters.com/blog/highlight-text-when-a-user-scrolls-down-to-that-piece-of-text/) — Great usage of CSS Scroll-Driven Animation. By Chris Coyier. -* [12 Modern CSS One-Line Upgrades](https://moderncss.dev/12-modern-css-one-line-upgrades/) — Tiny useful code snippets by Stephanie Eckles. -* [Automated weekly links posts with raindrop.io and Eleventy](https://localghost.dev/blog/automated-weekly-links-posts-with-raindrop-io-and-eleventy/) — That's why this page exists. -* [Make some hacky noise with CSS gradients](https://nerdy.dev/hacky-css-noise-with-repeating-gradients) — Adam Argyle creates an interesting text effect. -* [Streaming HTML out of order without JavaScript](https://lamplightdev.com/blog/2024/01/10/streaming-html-out-of-order-without-javascript/) — Interesting usage of Declarative Shadow DOM for progressive rendering of a webpage. -* [New in Chrome 121](https://developer.chrome.com/blog/new-in-chrome-121?hl=en) — Speculation Rules API updates, `scrollbar-color` and `scrollbar-width`, `font-palette`, `::spelling-error` and `::grammar-error`. -* [Memoirs from the old web: IE's crazy content rating system](https://www.devever.net/~hl/pics) — By Hugo Landau. -* [Key updates in WCAG 2.2: Expert’s overview](https://spur-i-t.com/blog/key-updates-in-wcag-2-2-experts-overview/amp/) — Accessibility expert Glafira Zhur overviews the new criteria of WCAG 2.2 and finds out how it affects the accessibility landscape. * [Stop resolving the same merge conflict multiple times during merge or rebase using git rerere](https://pawelgrzybek.com/stop-resolving-the-same-merge-conflict-multiple-times-during-merge-or-rebase-using-git-rerere/) — REuse REcorded REsolution. * [A highly configurable switch component using modern CSS techniques](https://piccalil.li/blog/a-highly-configurable-switch-component-using-modern-css/) — Andy Bell builds a switch component step by step. * [CSS Scroll-triggered Animations with Style Queries](https://ryanmulligan.dev/blog/scroll-triggered-animations-style-queries/) — Ryan Mulligan is experimenting with scroll-driven animation to create an interesting text appearance effect.