Weekly Shaarli

All links of one week in a single page.

Week 04 (January 23, 2023)

You should take more screenshots – alexwlchan

I agree. Every screenshot I took is a snapshot of memory of what I was currently doing on my computer.

Minimal cross-platform graphics

Minimal demo on how to do graphics for X11, macOS and Windows:

  • pop up a window
  • handle basic events
  • draw on the surface
  • play a sound
  • port doom onto it
The Page With No Code – Dan Q

How do you make a webpage without any source code?

  1. Return "Content-Type: text/html" with empty content. This is tantamount to a bare webpage "<html><body></></>"
  2. Fill the page's content with the "::before/after{content: xxx}" CSS
  3. Place the inlined stylesheet in the link header

I learned it's possible to inject CSS via HTTP header: https://danq.me/2020/12/21/http-link-css-injection/