20 random bookmarks

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

2026-08-07

Reposted 1002.

Gleam programming language

gleam.run

Discover a friendly language for scalable, type-safe systems. Gleam comes with compiler, build tool, formatter, editor integrations, and package manager all built in.

BEAM, cute understandable syntax

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-01-24

829.

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

grishaev.me/postgres-csv

2024-09-25

769.

The Watermelon Operator

matklad.github.io/2024/09/24/watermelon-operator.html

2024-06-17

685.

Банальность в терапии

spectator.ru/entry/6699

2024-06-15

684.

Гинеколог Оксана Богдашевская о здоровье матери

www.youtube.com/watch?v=517_8Jy4FqM

Максим Ильяхов разговаривает с гинекологом

2024-05-17

657.

Hourly Pay Is Modern Slavery

www.yegor256.com/2015/07/21/hourly-pay-modern-slavery.html

Paying by the hour is a modern form of slavery that must be replaced by paying for results, which is a much more effective and healthy form of management.

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

540.

The Blessing of Interactive Development

tonsky.me/blog/interactive-development

In this post I describe a couple of practice that makes the process of writing code faster, more predictable and straightforward

2024-02-01

Reposted 513.

2020-12-12 Computer Competency

alexschroeder.ch/view/2020-12-12_Computer_Competency

Few people know how to use computers.

2023-11-16

420.

The right column order in multi-column indexes

use-the-index-luke.com/sql/where-clause/the-equals-operator/concatenated-keys

The most important consideration when defining a concatenated index is how to choose the column order so it can be used as often as possible.

Например, поиск по имени без фамилии бесполезен. Значит, составной индекс должен начинаться с фамилии, а потом уже будет имя.

2023-11-14

413.

My Summer Car глазами новичка в 2023 году | Симулятор бати

www.youtube.com/watch?v=cBvsHHIqAcg

Офигенно

2023-11-03

389.

Ancient Earth

dinosaurpictures.org/ancient-earth

Earth looked very different long ago. Search for addresses across 750 million years of Earth's history.

2023-10-02

Reposted 347.

Локализация шрифта Брайля

bolknote.ru/all/lokalizaciya-shrifta-braylya

В лифте написано УП вместо ВВЕРХ.

2023-09-30

343.

SQL

grishaev.me/sql

Представьте, какой гемор был бы построить это в Экселе, Гугле или даже на языке программирования вроде Питона. Там с одним только парсингом дат и времени наешься, а тут все из коробки.

2023-09-16

334.

Plain Text • Dylan Beattie • GOTO 2023

youtube.com/watch?v=4mRxIgu9R70

Выступление про текст, кодировки, шрифты, эмодзи, лигатуры, диакритику итп.

Хорошее

2023-09-02

311.

Ventoy

www.ventoy.net/en/index.html

Утилита для создания загрузочной флешки сразу с несколькими образами

2023-08-01

264.

Workspaces

www.workspaces.xyz

Коллекция рабочих мест

2023-03-21

132.

Simple Icons

simpleicons.org

SVG иконки

2023-03-20

131.

I’ve been employed in tech for years, but I’ve almost never worked

pub.phreedom.club/~kornilovnet/glog/20230318-article.gmi

О том, что люди получают много денег на технических должностях, но не работают и не учатся новому. Из-за большой зарплаты трудно сменить работу, потому что многим важна стабильность. Получается замкнутый круг.

Оригинал