20 random bookmarks

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

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

2026-02-08

929.

Как сделать программиста счастливее

habr.com/ru/articles/994056

2025-12-26

920.

Omarchy

omarchy.org

Beautiful, Modern & Opinionated Linux by DHH

2025-12-14

917.

The Do-Say Ratio

asnewman.github.io/do-say-ratio

2025-09-29

893.

pro100! unstoppable by amokk (2004)

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

2025-01-12

822.

Краткая ежемесячная информация об исполнении консолидированного бюджета Российской Федерации и государственных внебюджетных фондов (млрд. руб., накоплено с начала года)

minfin.gov.ru/ru/document?id_4=93447-informatsiya_ob_ispolnenii_konsolidirovannogo_byudzheta_rossiiskoi_federatsii

2024-12-02

804.

Зачем спринты?

grishaev.me/why-sprints

2024-09-25

770.

What is io_uring?

matklad.github.io/2024/09/32/-what-is-io-uring.html

2024-08-28

748.

Сколько стоит эффективность терапии

spectator.ru/entry/6709

2024-07-04

702.

Conventional Commits

www.conventionalcommits.org/en/v1.0.0

A specification for adding human and machine readable meaning to commit messages

2024-06-11

678.

What is love

spectator.ru/entry/6574

2024-05-02

618.

Uiua

www.uiua.org

Uiua (wee-wuh) is a general purpose, stack-based, array-oriented programming language with a focus on simplicity, beauty, and tacit code

617.

Сортировка мусора

strizhechenko.github.io/2024/05/02/rubbish.html

Так уж случилось, что мы с женой занимаемся сортировкой мусора. Инициатива её, я выступаю скорее противовесом. Начинали с радикализма и это было неудобно. Сейчас быт чуть более обустроен, стало гораздо лучше.

2024-03-30

Reposted 595.

Первое правило пропаганды

maximilyahov.ru/blog/all/propaganda-2

Главное правило пропаганды — посыл должен быть простым. Если хочешь, чтобы твоя вера распространялась, нужно упаковать ее в короткое и броское сообщение — мем. Чем он проще и тупее, тем ему легче распространяться. Если мем в рифму — еще лучше.

Мем дожен быть безапелляционным, без деталей, однозначным и не вызывающим сомнений. В идеале — чтобы он касался каких-то человеческих грехов — например, гордыни, алчности или гнева. Это сейчас самые социально одобряемые грехи.

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-04

542.

RemPlanner — планировщик квартиры

remplanner.ru

Пишут

довольно годная web-based рисовалка мышкой помещений, планировок итд . Справился даже такой дебил как я. Набор компонентов не суперобширный, но для примерного понимания где розетки, где выключатели, где батареи - вполне неплохо.

Единственный минус (или я просто не понял) - не нашёл режима просмотра в 2D как всё накладывается друг на друга. Только при ревью в 3D заметил что у меня розетка прямо на воротах, другие две розетки спрятаны за конвектором, а один из светильников смонтирован прямо на стекло окна.

За 500 рублей на месяц - вполне неплохое решение для того чтобы быстренько нарисовать спальную, кабинет или гараж. Дают нарисовать пять проектов. На выходе - PDF-альбом на 10-12 листов с планами, размерами итд, в целом похожие на те, что делают полноценные дизайн-студии.

2024-02-18

524.

Strategy pattern in Go

rednafi.com/go/strategy_pattern

2023-11-15

416.

Partial Objects in ORMs: loading a subset of properties

use-the-index-luke.com/sql/join/hash-join-partial-objects

Index the independent where predicates to improve hash join performance.

Indexing join predicates doesn’t improve hash join performance.

Indexing a hash join is independent of the join order.

Select fewer columns to improve hash join performance.

Hash joins do not need indexes on the join predicates. They use the hash table instead.
A hash join uses indexes only if the index supports the independent predicates.
Reduce the hash table size to improve performance; either horizontally (less rows) or vertically (less columns).
Hash joins cannot perform joins that have range conditions in the join predicates.

2023-10-06

Reposted 356.

The invisible problem

jenson.org/text

Whenever I explain my research at Google into mobile text editing, I’m usually met with blank stares or a slightly hostile “Everyone can edit text on their phones, right? What’s the problem?”

2023-07-08

229.

Красные ночные палитры интерфейсов

protraktor.design/ru/2023/07/05/red-night-palettes

repost from bouncepaw:
Если делать дизайн только из красного света, то глаза не будут терять ночное видение, потому что ночные палочки не замечают красный свет. Так-то толку от этого мало, но в некоторых случаях супер-полезно. Например, морякам и астрономам.