Daily Shaarli

All links of one day in a single page.

July 10, 2022

FilterLists | Subscriptions for uBlock Origin, Adblock Plus, AdGuard, ...

An enormous ad-blocking list!

Blog Stéphane Bortzmeyer: RFC 9111: HTTP Caching

Voir eTag, Cache-Control, Expires, max-age, Last-Modified pour gérer le cache d'une requête HTTP.
Le billet de blog détaille comment sont gérés les ressources du cache, avec le serveur.

COLRv1 and CSS font-palette | CSS-Tricks - CSS-Tricks

Check for font-palette and @font-palette-values.

Only usable in Chrome and Safari for now :(

CSS Grid Generator

Generate a CSS grid easily

CSS { In Real Life } | Breaking Out of a Central Wrapper
.full-width {
  width: 100vw;
  margin-left: 50%;
  transform: translate3d(-50%, 0, 0);
}

Or a responsive approach with CSS grid:

.wrapper {
  display: grid;
  grid-template-columns:
    [full-start] 1fr [wrapper-start]
    minmax(0, 70rem) [wrapper-end] 1fr [full-end];

  /* Optional gap */
  column-gap: var(--pad, 1rem);
}

Then

.wrapper > * {
  grid-column: wrapper;
}

.wrapper > .full-width {
  grid-column: full;
}
Discourses of climate delay | Global Sustainability | Cambridge Core

In the fig. 1, we get 4 categories of discourses of climate delay:

  • redirect responsibility
  • push non-transformative solutions
  • emphasize the downsides
  • surrender

examples are provided for each category

My Wonderful HTML Email Workflow, using MJML and MDX for responsive emails

Build a responsive email framework with MJML and its component and templates.

Use mdx and customize its parser to generate MJML output instead of raw HTML.

Use an Email Service Provider to send email

chiselstrike/chiselstrike: Build full-stack from prototype to production.

Built with Rust and use the deno runtime.

Chiselstrike handles everything in the backend :) Can be tested someday

massCode - A free and open source code snippets manager for developers