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 / .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
<meta charset="utf8">
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
<div class="container mx-auto font-serif">
<div>
<h1 class="text-6xl text-center mt-6">Правда</h1>
<h2 class="text-4xl text-center mt-6">ПОДЗАГОЛОВОК ГЛАВНОЙ СТАТЬИ</h2>
</div>
<div class="mt-12">
<h1 class="text-7xl text-center">ГЛАВНАЯ СТАЬЯ</h1>
@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 / .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 / 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 June 20, 2020 20:52
Git configuration
[core]
excludesfile = ~/.gitignore
[alias]
current-hash = "rev-parse HEAD"
current-branch = "rev-parse --abbrev-ref HEAD"
clean-up = "!git fetch -p && git branch -vv | awk '/: gone]/{print $1}' | xargs git branch -D"
go = "!git checkout ${1:-master} && git pull && git clean-up"
alias art='php artisan'
alias pu='vendor/bin/phpunit'
alias puf='vendor/bin/phpunit --filter='
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
@antonkomarev
antonkomarev / ffmpeg-html5
Created December 12, 2017 15:25 — forked from yellowled/ffmpeg-html5
Convert videos to proper formats for HTML5 video on Linux shell using ffmpeg. Will probably convert this to a bash script later, but for the time being, here's some examples. Not sure there have actually sensible dimensions and bitrates for web video.
# webm
ffmpeg -i IN -f webm -vcodec libvpx -acodec libvorbis -ab 128000 -crf 22 -s 640x360 OUT.webm
# mp4
ffmpeg -i IN -acodec aac -strict experimental -ac 2 -ab 128k -vcodec libx264 -vpre slow -f mp4 -crf 22 -s 640x360 OUT.mp4
# ogg (if you want to support older Firefox)
ffmpeg2theora IN -o OUT.ogv -x 640 -y 360 --videoquality 5 --audioquality 0 --frontend
@antonkomarev
antonkomarev / CssActiveClassComposer.php
Last active April 8, 2017 01:24
Laravel CSS Active Class View Composer
<?php
namespace App\ViewComposers;
use Illuminate\View\View;
use Illuminate\Support\Str;
use Illuminate\Http\Request;
class CssActiveClassComposer
{
@antonkomarev
antonkomarev / CountrySeeder.php
Last active January 19, 2017 09:21
Laravel dictionary seeders
<?php
use Illuminate\Database\Seeder;
class CountrySeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void