-
Delete all containers
$ docker ps -q -a | xargs docker rm
-q prints only the container IDs -a prints all containers
Notice that it uses xargs to issue a remove container command for each container ID
- Delete all untagged images
| //* http://gasolicious.com/remove-tabs-keep-product-description-woocommerce/ | |
| // Location: add to functions.php | |
| // Output: removes woocommerce tabs | |
| remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 10 ); |
| DELIMITER $$ | |
| DROP FUNCTION IF EXISTS `database`.`HTML_UnEncode`$$ | |
| CREATE DEFINER=`root`@`127.0.0.1` FUNCTION `HTML_UnEncode`(x VARCHAR(255)) RETURNS varchar(255) CHARSET latin1 | |
| BEGIN | |
| DECLARE TextString VARCHAR(255) ; | |
| SET TextString = x ; | |
| #quotation mark |
Delete all containers
$ docker ps -q -a | xargs docker rm
-q prints only the container IDs -a prints all containers
Notice that it uses xargs to issue a remove container command for each container ID
| sudo find /private/var/folders/ -name com.apple.dock.iconcache -exec rm {} \; |
| CULTURE SPEC.CULTURE ENGLISH NAME | |
| -------------------------------------------------------------- | |
| Invariant Language (Invariant Country) | |
| af af-ZA Afrikaans | |
| af-ZA af-ZA Afrikaans (South Africa) | |
| ar ar-SA Arabic | |
| ar-AE ar-AE Arabic (U.A.E.) | |
| ar-BH ar-BH Arabic (Bahrain) | |
| ar-DZ ar-DZ Arabic (Algeria) | |
| ar-EG ar-EG Arabic (Egypt) |
| /* Setting the breakpoint of the mobile menu */ | |
| @media only screen and ( max-width: 981px ) { | |
| #top-menu-nav, #top-menu {display: none;} | |
| #et_top_search {display: none;} | |
| #et_mobile_nav_menu {display: block;} | |
| } |
| <?php | |
| /** | |
| * _s Theme Options | |
| * | |
| * @package _s | |
| * @since _s 1.0 | |
| */ | |
| /** | |
| * Register the form setting for our _s_options array. |
| #!/bin/bash -e | |
| make_a_pkg() { | |
| printf '** Making package "%s"...\n' "$1" | |
| tar zxf "$1.tar.gz" | |
| cd "$1" | |
| makepkg -si | |
| cd .. | |
| } |
| docker-compose up -d | |
| docker attach myapp_web_1 |