Skip to content

Instantly share code, notes, and snippets.

@xinau
xinau / kata-data-collect.md
Last active September 11, 2021 00:46
kata-data-collect.sh for priviliged containerd

Meta details

Running kata-collect-data.sh version 2.2.0 (commit ) at 2021-09-11.00:46:02.252524179+0000.


Runtime

@xinau
xinau / main.go
Created March 24, 2022 08:53
Server-Sent Events in Go
package main
import (
"context"
"fmt"
"log"
"net/http"
"time"
)
@xinau
xinau / README.md
Created November 25, 2022 23:56
bpftrace go programs

bpftrace go programs

go build -o server main.go
./server
objdump -t ./server | grep "main."
@xinau
xinau / main.go
Last active December 5, 2022 12:49
Update mtime and file name of Google Photos takeout
package main
import (
"encoding/json"
"errors"
"flag"
"fmt"
"io/fs"
"log"
"os"