Skip to content

Instantly share code, notes, and snippets.

View antonkomarev's full-sized avatar
🇦🇶
Antarctic Bear

Anton Komarev antonkomarev

🇦🇶
Antarctic Bear
View GitHub Profile
@antonkomarev
antonkomarev / plink-plonk.js
Created February 15, 2020 19:33 — forked from tomhicks/plink-plonk.js
Listen to your web pages
@antonkomarev
antonkomarev / .gitconfig
Last active September 13, 2021 21:09
Useful git aliases to speed up development
[alias]
cleanup = "!git fetch -p && git branch -vv | awk '/: gone]/{print $1}' | xargs git branch -D"
go = "!git switch ${1:-master} && git pull && git cleanup"
@antonkomarev
antonkomarev / git-io-custom-url.md
Created September 15, 2020 08:50 — forked from dikiaap/git-io-custom-url.md
git.io custom URL

Command:

curl https://git.io/ -i -F "url=https://github.com/YOUR_GITHUB_URL" -F "code=YOUR_CUSTOM_NAME"

URLs that can be created is from:

  • https://github.com/*
  • https://*.github.com
  • https://*.github.com/*
  • https://*.github.io
@antonkomarev
antonkomarev / .bash_profile
Last active March 8, 2022 20:48
Restart docker on MacOS, quick git commands
# vi ~/.bash_profile
# Docker
d () {
if [ -f $1 ] ; then
echo "Available commands:"
echo " \e[32md restart\e[0m - Restart docker service"
echo " \e[32md stop\e[0m - Stop all docker containers"
return 0
@antonkomarev
antonkomarev / php.Dockerfile
Created July 19, 2024 08:24
How to install PHP in Docker when "add-apt-repository -y ppa:ondrej/php" is not available
apt-get -y install --no-install-recommends --no-install-suggests dirmngr && \
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 71DAEAAB4AD4CAB6 4F4EA0AAE5267A6C && \
add-apt-repository -y "deb https://mirror.yandex.ru/mirrors/launchpad/ondrej/php/ $(lsb_release -cs) main"