20 random bookmarks

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

2026-08-13

1005.

компьютерная комедия, которую не воссоздать

www.youtube.com/watch?v=uZf2wS8U84k

Хоттабыч

2026-07-12

998.

I Did Not Kill Stanley Lieber: How to draw (with 9front)

triapul.cz/automa/i_did_not_kill_stanley_lieber

2026-07-06

992.

Учебник Clojure

nweb42.com/books/clojure

2026-05-20

Reposted 971.

Prolog Basics Explained with Pokémon

unplannedobsolescence.com/blog/prolog-basics-pokemon

Demonstrating the basics of logic programming with data from the Pokémon games.

2026-03-08

Reposted 939.

StreetComplete

streetcomplete.app

OpenStreetMap surveyor app

2025-09-04

889.

Выбор времени

олег.кряхтит.онлайн/share/timepicker.html

2025-06-24

878.

Every service should have a killswitch

www.seangoedecke.com/killswitches

The more time you spend designing systems, the more paranoid you get about things going wrong

2025-04-08

848.

Triangular bandage

rabbitwaves.ca/site/triangular_bandage.html

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.

2024-09-04

756.

Narcissism is a N-word

spectator.ru/entry/6656

2024-08-17

741.

Не было времени

grishaev.me/no-time

2024-04-11

604.

How I write tests in Go

blog.verygoodsoftwarenotvirus.ru/posts/testing-in-go

In many other languages, you have to not only evaluate testing libraries, but also write your tests in a style that complies with that library’s expectations. Gophers are blessed to have a thoroughly adequate solution out-of-the-box, and even further blessed to have an active ecosystem where folks are making in-depth testing a walk in the park.

2024-03-09

557.

Кристина, добрый день!

podcast.ru/1450093548

Кристина общается с другими подкастерами, раскрывая внутреннюю кухню.

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

531.

Часовые пояса и календарь в распределённой команде

ilyabirman.ru/meanwhile/all/timezones-and-calendar

Время от времени читаю, что люди страдают из-за разных часовых поясов в команде и с клиентами, путаются во встречах и вообще не понимают, как вести календарь.

Учу. Включите поддержку часовых поясов в календаре, если вдруг вы этого почему-то не сделали.

2024-02-06

518.

Sage advice for a calmer, more fulfilling digital life | datagubbe.se

www.datagubbe.se/sage

2023-10-05

355.

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

ilyabirman.ru/meanwhile/all/coffee-places

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

2023-09-17

335.

Ableist interactions

hidde.blog/interactions-about-accessibility

2023-05-20

184.

Как складывать одежду

www.youtube.com/watch?v=IjkmqbJTLBM

2023-03-27

150.

Оверпасс турбо для чайников

telegra.ph/Overpass-turbo-dlya-chajnikov-03-26

О том, как находить места на фото с помощью Оверпасс турбо