20 random bookmarks

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

2026-09-09

1016.

Heap's algorithm

en.wikipedia.org/wiki/Heap's_algorithm
// Output the k! permutations of A in which the first k elements are permuted in all ways.
// To get all permutations of A, use k := length of A.
//
// If k > length of A, will try to access A out of bounds.
// If k <= 0 there will be no output (empty array has no permutations)
procedure permutations(k : integer, A : array of any):
    if k = 1 then
        output(A)
    else
        // permutations with last element fixed
        permutations(k - 1, A)
        // permutations with last element swapped out
        for i := 0; i < k-1; i += 1 do
            if k is even then
                swap(A[i], A[k-1])
            else
                swap(A[0], A[k-1])
            end if
            permutations(k - 1, A)
        end for
    end if

2026-07-27

1001.

You won't fall behind

www.youtube.com/watch?v=0F5zG1RQ4Ig

2026-04-11

954.

Social Media is the Opposite of Social Life

www.raptitude.com/2026/04/social-media-is-the-opposite-of-social-life

2026-03-26

946.

Modern Code Review: A Case Study at Google

dl.acm.org/doi/pdf/10.1145/3183519.3183525

2025-09-20

891.

Slowing Down

kwon.nyc/notes/slowing-down

2025-05-01

Reposted 856.

Seeking the Productive Life: Some Details of My Personal Infrastructure—Stephen Wolfram Writings

writings.stephenwolfram.com/2019/02/seeking-the-productive-life-some-details-of-my-personal-infrastructure

Some of Stephen Wolfram’s “productivity hacks” to make his days and projects more productive. Daily life, desk environment, outside the office, presentation setup, filesystem organization, Wolfram Notebook systems, databases, personal analytics.

I especially like the treadmill.

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

829.

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

grishaev.me/postgres-csv

2024-10-14

785.

БАР(биполярное): третий год лечения, полет нормальный

vas3k.club/post/26020

Моя знакомая Ульяна рассказывает про опыт с БАР

2024-07-17

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-06-09

674.

Перегибы на местах

spectator.ru/entry/6707

терапевтка принимала на дому, делала записи и вышла, например, в туалет, а клиентка залезла в эти записи и получила — правильно — скандал про«нарушение границ» и чуть ли не отказ работать дальше.

Правильный терапевт, разумеется, не только знал бы, что терапия — это место, где его границы будут нарушаться (и это будет оплачиваться), но и первым делом с интересом обсудил бы мотивы и фантазии клиента, зачем он это сделал и что хотел там найти. И только потом бы с любовью и принятием говорил про нарушение границ.

2023-11-06

398.

OpenSwitchMaps

addons.mozilla.org/ru/firefox/addon/openswitchmaps

Расширение, которое позволяет открыть текущее место в соответствующем сервисе карт.

2023-11-04

393.

Progopedia

progopedia.com

Free Encyclopedia of Programming Languages.

2023-09-20

337.

In a git repository, where do your files live?

jvns.ca/blog/2023/09/14/in-a-git-repository--where-do-your-files-live-

2023-09-14

325.

Comparative Analysis

matklad.github.io/2023/09/13/comparative-analysis.html

The core idea is to canonicalize things. Both x < y and y > x mean the same, and, if you usethem with roughly equal frequency, you need to spend extra mental capacity to fold the two versionsinto the single “x tiny, y HUGE” concept in your head.

2023-08-28

308.

oimo.io

oimo.io

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

2023-06-30

218.

fedi-block-api

fba.ryona.agency

Сайт, где можно посмотреть, какой инстанс в федивёрсе, по какой причине и у кого был забанен

2023-05-01

179.

Леонид Каганов: МАСЛО

lleo.me/arhive/humor/maslo.shtml

Рассказ о том, почему мат классный, но нужно держать его в узде.

2023-03-27

152.

Как найти место по фотографии — Вастрик

vas3k.blog/blog/388

2023-02-19

5.

Grumpy Website

grumpy.website

Никита собирает оплошности дизайна