1.) Download a Nerd Font
2.) Unzip and copy to ~/.fonts
3.) Run the command fc-cache -fv to manually rebuild the font cache
1.) Download a Nerd Font
2.) Unzip and copy to ~/.fonts
3.) Run the command fc-cache -fv to manually rebuild the font cache
| {% extends 'form_div_layout.html.twig' %} | |
| {% block form_row -%} | |
| <div class="row{% if (not compound or force_error|default(false)) and not valid %} has-error{% endif %}"> | |
| <div class="input-field col s12"> | |
| {{- form_widget(form) -}} | |
| {{- form_label(form) -}} | |
| {{- form_errors(form) -}} | |
| </div> | |
| </div> |
| $ git remote rm origin | |
| $ git remote add origin [email protected]:aplikacjainfo/proj1.git | |
| $ git config master.remote origin | |
| $ git config master.merge refs/heads/master |
| # Backup | |
| docker exec CONTAINER /usr/bin/mysqldump -u root --password=root DATABASE > backup.sql | |
| # Restore | |
| cat backup.sql | docker exec -i CONTAINER /usr/bin/mysql -u root --password=root DATABASE | |
| set curVolume to get volume settings | |
| if output muted of curVolume is false then | |
| set volume with output muted | |
| else | |
| set volume without output muted | |
| end if |
| //excel layout | |
| <?php | |
| header ("Expires: Mon, 28 Oct 2008 05:00:00 GMT"); | |
| header ("Last-Modified: " . gmdate("D,d M YH:i:s") . " GMT"); | |
| header ("Cache-Control: no-cache, must-revalidate"); | |
| header ("Pragma: no-cache"); | |
| header ("Content-type: application/vnd.ms-excel"); | |
| header ("Content-Disposition: attachment; filename=\"report_".date('dmy_His').".xls" ); | |
| header ("Content-Description: Generated Report" ); | |
| ?> |
| <?php | |
| /** | |
| * A helper file for Laravel 5, to provide autocomplete information to your IDE | |
| * Generated for Laravel 5.5.13 on 2017-09-28. | |
| * | |
| * @author Barry vd. Heuvel <[email protected]> | |
| * @see https://github.com/barryvdh/laravel-ide-helper | |
| */ | |
| namespace { | |
| exit("This file should not be included, only analyzed by your IDE"); |
| #!/bin/sh | |
| # | |
| # chmodr.sh | |
| # | |
| # author: Francis Byrne | |
| # date: 2011/02/12 | |
| # | |
| # Generic Script for recursively setting permissions for directories and files | |
| # to defined or default permissions using chmod. | |
| # |