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/sh | |
| # Usage | |
| # | |
| # Call the script with the directory you want to watch as an argument. e.g.: | |
| # watchdir.sh /app/foo/ | |
| # | |
| # | |
| # Description: | |
| # Uses inotifywait to look for new files in a directory and process them: |
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
| /* ==================== */ | |
| /* VScode 1.41.0 AND UP */ | |
| /* ==================== */ | |
| /* https://gist.github.com/akmeghdad/b1208c2caa601f0ba29f953faabac709 */ | |
| /* THANKS OF */ | |
| /* https://gist.github.com/samdenty/b96f4df576d05cb123248f8ebfa899b6 */ | |
| /* https://gist.github.com/Lightfire228/39dc2cf403237a190e79a000912691b2 */ | |
| /* ==> VScode 1.38 + */ | |
| /* [WINDOWS] add this code in %USERPROFILE%\AppData\Local\Programs\Microsoft VS Code\resources\app\out\vs\workbench\workbench.desktop.main.css */ | |
| /* ==> VScode 1.31 to 1.37 */ |
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
| /** | |
| * Parent | |
| */ | |
| function Shape(x, y) { | |
| this.x = x; | |
| this.y = y; | |
| } | |
| Shape.prototype.constructor = Shape; | |
| Shape.prototype.pos = function() { | |
| return [this.x, this.y]; |