command | what it does? |
---|---|
tmux | Starts new tmux session |
tmux attach | attaches to last openned tmux session |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# @link https://gist.github.com/jkuchar/499cde5952caab68dcdbe6a28dd9309f | |
# @link http://blog.yohanliyanage.com/2015/05/docker-clean-up-after-yourself/ | |
# @link http://www.projectatomic.io/blog/2015/07/what-are-docker-none-none-images/ | |
# | |
# This will reclaim space and inodes used by stopped containers, dangling images and dangling volumes. | |
# I use this in GitLab CI multi runner with Docker version 1.13.0; should work with Docker >1.9.0 | |
# Currently I run this script every day in cron. | |
echo "Containers cleanup: removing exited containers" | |
docker rm -v $(docker ps -a -q -f status=exited) |
I hereby claim:
- I am jkuchar on github.
- I am honzakuchar (https://keybase.io/honzakuchar) on keybase.
- I have a public key whose fingerprint is F7F9 6B1E 3BFF 9BA1 3E6E 9DD2 3CA7 4879 462B 47F2
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"require": { | |
"nette/nette": "^2.3" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"require": { | |
"nette/application": "~2.3", | |
"nette/bootstrap": "~2.3" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace jkuchar\Doctrine\DBAL\Driver\PDOPgSql; | |
use Doctrine\DBAL\Driver\PDOPgSql\Driver as DoctrineOriginalDriver; | |
/** | |
* Adds ability to set search path to PostgreSQL driver | |
* @package App\Doctrine |
NewerOlder