de en es fr nl pl pt sv zh

notes

The Death of Rabelais by Jane Clark Scharl

Dwight

The Death of Rabelais by J. C. Scharl Wiseblood Books, 2025 Friar: Humor’s a relief! It shows the truth.Every Laugh’s a window on the void—crack jokes with me, and by them crack the world’sfacade to show the bedlam underneath!…Rabelais: Humor is no chaos, but the verydrip and flow of...

Sonnez Les Matines by Jane Clark Scharl

Dwight

Sonnez Les Matines by J. C. Scharl Wiseblood Books, 2023 Love Wisdom, say I, but not with what’s above!She’s a pretty girl, and ripe; lover herwith your body, your skin and bones, the gurgleof your gut; love her with your rutting heart.We’re all little pigs, rooting in the dirtafter...

TENET: We Live In A Twilight World

0xADADA

Christopher Nolan’s 2020 sci-fi action thriller Tenet is a heist film in which the titular organization attempts to stop the end of the world through time travel.1 Due to the sensitivity of the main characters mission, they use a call-and-response passphrase: “We live in a twilight world.” and...

A Reminder of Why I Started This Blog

Aaron Bos

In the rush of everyday life, it's easy to lose sight of your "North Star". For me and this blog, my North Star is learning. If I'm not learning, then chances are I'm not feeling energized. It's time to get back to what I have enjoyed so much with this blog over the last three years. Sharing what...

Denis Villeneuve: The Parallax Panning Shot

0xADADA

Denis Villeneuve, expert of visual storytelling, frequently employs the panning shot with an extensive use of the parallax effect to immerse viewers in his films, allowing them to experience a sense of place, scale, and depth like never before. He uses these teqniques most visibly in “Blade Runner...

Exploring CommonJS and ES Modules

Aaron Bos

I was recently working on a project involving quite a bit of JavaScript. I always knew about ES Modules and CommonJS, but I never knew much about their differences. This post is a result of my exploration of CommonJS and ES Modules to learn more about their history and use cases.

Oscar the Grouch as contemporary Diogenes the Cynic

0xADADA

Oscar the Grouch, a character from the popular children’s television show “Sesame Street,” can be seen as a modern-day embodiment of the Hellenistic philosophical tradition of Diogenes the Cynic. Like Diogenes, Oscar rejects the trappings of mainstream society and embraces a simpler, more ascetic...

Your Own Happiness: BRZ Type RA 2024 Spec

0xADADA

Throughout its history, a certain Japanese automaker has offered its customers stripped-back, homologation models ready for the track. This Subaru BRZ is a nod to those cars. In 2020 I wrote about the potential of the Subaru BRZ but its lack of a track-oriented trim level: If we want a truely...

Why We Get Fat (Lecture Notes)

Adam Faliq

This post is a summary of Gary Taubes’s lecture, “Why We Get Fat”. Observation The common explanation to obesity epidemic is that these populations practice sedentary lifestyle and consume excessive calories. However, it does not explain obesity epidemic in certain populations. These...

Fix WSL2 Connection Issue to Docker Daemon | Notes

Kumar Abhishek

Recently while setting up docker for Hyperledger in WSL2, I got the following error: ====> hyperledger/fabric-peer:2.3.2Cannot connect to the Docker daemon at tcp://localhost:2375. Is the docker daemon running? After a quick research, it turns out that if you are upgrading from WSL1 to WSL2,...

Set & persist Google DNS server in WSL2 | Notes

Kumar Abhishek

Here is how you setup an alternative DNS server (like. Google DNS) on WSL2 and persist it between WSL restart: Create the WSL config file (if it does not already exist): /etc/wsl.conf Enter the following lines to preserve the DNS config between restarts:[network] generateResolvConf = false...

Recover anything in git with 'git reflog' | Notes

Kumar Abhishek

Direct Links: gitready.com/intermediate/2009/02/09/reflog-your-safety-net To recover from almost anything in git, even if you have done a git reset --hard origin/main and lost all your last commits, use the following command: git reflog From the official documents: Reference logs, or “reflogs”,...

A Regular Expression to filter invalid names | Notes

Kumar Abhishek

A regular expression that can be used as a basic filter to detect invalid names. I use it in an Indian context. May not be useful for others. Use it with an ‘i’ RegEx flag to ignore case. Filters out spelling mistakes & gibberish entries; but not all invalid entries! Similarly useful for...

Fastest Google Fonts | Notes

Kumar Abhishek

Direct Links: csswizardry.com/2020/05/the-fastest-google-fontscss-tricks.com/how-to-load-fonts-in-a-way-that-fights-fout-and-makes-lighthouse-happy Preconnect to Google Font server. Use preload to asynchronously load the font fast on supported browsers. In the link to the main font stylesheet:...

Bandersnatch Advertising

0xADADA

Black Mirror: Bandersnatch (2018) is an interactive film in which viewers are periodically asked to make decisions for the main character Stefan Butler, the decisions then result in different scenes, and paths through the film, resulting in a branching path to a variety of endings. Think...

The BRZ Type RA Subaru Can't Build

0xADADA

The Subaru BRZ RA Racing is a Japan-only edition of the BRZ that is designed to compete in the Japanese 8Beat 86/BRZ one-make spec racing series. It comes with a factory rollcage, 4-point Takata harnesses, air-oil cooler, no trunk interior trim, no radio or sound system, unpainted door handles,...

Review - Opus by Satoshi Kon

0xADADA

★★★★★ Review of the manga “Opus” by Satoshi Kon. “Opus” is a brilliant postmodernist introspection of the challenges of writing, creativity, and the cliches of pop culture; delivered in a manga format. Author Satoshi Kon worked on this manga between 1995-1996 as it was serialized in “Comic Guy”...

Notes on Programming Phoenix for Elixir

0xADADA

A summary of my notes taken while reading Programming Phoenix. Ch.1 The layers of phoenix, the endpoint is where the HTTP connection contacts phoenix, from there it goes to the router which directs a request to the appropriate controller, passing through a series of pipelines. Pipelines chain...

JavaScript The Good Parts

0xADADA

Notes from the book: JavaScript: The Good Parts by Douglas Crockford Index JavaScript: The Good Parts Primitives Execution Flow Equality Loops / Enumeration Object Literals Arrays Delete Global Abatement Reference Reflection Functions Prototype Function Invocation Pattern Constructor Invocation...

What is Bitcoin Backed By?

0xADADA

Lets Start With What the USD is backed by The USD is no longer backed by gold1, but by a promise that the US Government will pay its debt (in the form of payment the interest on (and sometime redeem) government securities when due). If these payments are not made to the debt holders (Corporations,...

A Study of Adobe Photoshop Scrollbars

0xADADA

Take a moment to count the number of unique scrollbar widget types there are in Adobe Photoshop. You may be surprised. ”You can measure software maturity by the number of UI toolkits it implements.” I’ve counted four in Adobe Photoshop CS5.

Visual Commentary Propaganda Pastiche

0xADADA

From comic book stores to Facebook to message boards, it seems that the “Keep Calm and Carry On” poster is living a new life as pop-culture cool while people remix its’ message with both quirky or banal messages. This attempt tries to speak most directly to its underlying message of consumerism,...

VIM Cheatsheet

0xADADA

Motion, keyboard commands and shortcuts for VI Improved Legend Motion / Normal mode Insert mode Changes Yank/Put or Copy/Paste Visual/Visual Block Mode Commands Files Windows Tabs coc.nvim Denite Help Search/Replace Find Files Legend Command Keyboard Character command ⌘ control ⌃ alt...