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
#!/bin/bash | |
## workspace Number ( count ) | |
WS_N=$(wmctrl -d | wc -l) | |
## workspace ID | |
WS_ID=$(wmctrl -d | grep '*' | cut -d ' ' -f1) | |
## previous workspace id ( loops around ) | |
PREV_ID=$(( ( $WS_ID - 1 ) % $WS_N )); |
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
#!/bin/bash | |
## workspace Number ( count ) | |
WS_N=$(wmctrl -d | wc -l) | |
## workspace ID | |
WS_ID=$(wmctrl -d | grep '*' | cut -d ' ' -f1) | |
## next workspace id ( loops around ) | |
NEXT_ID=$(( ( $WS_ID + 1 ) % $WS_N )); |
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
## note that there's two notations: :(exclude) or :! | |
git diff <branch1> <branch2> -- ':(exclude)*/vendor/*' ':(exclude)*/assets/*' ':!*/build/*' ':!*.lock' |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[10.897026,51.6119101],[10.9014584,51.6175629],[10.9007892,51.6238205],[10.9047882,51.6270008],[10.9060882,51.6315796],[10.9192336,51.6361279],[10.9199092,51.64004],[10.9328427,51.6414688],[10.9462509,51.6530806],[10.9427982,51.6540604],[10.947029,51.6541615],[10.9528289,51.6612155],[10.9485696,51.6641959],[10.9332966,51.6632381],[10.9362386,51.6659208],[10.9317704,51.6667507],[10.9415463,51.6686948],[10.9425841,51.6706037],[10.9360222,51.6703558],[10.9358013,51.6723529],[10.9408897,51.6732071],[10.940258,51.6767425],[10.9507317,51.6794677],[10.9495772,51.6807505],[10.910948,51.6780366],[10.9089957,51.6798923],[10.9122247,51.6834495],[10.9050666,51.6859528],[10.9069583,51.6889687],[10.9109535,51.6868825],[10.9104146,51.692192],[10.8965071,51.6888954],[10.8959615,51.6918017],[10.9025537,51.6927222],[10.9046512,51.6949727],[10.9351143,51.693452],[10.9405287,51.6943053],[10.9415973,51.6963276],[10.9292705 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Listen for XDebug on VVV", | |
"type": "php", | |
"request": "launch", | |
"pathMappings": { | |
// "/path/inside/vvv/public_html/to/repo": "/path/outside/vvv/www/site-name/public_html/to/repo" | |
"/srv/www/demo-php-latest/public_html": "/srv/vm/vvv/vvv-demo/www/demo-php-latest/public_html" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.