20 random bookmarks

Тут будут ссылки на всё-всё, что я найду интересным

2026-06-07

980.

How I learn Clojure → Gosha Tcherednitchenko

gosha.net/2026/learning-clojure

In the debrief, BG shared some advice for actually getting good at Clojure: work through the problems on 4clojure using only the official documentation (not ClojureDocs, which include examples!) and the Clojure source code.

4Clojure is a collection of programming problems that teach you the standard library, each problem building on the one before it, kind of in the spirit of The Little Schemer. The reason to go through it looking at source code rather than examples is to force you to reason from first principles (the implementation) rather than from someone’s ideas of how code is written.

2026-03-26

946.

Modern Code Review: A Case Study at Google

dl.acm.org/doi/pdf/10.1145/3183519.3183525

2026-02-13

930.

On screwing up

www.seangoedecke.com/screwing-up

2025-01-24

829.

Постгрес и отчеты

grishaev.me/postgres-csv

2024-07-27

725.

Как наполнить базу сгенерированными джейсонами

grishaev.me/json-sql

2024-06-26

695.

Как правильно работать с убеждениями

spectator.ru/entry/6701

Вывели с клиентом универсальную «инструкцию к терапии». На случай, если кому-то это нужно. Как часто и бывает, у него была популярная мечта сначала что-то поменять в голове, а потом зажить по-новому.

2024-05-17

646.

Eight Levels of Communication Maturity

www.yegor256.com/2016/08/23/communication-maturity.html

Chats, emails, phone calls, mailing lists, issue tracking systems, face-to-face meetings, and other communication instruments for a software project.

2024-05-13

637.

Max auf dem Mond

www.old-games.ru/game/7816.html

Макс на Луне. Одна из моих любимых поинт-н-клик игр. С милой анимацией и озвучкой на нескольких языках.

Также есть и другие части, но эта мне нравится особенно.

2024-04-02

598.

Toil

garrit.xyz/posts/2024-04-01-toil?utm_source=rss

Sisyphus eventually found peace with his fate. Instead of seeing his punishment as an eternal burden, he saw it as his life's purpose. Maybe those comparatively small annoyances in our life are worth enjoying. They're part of what makes us human.

2024-03-06

547.

Dysfunctional options pattern in Go

rednafi.com/go/dysfunctional_options_pattern
package src

type config struct {
    // Required
    foo, bar string

    // Optional
    fizz, bazz int
}

// Each optional configuration attribute will have its own public method
func (c *config) WithFizz(fizz int) *config {
    c.fizz = fizz
    return c
}

func (c *config) WithBazz(bazz int) *config {
    c.bazz = bazz
    return c
}

// This only accepts the required options as params
func NewConfig(foo, bar string) *config {
    // First fill in the options with default values
    return &config{foo, bar, 10, 100}
}

func Do(c *config) {}

You’d use the API as follows:

package main

import ".../src"

func main() {
    // Initialize the struct with only the required options and then chain
    // the option methods to update the optional configuration attributes
    c := src.NewConfig("hello", "world").WithFizz(0).WithBazz(42)
    src.Do(c)
}
Reposted 546.

Task

taskfile.dev

Task is a task runner / build tool that aims to be simpler and easier to use

version: '3'

tasks:
  hello:
    cmds:
      - echo 'Hello World from Task!'
    silent: true

2023-11-28

436.

Все жертвы Сталина

www.demoscope.ru/weekly/2003/0103/analit01.php

— О чем вы подумали, впервые открыв секретный архив ГУЛАГа и узнав, что число репрессированных значительно меньше, чем считалось и говорилось?

Земсков о репрессиях

2023-11-09

399.

Pagefind

pagefind.app

Pagefind is a fully static search library that aims to perform well on large sites, while using as little of your users’ bandwidth as possible, and without hosting any infrastructure.

2023-10-03

353.

Search the text in historical maps

flowingdata.com/2023/09/28/search-the-text-in-historical-maps

2023-09-18

336.

Sunandstuff

sunandstuff.com

Ещё одна коллекция интерактивных штуковин.
Очень много разных визуализаций

2023-08-26

304.

Monorepo Explained

monorepo.tools

Everything you need to know about monorepos, and the tools to build them.

2023-08-10

282.

The World’s Writing Systems

www.worldswritingsystems.org

2023-07-01

223.

Илья Бирман — Как делается электронная музыка

youtu.be/l6ZpkS8AtFU

Илья тыкает в Эйблтон и рассказывает, из чего обычно состоит электронная музыка

2023-03-27

150.

Оверпасс турбо для чайников

telegra.ph/Overpass-turbo-dlya-chajnikov-03-26

О том, как находить места на фото с помощью Оверпасс турбо

2023-02-27

48.

Новые дорожные знаки

ilyabirman.ru/road-signs

Переосмысление дорожных знаков от Ильи Бирмана