20 random bookmarks

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

2024-09-13

763.

What the Quad?

mvexel.github.io/whatthequad

2024-07-17

714.

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

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

2024-06-24

691.

Local, first, forever

tonsky.me/blog/crdt-filesync

If you set out to build a local-first application that users have complete control and ownership over, you need something to solve data sync.

Dropbox and other file-sync services, while very basic, offer enough to implement it in a simple but working way.

Sure, it won’t be as real-time as a custom solution, but it’s still better for casual syncs. Think Apple Photos: only your own photos, not real-time, but you know they will be everywhere by the end of the day. And that’s good enough!

Imagine if Obsidian Sync was just “put your files in the folder” and it would give you conflict-free sync? For free? Forever? Just bring your own cloud?

I’d say it sounds pretty good.

2024-05-25

665.

Convert bookmarklet to Chrome extension

sandbox.self.li/bookmarklet-to-extension

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

567.

Сервисы

grishaev.me/services

Я согласен с тем, что логику нужно разносить по сервисам. Но сервисы должны использовать общую шину данных: базу, очередь сообщений, файлы в S3 в конце концов. Гонять друг другу JSON выглядит хорошо в теории, но на практике — фу.

Условный Постгрес выплюнет миллион записей за доли секунды. Забрать этот же миллион из другого сервиса — приключение на неделю. Тут и метрики, лимиты, квоты, сетевые спайки, etc… А когда таких запросов несколько, сервис ложится спать.

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

535.

Bookfeed.io

bookfeed.io

Утилита, которая позволяет указать список авторов и генерирует РСС фид с последней выпущенной книгой.

2023-12-05

453.

Проект домашней сети

strizhechenko.github.io/2023/12/05/network.html

TL;DR: сети с более чем одним устройством - это пердолинг, вне зависимости от вендора.

2023-12-02

446.

QEMU Advent Calendar 2023

qemu-advent-calendar.org/2023

An amazing QEMU disk image every day!
Brightening your days in the winter holiday season.

2023-11-19

426.

Programming On 34 Keys

peppe.rs/posts/programming_on_34_keys

Minimizing your keyboard layout is a slippery slope.
34-keys has been reasonably comfortable to use, for both prose and program. My palms do not move across the desk at all, as I reach for keys. I mostly write Rust and Bash, and my layout has evolved to accomodate special characters from their grammars (angled brackets and hyphens, specifically). If you are on a similar journey, I would suggest focusing on accuracy and comfort over speed. Speed comes with time.

2023-11-16

422.

SQL indexes on user-defined functions

use-the-index-luke.com/sql/where-clause/functions/user-defined-functions

Функции должны быть чистыми, чтобы по ним работал индекс

2023-11-15

416.

Partial Objects in ORMs: loading a subset of properties

use-the-index-luke.com/sql/join/hash-join-partial-objects

Index the independent where predicates to improve hash join performance.

Indexing join predicates doesn’t improve hash join performance.

Indexing a hash join is independent of the join order.

Select fewer columns to improve hash join performance.

Hash joins do not need indexes on the join predicates. They use the hash table instead.
A hash join uses indexes only if the index supports the independent predicates.
Reduce the hash table size to improve performance; either horizontally (less rows) or vertically (less columns).
Hash joins cannot perform joins that have range conditions in the join predicates.

2023-10-08

358.

Monodraw

monodraw.helftone.com

Powerful ASCII art editor designed for the Mac.

2023-09-05

314.

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

habr.com/ru/articles/758894

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

2023-08-28

307.

unasanu — вселенная как число

unasanu.xyz/ru

Философская концепция, которая объясняет, почему существует любая вселенная и что будет после смерти

2023-07-26

251.

Как работает демократическая цензура

rutube.ru/video/43165688dd3836642608725d8fe47739

2023-06-10

201.

switching.software

switching.software

Ethical, easy-to-use and privacy-conscious alternatives to well-known software

2023-05-01

179.

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

lleo.me/arhive/humor/maslo.shtml

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

2023-02-19

11.

The modern web on a slow connection

danluu.com/web-bloat