By editor, 25 May, 2020 Docker cleanup - free disk space (prune) Tags docker Remove all everything not used by at least one container - Prune everything docker system prune Note : If you are on Docker 17.06.1 or higher and want to also prune volumes, add the --volumes flag:docker system prune --volumes
By editor, 23 April, 2020 Test disk read write speed on linux CLI Tags Linux Shell Test Disk Write Performance With dd Command dd is a basic command une in all linux distributions to copy data. You can also use this feature to test dis performance.
By editor, 11 October, 2019 Run PHP script using drupal bootstarp on drupal site Tags Drupal 8 Code PHP This is usefull if you want to do some actions just one time. The drush comman is php-script alias src On drupal 8 with drush Example :drush --uri=drupal.loc scr /modules/custom/mymodule/scripts/test-script.php
By nuwantha, 20 September, 2019 PHP RegEx Replace accents of each selected word Tags PHP Code Example : $stopwords = ['toto', 'Pied', 'the']; $str = 'bla bla toto bla bla Toto bla bla Tôtô bla bla totô bla bla bla bla the thé pied pïed pîéd';
By editor, 1 November, 2018 Alter Views title programmatically on Drupal 8 Tags Drupal 8 Code Views Hook function MYMODULE_views_pre_render(ViewExecutable $view) { Â if ($view->id() == 'ABC') { Â $view->setTitle('MY CUSTOM TITLE'); Â } }