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
| git checkout feature_branch | |
| git rebase master | |
| git checkout master | |
| git merge --squash feature_branch | |
| # ------------------- | |
| git checkout feature/foo | |
| git pull --all | |
| git rebase develop |
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
| Font: Corbel, 10, b |
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
| git clean -fd | |
| git clean -fx |
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
| dnf -y install kernel-devel kernel-headers dkms gcc gcc-c++ | |
| Mount, and run install, it will work now... |
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
| ================================ | |
| CATALINA | |
| ================================ | |
| Create setenv.bat if not exists | |
| Add the following into it: | |
| set CATALINA_OPTS="-agentlib:jdwp=transport=dt_socket,address=9999,server=y,suspend=n" | |
| Start Tomcat with catalina start (or startup?) |
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
| 'body': | |
| 'cmd-h': 'unset!' | |
| 'html atom-text-editor.vim-mode.normal-mode': | |
| 'U': 'core:redo' | |
| 'cmd-1': 'tree-view:toggle-focus' | |
| 'L': 'vim-mode:move-to-last-character-of-line' | |
| 'cmd-F': 'formatter:format-code' | |
| 'cmd-shift-c': 'window:toggle-dev-tools' | |
| 'cmd-.': 'key-peek:toggle' |
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
| pg_dump.exe --host localhost --port 5432 --username "postgres" --no-password --format custom --section data --inserts --no-privileges --no-tablespaces --verbose --no-unlogged-table-data --file "E:\test2.backup" --schema "icp" "icp" |
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
| -- -h Host | |
| -- -p Port | |
| -- -U user name | |
| -- -w No password | |
| -- -F Format | |
| -- -O No owner | |
| -- -a Data only | |
| -- -x No privileges | |
| -- -v Verbose | |
| -- -f File target |
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
| MyCtrl.prototype.printReady = function(){ | |
| var vm = this; | |
| this.$timeout(function(){ | |
| vm.ready = true; // ready might toggle spinners, loading screens, or whatever | |
| }, 0); | |
| }; |
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
| hgsz6009 |