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
| package hu.noherczeg.sample.messages; | |
| import com.fasterxml.jackson.annotation.JsonInclude; | |
| /** | |
| * | |
| */ | |
| @JsonInclude(JsonInclude.Include.NON_NULL) | |
| public class DetailedMessageDTO { |
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
| ================================================================= | |
| ENV vars: | |
| ================================================================= | |
| HOME is required for ssh to work properly!!!!!!!!!!!!!! | |
| HOME: c:\Users\herczegn - | |
| JAVA_HOME: e:\tools\java\jdk1.7.0_79 /bin | |
| MAVEN_HOME: e:\tools\maven /bin | |
| CATALINA_HOME: e:\tools\tomcat8 /bin |
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
| // log settings | |
| logger --default-log-level QUIET REST:NORMAL WORKFLOW:NORMAL | |
| // Simple | |
| mvn clean install -DskipTests=true -Dcheckstyle.skip=true -Djudo.generate.python=true -P \!app-frontend-build -P \!example,example-car | |
| // No frontend, only car example, faaaaast | |
| mvn clean install -DskipTests=true -Dcheckstyle.skip=true -Djudo.generate.python=true -b smart -T2 -P \!app-frontend-build -P \!example,example-car | |
| // no noting, fast, skip generate exist |
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 config --global url."https://".insteadOf git:// |
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 |
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
| -- -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
| 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
| '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
| ================================ | |
| 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?) |