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
| { | |
| "latex-workshop.latex.autoBuild.run": "onFileChange", | |
| "latex-workshop.message.error.show": true, | |
| "latex-workshop.message.warning.show": true, | |
| "latex-workshop.latex.tools": [{ | |
| "name": "xelatex", | |
| "command": "xelatex", | |
| "args": [ | |
| "-synctex=1", | |
| "-shell-escape", |
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
| { | |
| "go.formatTool": "goimports", | |
| "go.docsTool": "guru", | |
| "editor.largeFileOptimizations": false, | |
| "latex-workshop.latex.autoBuild.run": "never", | |
| "latex-workshop.message.error.show": false, | |
| "latex-workshop.message.warning.show": false, | |
| "latex-workshop.latex.tools": [{ | |
| "name": "xelatex", | |
| "command": "xelatex", |
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
| sudo systemctl stop NetworkManager | |
| sudo mv /var/lib/NetworkManager/NetworkManager.state /var/lib/NetworkManager/NetworkManager.state.bak | |
| sudo systemctl stop NetworkManager |
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
| GUEST="slave-1" | |
| vboxmanage list hdds \ | |
| | sed -e '/./{H;$!d;}' -e 'x;/'"$GUEST"'/!d;' \ | |
| | grep UUID | egrep -v Parent | awk '{print $2}' \ | |
| | xargs -I{} vboxmanage closemedium disk {} --delete | |
| # vboxmanage list hdds \ | |
| # | sed -e '/./{H;$!d;}' -e 'x;/'"$GUEST"'/!d;' \ | |
| # | grep UUID | egrep -v Parent | awk '{print $2}' \ | |
| # | xargs -I{} echo vboxmanage closemedium disk {} --delete |
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
| > Task :flyway:flywayMigrate FAILED | |
| :flyway:flywayMigrate (Thread[Execution worker for ':',5,main]) completed. Took 9.075 secs. | |
| FAILURE: Build failed with an exception. | |
| * What went wrong: | |
| Execution failed for task ':flyway:flywayMigrate'. | |
| > Error occurred while executing flywayMigrate | |
| Flyway Enterprise Edition or MySQL upgrade required: MySQL 5.6 is no longer supported by Flyway Community Edition, but still supported by Flyway Enterprise Edition. |
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
| # sudo docker-compose down | |
| # Stopping flyway_db_1 ... error | |
| # | |
| # ERROR: for flyway_db_1 cannot stop container: b507d5ca35c67a38164df406656c32484390353b51f43357d565b25aa7cfbfd1: Cannot kill container b507d5ca35c67a38164df406656c32484390353b51f43357d565b25aa7cfbfd1: unknown error after kill: runc did not terminate sucessfully: container_linux.go:388: signaling init process caused "permission denied" | |
| # : unknown | |
| # Removing network flyway_default | |
| # ERROR: error while removing network: network flyway_default id 8bdd09b60e327fce1aad7bf887ec9a14a2aade50b03b1acee6f3befc1fc08b56 has active endpoints | |
| # | |
| # uname -a | |
| # Linux omen4-hp 5.0.0-37-generic #40~18.04.1-Ubuntu SMP Thu Nov 14 12:06:39 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux |
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
| sudo dscl . append /Groups/_developer GroupMembership justin |
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
| # install tools | |
| sudo apt-get install pkg-config cmake | |
| # install dependencies | |
| sudo apt-get install \ | |
| libssh2-1-dev \ | |
| libssl-dev \ | |
| zlib1g-dev \ | |
| libncurses5-dev \ | |
| libncursesw5-dev \ |
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
| # go get use git clone behind the screen | |
| # and git does not seem to honor | |
| # environment vairable 'http_proxy' or 'https_proxy' | |
| # So you have to setup both environment variable | |
| # and git global config 'http.proxy' or 'https.proxy' | |
| git config --global http.proxy http://127.0.0.1:1081 | |
| git config --global https.proxy http://127.0.0.1:1081 | |
| export http_proxy=http://127.0.0.1:1081 | |
| export https_proxy=http://127.0.0.1:1081 |
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
| apply plugin: 'java' | |
| repositories{ | |
| mavenCentral() | |
| } | |
| dependencies{ | |
| implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") | |
| } |