Skip to content

Instantly share code, notes, and snippets.

@aalexeev239
aalexeev239 / prepare-commit-msg
Last active May 23, 2017 22:40
prepare-commit-msg
#!/bin/bash
# This way you can customize which branches should be skipped when
# prepending commit message.
if [ -z "$BRANCHES_TO_SKIP" ]; then
BRANCHES_TO_SKIP=(master develop test)
fi
BRANCH_NAME=$(git symbolic-ref --short HEAD)
BRANCH_NAME="${BRANCH_NAME##*/}"
@aalexeev239
aalexeev239 / README.MD
Last active November 11, 2022 11:08
Список литературы по rxjs

RXJS links

  • ⭐⭐⭐ курсы на Egghead. Лучше посмотреть все, но есть самые полезные курсы
  • ⭐⭐⭐ справочник операторов с примерами Learn RxJS
  • ⭐⭐ анимированная песочница Rx Visualizer
  • ⭐⭐ раздел по rxjs в блоге Angular in depth

Специализированные

Основы

@aalexeev239
aalexeev239 / Readme.md
Last active November 11, 2022 11:09
TypeScript links
@aalexeev239
aalexeev239 / Readme.md
Last active July 9, 2021 15:56
GIT links

Git links

⭐⭐ firstaidgit - Коллекция часто задаваемых вопросов по Git с возможностью поиска

⭐⭐⭐ git - the simple guide - простое руководство по работе с git. Ничего сложного ;)

⭐⭐ Git How To - еще руководство

Resources to learn Git - от гитхаба

@aalexeev239
aalexeev239 / TreeNode.ts
Created February 2, 2021 18:03
TreeNode.ts
/**
* Definition for a binary tree node.
* class TreeNode {
* val: number
* left: TreeNode | null
* right: TreeNode | null
* constructor(val?: number, left?: TreeNode | null, right?: TreeNode | null) {
* this.val = (val===undefined ? 0 : val)
* this.left = (left===undefined ? null : left)
* this.right = (right===undefined ? null : right)