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
| FROM gitpod/workspace-full-vnc | |
| USER gitpod | |
| # Install custom tools, runtime, etc. using apt-get | |
| # For example, the command below would install "bastet" - a command line tetris clone: | |
| # | |
| # RUN sudo apt-get -q update && # sudo apt-get install -yq bastet && # sudo rm -rf /var/lib/apt/lists/* | |
| # | |
| # More information: https://www.gitpod.io/docs/42_config_docker/ |
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
| import java.annotation.*; | |
| pubilc @interface Unfinished { | |
| public String lastUpdatedBy() default "unknown"; // for example @Unfinshed(lastUpdatedBy="20avva") | |
| public String lastUpdateTime() default "unknown"; //for example @Unfinisheed(lastUpdateTime="4/27/17 8:35 AM") | |
| } |