I hereby claim:
- I am simukti on github.
- I am simukti (https://keybase.io/simukti) on keybase.
- I have a public key whose fingerprint is 98FB 94A7 B1E8 9616 2B5B DCCD 0CB9 F511 7C27 C996
To claim this, I am signing this object:
#!/usr/bin/env bash | |
## reference: https://gist.github.com/bastman/5b57ddb3c11942094f8d0a97d461b430 | |
## cleanup unused networks | |
echo "--- CLEANUP UNUSED NETWORKS ---" | |
##unused_network=$(docker network ls | awk '$3 == "bridge" && $2 != "bridge" { print $1 }') | |
unused_network=$(docker network ls | grep "bridge" | awk '/ / { print $1 }') | |
if [[ $unused_network ]] && (( $(grep -c . <<<"$unused_network") > 1 )); then | |
## this will not delete active network and predefined network | |
echo -e "$unused_network" |
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
<?php | |
/** | |
* Description of Googl | |
* | |
* @author Sarjono Mukti Aji <[email protected]> | |
*/ | |
namespace Simukti\Service\ShortUrl; | |
class Googl extends \Zend_Service_ShortUrl_AbstractShortener | |
{ |
<?php | |
/** | |
* CORE | |
* Custom extended library for Zend Framework 1.10.x | |
* | |
* Copyright (c) 2011, Sarjono Mukti Aji <http://simukti.net/> | |
* All rights reserved. | |
* | |
* For the full copyright and license information, please view the LICENSE | |
* file that was distributed with this libraries source code. |