20 random bookmarks

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

2026-06-20

988.

Mediocrity is Death of the Soul - The Universe of Joshua Blais

joshblais.com/blog/mediocrity-is-death-of-the-soul

2026-03-30

949.

Pure and impure software engineering

www.seangoedecke.com/pure-and-impure-engineering

2025-12-27

921.

You don't have to wait for a high income to have kids

juliawise.net/you-dont-have-to-wait-for-a-high-income-to-have-kids

Case study: it's possible to live on one income, and to raise kids in shared housing.

2025-11-13

912.

An `https` echo Docker container for web debugging

code.mendhak.com/docker-http-https-echo

2025-06-22

875.

remove(42) vs. find(42).remove()

www.yegor256.com/2025/06/22/retrieve-or-remove.html

2025-05-31

867.

Возможности JSON_TABLE

grishaev.me/huge-sql-2

2025-01-26

830.

Доступность жилья в городах, городских агломерациях и регионах России

www.urbaneconomics.ru/sites/default/files/dostupnost_zhilya_v_rossii_2024.pdf

2024-11-15

Reposted 796.

Don't Do This - PostgreSQL wiki

wiki.postgresql.org/wiki/Don't_Do_This

2024-10-06

780.

Баки

grishaev.me/bucks

2024-09-26

772.

Artifacts: Image + Link Organizer app for macOS/iOS

artifacts.app

Artifacts is an image + link organizer app for macOS and iOS. A
completely native, local first way to save all that stuff you find
across the web.

2024-09-04

756.

Narcissism is a N-word

spectator.ru/entry/6656

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-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)
}

2024-03-05

543.

Wrapping Errors in Go - How to Handle Nested Errors

blog.boot.dev/golang/wrapping-errors-in-go-how-to-handle-nested-errors

By wrapping errors and building well-formatted error messages, we can keep better track of where errors are happening. I often just add the name of the function being called to my error messages, but we can make the message say whatever we want. For example, I’ll often include parameter information in the error so I know which inputs caused the error.

2024-01-16

494.

IMCDb.org: Internet Movie Cars Database

www.imcdb.org

The most complete list on the web about cars, bikes, trucks and other vehicles seen in movies and series, image captures and information about them.

2023-11-13

407.

To listen well, get curious

www.benkuhn.net/listen

When I’ve listened the most effectively to people, it’s because I was intensely curious—I was trying to build a detailed, precise understanding of what was going on in their head.

2023-08-28

308.

oimo.io

oimo.io

Коллекция интерактивных штуковин. Очень красивое

2023-08-07

279.

Elements of C Style

www.teamten.com/lawrence/style

Заметки о том, как писать и оформлять код на Си

2023-07-30

259.

Легко ли посадить невиновного в России?

rutube.ru/video/2745c5507e8452566d9eaa6116cff711

Kак работает правосудие в России: легко ли сфабриковать уголовное дело против невиновного человека, почему в России мало оправдательных приговоров, и что на самом деле не так с «палочной» системой полиции.

2023-07-26

252.

Introduction to Compilers and Language Design

www3.nd.edu/~dthain/compilerbook/compilerbook.pdf