Skip to content

Instantly share code, notes, and snippets.

View galkin's full-sized avatar
🇺🇦

Nikita Galkin galkin

🇺🇦
View GitHub Profile
@galkin
galkin / AuthyToOtherAuthenticator.md
Created April 26, 2024 16:33 — forked from gboudreau/AuthyToOtherAuthenticator.md
Export TOTP tokens from Authy
@galkin
galkin / README.md
Created November 8, 2017 13:30 — forked from leonardofed/README.md
A curated list of AWS resources to prepare for the AWS Certifications


A curated list of AWS resources to prepare for the AWS Certifications

A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.

For more about AWS and AWS Certifications and updates to this Gist you should follow me @leonardofed


@galkin
galkin / simple-git-workflow.md
Created July 29, 2016 11:19 — forked from leesmith/simple-git-workflow.md
Simple Git Workflow For Continuous Delivery

Simple Git Workflow For Continuous Delivery

Workflow guidelines:

  • master branch is always production-ready, deployable, 100% green test suite
  • New development is done on feature branches, with frequent rebasing onto master
  • Clean commit history by preferring to rebase instead of merge (git pull is configured to automatically rebase)

rebase workflow

Workflow