N
Install Tor Snowflake on the Raspberry Pi with DietPi.

Notice

I got made aware that this setup is now deprecated. You can simply follow these instructions here: https://community.torproject.org/de/relay/setup/snowflake/standalone/debian/. (Debian 12 - bookworm is required!)

This is a guide for installing Tor Snowflake on your Raspberry Pi as systemd service.

Tor Snowflake: "Allows people from anywhere in the world to access…

Read more →
A Stack Data Structure

Asked to implement a stack in Go. Here's a generic, thread-safe, interface-driven implementation with proper error handling. package main import ( "errors" "fmt" "sync" ) // ErrStackEmpty is returned when attempting to pop or peek an empty stack. var ErrStackEmpty = errors.New("stack: operation on empty stack") // Stacker defines the contract for any stack-like data...

Read more →
Recursive GitHub Contribution Graph ASCII Art Generator with Configurable Sentiment Analysis

A developer wants to generate ASCII art representations of their GitHub contribution graph, but only for commits that match a specific emotional tone. The task requires fetching contribution data, analyzing commit messages for sentiment, and rendering the results as customizable block characters. package main import ( "fmt" "strings" "time" ) // ContributionIntensity represents the emotional...

Read more →
A
The Chemical Brothers lança playlist após crescimento de “Go” nas plataformas digitais

O duo britânico The Chemical Brothers lançou a playlist oficial “Go: Apex And Beyond”, uma seleção de músicas criada para apresentar diferentes fases da trajetória da dupla a novos ouvintes. A iniciativa foi anunciada após o aumento da popularidade de “Go”, faixa originalmente lançada em 2015. Segundo informações divulgadas pelo grupo, a música registrou crescimento […]

Build a Self-Aware Code Comment Validator That Detects Lies in Documentation

A developer wants to build a tool that analyzes Go source code and flags comments that contradict what the code actually does. The tool should parse functions, extract their comments, and use a scoring system to determine if the documented behavior matches reality. package main import ( "fmt" "go/ast" "go/parser" "go/token" "regexp" "strings" ) //...

Read more →

Rust is a systems programming language focused on memory safety without a garbage collector, achieved through a compile-time ownership model. It produces native binaries with C-like performance and zero-cost abstractions, while preventing entire classes of bugs (use-after-free, data races) at the type level.

Core ideas

  • Ownership and borrowing. Each value has one owner; references are…
Absurd In Production

About five months ago I wrote about Absurd, a durable execution system we built for our own use at Earendil, sitting entirely on top of Postgres and Postgres alone. The pitch was simple: you don’t need a separate service, a compiler plugin, or an entire runtime to get durable workflows. You need a SQL file and a thin SDK.

Since then we’ve been running it in production, and I figured it’s worth…

Read more →
Page 1 Older →