20 random bookmarks

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

2026-01-17

924.

You can't design software you don't work on

www.seangoedecke.com/you-cant-design-software-you-dont-work-on

2025-10-13

898.

Омнигрант

ambment.cat/posts/2025-10-9-1.html

2025-02-28

841.

Bayes is not a phase

dynomight.net/bayes

2025-02-14

Reposted 838.

PostgREST Documentation

docs.postgrest.org/en/v12/index.html

PostgREST is a standalone web server that turns your PostgreSQL database directly into a RESTful API. The structural constraints and permissions in the database determine the API endpoints and operations.

Sounds like a way to write less code. I skimmed through the reference, looks cool. PostgREST is written in Haskell for some reason though.

2025-02-12

836.

Profiling Go programs with pprof

jvns.ca/blog/2017/09/24/profiling-go-with-pprof

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-11-28

Reposted 802.

викторианское счастье

ladykosha.ru/happiness/20210604111919-викторианское_счастье.html

2024-07-17

714.

Как разработчику вкатываться в новые проекты

strizhechenko.github.io/2024/07/12/how-to-dig-into-a-project.html
709.

Are You a Micromanager?

www.yegor256.com/2015/09/22/micromanagement.html

Everyone knows micromanagement is evil, but very few understand what exactly it is and what's a better alternative.

2024-05-18

660.

I can't speak

www.yegor256.com/2024/01/03/not-able-to-speak.html

То, что западноевропейским ученым запрещают выступать на конференциях в России безусловно огорчает, но более всего настораживает их на это реакция.

2024-05-17

642.

How to Be Lazy and Stay Calm

www.yegor256.com/2018/04/17/how-to-be-lazy.html

Solving technical problems in a large scope which is difficult to understand is a very stressful activity; I suggest we behave 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-01-27

503.

Изображая ответственность

grishaev.me/pseudo-resp

Казалось бы, программисты — люди с точным мышлением, а в жизни все наоборот: в голове кисель.

Для меня выход из ситуации простой: трусы или крестик. Либо ты выходишь из разработки со словами: хорош, я в этом не участвую. Либо пишешь качественный код, понимая, что мир огромен, и у тебя нет возможности контролировать, кто и как его использует. Оба варианта честные и снимают все вопросы.

2024-01-19

498.

Как правильно выбрасывать мусор и что с ним происходит дальше?

www.youtube.com/watch?v=2lK8CloWbC0

Раскадровка сняла видео про мусор и переработку!

2023-11-19

427.

Gripes With Go

peppe.rs/posts/gripes_with_go

2023-11-18

424.

Miniflux

miniflux.app

a minimalist and opinionated feed reader.

2023-09-02

312.

Пенсия: как она появилась и почему у вас её не будет

www.youtube.com/watch?v=icXfb5xEiy8

2023-08-28

308.

oimo.io

oimo.io

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

2023-06-13

207.

Myinstants

www.myinstants.com

The largest instant sound buttons website in Russian Federation!

2023-06-06

191.

Can We Make Bicycles Sustainable Again?

solar.lowtechmagazine.com/2023/02/can-we-make-bicycles-sustainable-again

Cycling is the most sustainable form of transportation, but the bicycle is becoming increasingly damaging to the environment. The energy and material used for its production go up while its life expectancy decreases.