20 random bookmarks

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

2025-09-14

890.

Проективная идентификация для чайников

spectator.ru/entry/6719

ПИ«придумала» Кляйн, которая занималась«детским» психоанализом, и вот эти все«магические» штуки — это способы, с помощью которых дети, которые еще не умеют говорить, общаются с матерью. А потом это становятся способами, с помощью которых взрослые люди, которые не могут говорить,«общаются» с другими людьми.

2025-08-11

884.

Breaking the Sorting Barrier for Directed Single-Source Shortest Paths

arxiv.org/pdf/2504.17033

This is the first result to break the O(m+ n log n) time bound of Dijkstra’s algorithm on sparse graphs, showing that Dijkstra’s algorithm is not optimal for SSSP.

2025-03-14

845.

First aid kit

rabbitwaves.ca/site/first_aid_kit.html

2024-09-25

771.

Гуманизм против «эффективного менеджмента». Почему заботиться о людях выгодно

habr.com/ru/articles/816545

2024-07-18

716.

Правда, которую удалят! – тайные армии НАТО! [расследование]

rutube.ru/video/a9384810bd8953c8ca6e97122a823aca

О Гладио

2024-05-24

664.

Feature Flags: What They Are and How to Use Them | The Space Blog

blog.jetbrains.com/space/2022/06/16/feature-flags

The concept of feature flags is simple – it’s essentially just an if. This makes it a very powerful concept!

Жетбрейнсы рассказывают о концепции фича-флагов

2024-05-17

643.

How Micro Is Your Tasking?

www.yegor256.com/2017/11/28/microtasking.html

Micro-tasking is a management paradigm we've been practicing for over eight years, to the benefit of our programmers and project sponsors.

2024-05-02

618.

Uiua

www.uiua.org

Uiua (wee-wuh) is a general purpose, stack-based, array-oriented programming language with a focus on simplicity, beauty, and tacit code

2024-04-10

602.

Миллионы на госбюджете: как их получить

www.youtube.com/watch?v=QPGJ0U-vodw

Авторский мастер-класс Максима Ильяхова о том, как грести деньги лопатой, кормиться у кормушки и казнить казнокрадов.

Как всё сложно то, оказывается. Теперь я ещё больше уважаю людей, которые честно работают с государством и делают жизнь в стране лучше. Ещё больше не люблю журналистов и активистов.

2024-04-05

599.

Психополитика и нейрональное насилие

insolarance.com/psychopolitics

Психополитика – это совокупность властных инструментов управления неолиберальным «субъектом достижений», основанных на императиве «ты можешь», самодисциплине и самостимуляции для повышения эффективности в стремлении к новым свершениям, что мотивируется идеей о том, что каждый человек – предприниматель самого себя и жизнь каждого должна стать успешным экономическим проектом.

2024-03-18

583.

JPEG DCT text lossifizer

lcamtuf.coredump.cx/lossifizer

Did you ever wake up in the middle of the night wondering what would happen if you applied JPEG-style lossy compression to text?

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

488.

Фаззинг (fuzzing) тестирование

b.sattellite.me/2022/01/2022-01-golang-fuzzing

2023-12-16

Reposted 456.

The Decline of Usability

www.datagubbe.se/decusab

The author doesn't like how modern UI:s are designed. Gives good examples.

2023-08-02

274.

Brian Tomasik

briantomasik.com

2023-07-15

235.

shevolya

shevolya.com

Иллюстратор, художник из России Ольга Шевченко

2023-07-03

225.

A Complete Guide to Flexbox

css-tricks.com/snippets/css/a-guide-to-flexbox

2023-02-26

46.

Reinventing How We Use Computers

ploum.be/2022-12-03-reinventing-how-we-use-computers.html
42.

Designing devices for long-term care and reuse

cheapskatesguide.org/articles/uncharitable.html

2023-02-19

7.

Grimgrains Cooking Blog

grimgrains.com