20 random bookmarks

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

2026-03-31

950.

It's not your codebase

www.seangoedecke.com/not-your-codebase

Some degree of ownership over the code you write is inevitable and probably healthy. You should care about the things you build! But that doesn’t mean you have any actual ownership. The codebase you spend time on at work is the company’s codebase, and they can do whatever they want with it. You should communicate the risks and consequences of decisions, but ultimately it’s not your call.

2026-03-08

940.

Note-viewer for OSM

antonkhorev.github.io/osm-note-viewer

Смотрелка заметок для осма

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

2024-12-20

812.

Naming is Hard

www.romainguy.dev/posts/2024/naming-is-hard

We all know that naming things in programming is hard. If you’ve read this entire post it just got a little bit harder.

2024-08-10

736.

Переход в айти

grishaev.me/enter-it

2024-07-10

706.

Как не замучить пользователя плохими контролами / Илья Бирман

www.youtube.com/watch?v=KWSaJJsDvtw

В своём докладе Илья покажет, как плохие контролы могут доставлять мелкие неудобства, которые достаточно быстро доведут пользователя до белого каления. И объяснит, как делать нормальные кнопки, поля ввода, выпадайки, чекбоксы, радиокнопки, слайдеры и прочие календарики. Все тезисы проиллюстрированы примерами!

2024-06-30

697.

Yugo: the non-game by Petrit Hoxha

petrithxha.itch.io/yugo

When a player starts a session, they are the car driver, and each person that joins is seated in one of the other three passenger seats.

Players are automatically connected via voice chat.

The radios stations are real-life internet radio streams and several of them are available in the game world.

2024-06-17

685.

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

spectator.ru/entry/6699

2024-06-02

671.

Self-Hosted Applications and Alternatives

selfh.st/apps

A directory of self-hosted software and applications for easy browsing and discovery

2024-05-17

649.

How to Cut Corners and Stay Cool

www.yegor256.com/2015/01/15/how-to-cut-corners.html

When a task you're working on is too big or you simply don't want to do it, you cut corners; here is how you can do it professionally.

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

512.

Some activities are harder than others

alexschroeder.ch/view/2024-01-31-activities

from bouncepaw:

Alex tells us that, for him, baking and cooking are easier than programming and soldering, because the errors there average out. As for me, this is completely inverse.

In programming, an error never fixes itself. You can observe it and fix it, you can write tests. You can run the program multiple times. It's you who fixes it, and you can understand how it's done. It's measurable!

Meanwhile, cooking is a nightmare. Burning something is routine for me. Is that too much or too little oil? For how long do I fry? What do I do with these spices? Do they really affect the taste? And to observe something, I can't rely on symbolic things like text. No, I have to look (is this color good? No idea!), smell (as if I know the difference) and taste (nothing more inaccurate).

I'm happy when something can be cooked with a timer. 15 min for buckwheat? I'm in. I'm more happy when the time is short. 4 min for this thin kind of spaghetti? Already boiling water!

I mean, even boiling water is not simple. My parents told me to wait until the correct bubbles appear. I'm waiting for the scary ones. Also, salt is supposed to make it boil faster. How much salt do I add?

And I didn't even talk about plants, which Alex also considers easy. They're not 😭

Totally agree!

2024-01-28

504.

In Loving Memory of Square Checkbox

tonsky.me/blog/checkbox

I therefore officially announce 2024 to be the year when the square checkbox has finally died.

2023-11-09

400.

культура en masse

ambment.cat/posts/2007-5-23-2.html

Сегодня публике нужно быть впереди соседа. Увидеть Париж первым — и умереть. Важен не процесс — но атрибутика вокруг.

2023-10-26

373.

Based Cooking

based.cooking

The fast-loading recipe site with cooking only and no ads.

2023-09-30

343.

SQL

grishaev.me/sql

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

2023-08-14

287.

</> htmx - high power tools for html

htmx.org

Решение для серверсайд рендеринга

2023-07-08

230.

Simple Made Easy

www.infoq.com/presentations/Simple-Made-Easy

Рич Хикки рассказывает о различиях простоты и лёгкости в контексте проектирования и написания программ.

Говорит, что многие выбирают лёгкость, забывая про простоту. Со временем комплексность превращается во что-то такое, что сложно поддерживать и в чём сложно разобраться новичкам.

Нужно стремиться искать лёгкие способы делать простые программы.

2023-06-06

192.

LOW←TECH MAGAZINE

solar.lowtechmagazine.com

Сайт, работающий на солнечной энергии.

В зависимости от заряда страница окрашивается в жёлтый или голубой цвета.

Подробнее о работе сайта

2023-03-21

132.

Simple Icons

simpleicons.org

SVG иконки