Skip to content

Instantly share code, notes, and snippets.

View loderunner's full-sized avatar
👨‍💻
𝚌𝚘𝚍𝚎 𝚕𝚒𝚏𝚎

Charles Francoise loderunner

👨‍💻
𝚌𝚘𝚍𝚎 𝚕𝚒𝚏𝚎
View GitHub Profile

Summary of the Amazon DynamoDB Service Disruption in Northern Virginia (US-EAST-1) Region

Overview

We wanted to provide you with some additional information about the service disruption that occurred in the N. Virginia (us-east-1) Region on October 19 and 20, 2025.

While the event started at 11:48 PM PDT on October 19 and ended at 2:20 PM PDT on October 20, there were three distinct periods of impact to customer applications.

First, between 11:48 PM on October 19 and 2:40 AM on October 20, Amazon DynamoDB experienced increased API error rates in the N. Virginia (us-east-1) Region.

@loderunner
loderunner / client.go
Last active September 20, 2024 09:16
Websocket with Gin in Go
package main
import (
"fmt"
"math/rand"
"net/http"
"time"
"github.com/gorilla/websocket"
)
@loderunner
loderunner / quiche-aux-epinards.md
Created March 13, 2024 16:37
Quiche aux épinards

Quiche aux épinards

Ingrédients

  • 300g épinards hachés surgelés
  • 3 oeufs
  • 30 cl de crème fraîche
  • 100g de comté râpé
  • sel
  • poivre

2023-09-12 — AG des parents

Infos de rentrée

L'école

  • Cécile et Anna - institutrices du groupe CM1-CM1 cette année
  • Il y aura un conseil d'école avec les professeurs de la ville de Paris (sports, arts plastiques, etc.)
    • Pas présents à cette AG informelle
  • Convention avec l'Education Nationale pour ne pas avoir de directeur
@loderunner
loderunner / dns-resolve.js
Last active September 4, 2023 14:34
Node dns.resolve issue
const dns = require("node:dns/promises");
const os = require("node:os");
const process = require("node:process");
function log(s) {
console.log(`${new Date().toISOString().slice(11, -1)} - ${s}`);
}
let interfaces;
export class Client {
doTheThing(message: string, count: number): boolean { /* ... */ }
}

Fondue de poireaux

Ingrédients

  • 300g de blancs de poireaux
  • 25 cl de crème fraîche
  • 1 tbsp moutarde à l'ancienne
  • 1 tsp cumin en poudre
  • 1 tsp coriandre moulue
  • sel + poivre

Dahl de lentilles corail

Ingrédients

Lentilles

  • 1 cup de lentilles corail
  • 2 cups d'eau
  • 1 cup de lait de coco
  • 1 cube de bouillon (ou 1 tbsp)

Human-readable text

We were somewhere around Barstow on the edge of the desert when the drugs began to take hold. I remember saying something like "I feel a bit lightheaded; maybe you should drive...." And suddenly there was a terrible roar all around us and the sky was full of what looked like huge bats, all swooping and screeching and diving around the car, which was going about a hundred miles an hour with the top down to Las Vegas.

Variable-spaced font. Words are wrapped to page.

Computer-readable text

HTTP/1.1 200 OK
interface Reader {
read(): Promise<Buffer>;
}
class FileReader implements Reader {
private path: string;
constructor(path: string) {
this.path = path;
}