By editor, 13 June, 2016 .bashrc File - Configure bash aliases functions commands... on Linux Unix and MacOSX Tags Linux Shell The .bashrc file is a script that is executed whenever a new terminal session is started in interactive mode. It is just the shortcut to the commands allows the user to launch any command or group of commands.
By editor, 11 June, 2016 Images processing using ImageMagick (convert) Tags Shell Linux Images Crop images using convert (ImageMagick) Example (Single file): convert input.jpg -crop 1300x950+312+72 crop.jpg convert input.jpg -crop 1300x950-100-50 crop.jpg
By Anonymous (not verified), 10 June, 2016 Database Basic Examples (Select, Merge, Insert ...) Tags Drupal 8 Code Database Drupal 9 Select: $con = \Drupal\Core\Database\Database::getConnection(); $query = $con->select('table_name', 't') ->fields('t', ['field_1', 'field_2']);
By editor, 10 June, 2016 Cache Drupal 8 Render Arrays Tags Drupal 8 Code Cache Cache configuration of a renderer array (Just an exaple)
By editor, 10 June, 2016 Git - Ignore Files, Directories, Permissions Tags Shell Server Git 1 Ignore files And Folders using .gitignore Files (Include and/or Exclude) Create the gitignore file at the top of your repository,i f it's not already exist