Skip to content

Instantly share code, notes, and snippets.

@flvingdutchman
flvingdutchman / index.md
Last active August 27, 2023 12:55
A things to read while growing to Lead

Предисловие

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

Про карьеру в IT

  1. Блог Will Larson https://lethain.com/
  2. Staff Engineer https://staffeng.com/book - книга про разные карьерные ветви в IT. В книге собрано много историй от практикующих инженеров.

Про программирование, работу с проектами и командами

  1. An Elegant Puzzle https://www.amazon.com/Elegant-Puzzle-Systems-Engineering-Management-ebook/dp/B07QYCHJ7V - книга об управлении командами в IT.
@robertpainsi
robertpainsi / commit-message-guidelines.md
Last active July 17, 2024 12:55
Commit message guidelines

Commit Message Guidelines

Short (72 chars or less) summary

More detailed explanatory text. Wrap it to 72 characters. The blank
line separating the summary from the body is critical (unless you omit
the body entirely).

Write your commit message in the imperative: "Fix bug" and not "Fixed
bug" or "Fixes bug." This convention matches up with commit messages
@wilmoore
wilmoore / changelog-template.xml
Created February 5, 2011 05:57 — forked from tlberglund/gist:727521
Sample Liquibase Schema Refactorings
<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-2.0.xsd
http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd">
</databaseChangeLog>