Skip to content

Instantly share code, notes, and snippets.

View yurykovshov's full-sized avatar

Yury yurykovshov

  • Cologne, Germany
View GitHub Profile
@yurykovshov
yurykovshov / simple_postgres.md
Last active November 17, 2024 11:53
Simple Postgres Database with connection pool and backups

Simple Postgres Database deployment with PgBouncer connection pool and backups to S3 storage

Motivation and Goal

Main motivation here is to have a cheap and simple Postgres Database server with backups, but without the failover. And in order to get cheap (in terms of memory) connections - use the PgBouncer. Why without the failover? Because in my case I didn't need a 100% stable cluster, but I needed a cheap and simple solution, which in case of disaster could be recovered in some X hours. If you are looking for a failover cluster - there is nice automation here: https://github.com/vitabaks/postgresql_cluster

Prerequisites

@yurykovshov
yurykovshov / clean_code.md
Created November 16, 2022 20:38 — forked from wojteklu/clean_code.md
Summary of 'Clean code' by Robert C. Martin

Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.


General rules

  1. Follow standard conventions.
  2. Keep it simple stupid. Simpler is always better. Reduce complexity as much as possible.
  3. Boy scout rule. Leave the campground cleaner than you found it.
  4. Always find root cause. Always look for the root cause of a problem.

Design rules

@yurykovshov
yurykovshov / telegramproxy.md
Last active June 13, 2025 04:49
Как создать свой Socks5 proxy для Telegram