20 random bookmarks

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

2026-03-30

Reposted 948.

Why So Many Control Rooms Were Seafoam Green

bethmathews.substack.com/p/why-so-many-control-rooms-were-seafoam

The Color Theory Behind Industrial Seafoam Green

Pretty pictures! Reminds of Merveilles' seafoam green and of Soviet half-wall-tall colouring. Due to the latter, this colour also bears additional doomer connotations.

I wonder if this colour could work well in computer UIs? Does it work the same on glowing screens?

2026-03-15

942.

Avoiding Ivy League Preschool Syndrome

www.mrmoneymustache.com/2011/10/12/avoiding-ivy-league-preschool-syndrome

you don’t have to sign your kids up to do expensive things in order for them to reach their full potential

2025-11-08

910.

Страшная правда о вышиванках. К проблеме городского одичания

matveychev-oleg.livejournal.com/6088646.html

2025-11-05

909.

Earn Simplicity

ajkprojects.com/earn-simplicity

2025-10-16

Reposted 900.

It's OK to hardcode feature flags

code.mendhak.com/hardcode-feature-flags

The safest and most reliable way to deal with feature flags is to hardcode them

2025-09-29

893.

pro100! unstoppable by amokk (2004)

www.youtube.com/watch?v=MJVR_3ns-g8

2025-02-24

840.

the birth and reverb of friendship

sive.rs/brf

2024-11-13

795.

Интерактивная карта | Народы России

ethno.histography.ru

Этнографическая карта РФ. Какие народы живут в России

2024-09-25

771.

Гуманизм против «эффективного менеджмента». Почему заботиться о людях выгодно

habr.com/ru/articles/816545

2024-09-21

766.

KDE Eco – Handbook

eco.kde.org/handbook

Applying The Blue Angel Criteria To Free Software

2024-06-20

690.

Skip

skip.tools

Skip brings Swift app development to Android

2024-03-09

559.

Извини, что голосовым

podcast.ru/1493871386

Сначала было про культуру общения в Интернете, а стало про культуры общения в разных странах.

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

2023-11-18

424.

Miniflux

miniflux.app

a minimalist and opinionated feed reader.

2023-10-21

369.

Text Rendering Hates You

faultlore.com/blah/text-hates-you

Rendering text, how hard could it be? As it turns out, incredibly hard! To my knowledge, literally no system renders text “perfectly”. It’s all best-effort, although some efforts are more important than others.

2023-10-05

355.

Кофейные места

ilyabirman.ru/meanwhile/all/coffee-places

Везде речь о флетвайте. В случае сетей я указываю адреса только тех точек, в которых я был, и при этом там хорошо. Во всех местах из этого списка дают воду, если попросить. Цену указал, где помню.

2023-09-15

330.

Бюджетирование по принципу YNAB

zerro.app/about/method

Давайте разберёмся, каких принципов бюджетирования стоит придерживаться и почему.

Именно так я и веду свои финансы

2023-07-30

260.

Рациональные причины быть патриотом

rutube.ru/video/e4050737e7d79c87b020bb718dcb5cec

Идея ролика возникла после вопроса, прилетевшего в личку: а почему бы, собственно, России не проиграть СВО и не сдаться на милость каким-нибудь США? Казалось бы, ответ очевиден, но, видимо, нужно всё разжевать и разложить по полочкам.

2023-07-03

225.

A Complete Guide to Flexbox

css-tricks.com/snippets/css/a-guide-to-flexbox

2023-02-27

48.

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

ilyabirman.ru/road-signs

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