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
| <html> | |
| <head> | |
| </head> | |
| <body> | |
| <h1>Hallo</h1> | |
| <p>Wie ist dein Name?</p> | |
| <input type="text"></input> | |
| <canvas id="my-house" width="300" height="300"></canvas> | |
| <button onclick="buttonClicked()">Click</button> | |
| <script> |
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
| rsync -a --files-from=copy.txt ./test1 ./test2 | |
| while inotifywait -r -e modify,create,delete /directory; do | |
| rsync -avz /directory /target | |
| done | |
| https://www.adaptavist.com/doco/display/KT/Annotating+Test+Cases | |
| https://bitbucket.org/Adaptavist/tm4j-junit-integration/src/master/src/main/java/com/adaptavist/tm4j/junit/ | |
| https://confluence.xpand-it.com/display/XRAY23/Testing+using+Selenium+and+JUnit+in+Java |
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
| Ctrl+M: Maximize view | |
| Ctrl+Shift+R : jump to resource | |
| Ctrl+Shift+T : jump to class | |
| Ctrl+. : jump to next error | |
| Ctrl+Shift+G : search for references | |
| Ctrl+Shift+P : select matching bracket | |
| Alt+Arrows : go forward / backwards | |
| Ctrl+Space : autocomplete | |
| Ctrl+Shift+F : format source | |
| Ctrl+Shift+O : organize imports |