20 random bookmarks

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

2026-05-02

968.

Бизнесу надо

ambment.cat/posts/2026-4-29-1.html

Меня просто нечеловечески бесит, когда разработчики оправдывают собственную некомпетентность мантрой «бизнесу надо». Если программист любой степени квалификации, от стажёра — до принципала — использует в качестве аргумента в любой дискуссии фразу «бизнесу надо» — знайте, перед вами тупой самозванец, гоните его в шею.

2025-11-08

910.

Страшная правда о вышиванках. К проблеме городского одичания

matveychev-oleg.livejournal.com/6088646.html

2025-10-29

908.

AutoEq

autoeq.app

Automatic headphone equalization

2025-04-25

853.

Tester, make the lives of those around you better

www.l3r8y.ru/2025/04/22/tester-make-life-of-your-mates-better

Avoid these things:

  • Asking the developer how things should work: It’s your responsibility to know how a feature should work; if you don’t, how can you test it?

  • Reporting bugs outside of the ticket: Avoid informal bug discussions, as they waste time for you and your team.

  • Using vague phrases like “This does not work properly”: ‘Properly’ is unclear—specify exactly what’s wrong.

2024-12-17

808.

Question Best Practices

ajkprojects.com/questionbestpractices

2024-09-28

774.

Об организационных возможностях повышения производительности труда (по результатам включенного наблюдения)

esc.isert-ran.ru/article/30050/full?_lang=ru

Большое машиностроительное предприятие в Екатеринбурге и как там всё работает

2024-07-27

725.

Как наполнить базу сгенерированными джейсонами

grishaev.me/json-sql

2024-06-04

Reposted 672.

Staticcheck - The advanced Go linter

github.com/dominikh/go-tools

Staticcheck - The advanced Go linter. Contribute to dominikh/go-tools development by creating an account on GitHub.

2024-05-17

646.

Eight Levels of Communication Maturity

www.yegor256.com/2016/08/23/communication-maturity.html

Chats, emails, phone calls, mailing lists, issue tracking systems, face-to-face meetings, and other communication instruments for a software project.

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-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)
}

2023-11-16

418.

Modern SQL: A lot has changed since SQL-92

modern-sql.com

SQL has evolved. Beyond the relational model. Discover it now.

2023-10-26

372.

Людские пробки в метро у эскалаторов. Как с ними бороться?

habr.com/ru/articles/733438

О том, почему важно занимать обе стороны на эскалаторе в метро.

Постоянно об этом задумывался, а тут мне скинули статью.

2023-09-05

315.

PRQL

prql-lang.org

PRQL is a modern language for transforming data

Интересная замена SQL. Запросы для аналитики данных станет писать намного проще. Не думаю, что для чего-то другого этот проект подойдёт. Условный CRUD проще написать, используя именно SQL запросы, здесь PRQL излишен.

314.

Я вижу как ты мусоришь со своего балкона / Хабр

habr.com/ru/articles/758894

Как технически обнаружить мусорщика и почему камеры, смотрящие не на фасад, бесполезны

2023-08-10

283.

Project Gutenberg

www.gutenberg.org

Library of free eBooks

2023-08-07

278.

Don't write bugs

www.teamten.com/lawrence/programming/dont-write-bugs.html

If you want a single piece of advice to reduce your bug count, it’s this:
Re-read your code frequently. After writing a few lines of code (3 to 6 lines, a short block within a function), re-read them. That habit will save you more time than any other simple change you can make.

2023-07-19

240.

MapRoulette

maproulette.org

Сайт с заданиями для создания, редактирования, проверки данных ОСМ

2023-07-08

230.

Simple Made Easy

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

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

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

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

2023-04-07

173.

Фотографии транспорта со всего света

transphoto.org