This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .image-va { box-sizing: content-box; width:100%; height:100%; vertical-align: middle; text-align: center; background-color:lime} | |
| .image-va img { border:0 !important; margin:0 !important; max-width: 100%; max-height: 100%; vertical-align: middle;} | |
| .image-va .helper { display: inline-block; height: 100%; vertical-align: middle;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "name": "Red", | |
| "background-color": "rgb(176, 70, 50)" | |
| }, | |
| { | |
| "name": "Blue", | |
| "background-color": "rgb(0, 121, 191)" | |
| }, | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import time | |
| def timeStamped(fmt='%H:%M:%S'): | |
| return time.strftime(fmt).format() | |
| with open('../time.txt','w') as outf: | |
| outf.write(timeStamped()) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $grid-breakpoints: ( | |
| xs: 0, | |
| sm: 600px, | |
| md: 800px, | |
| lg: 1000px, | |
| xl: 1200px ) !default; | |
| $container-max-widths: ( | |
| sm: 600px, | |
| md: 800px, |
Von revooms
By revooms
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @php | |
| $hasFirstSeperator = false; | |
| $hasLastSeperator = false; | |
| $visibleButtons = 9; // odd number!!! | |
| $first = 1; | |
| $last = $p->lastPage(); | |
| $current = $p->currentPage(); | |
| // Main | |
| $half = floor($visibleButtons / 2); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Laravel | |
| alias art="php artisan" | |
| alias fresh='php artisan migrate:refresh --seed' | |
| alias migrate="php artisan migrate" | |
| alias nah='git reset --hard;git clean -df' | |
| alias nrw="npm run watch" | |
| alias t="vendor/bin/phpunit" | |
| # Bash | |
| alias df="df -h" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| grep -nr $'\u2028' * |