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
https://medium.com/@nditah/how-to-install-spring-tool-suite-3-on-ubuntu-18-30ca339a0787 | |
https://stackoverflow.com/questions/35842751/lombok-not-working-with-sts (post answer in this) | |
both installed and uninstalled version |
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
http://dolszewski.com/spring/spring-boot-properties-per-maven-profile/ |
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 apt update (prompts for acceptance) | |
sudo apt-get update --allow-releaseinfo-change | |
sudo apt-get update | |
sudo apt-get install <package-name> |
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
http://jsoneditoronline.org/ | |
https://github.com/josdejong/jsoneditor | |
https://jsoneditoronline.org/doc/ | |
https://json-schema-editor.tangramjs.com/editor.html#/ | |
https://github.com/tangram-js/json-schema-editor | |
https://json-schema-editor.tangramjs.com/ | |
https://github.com/Draggable/formeo | |
https://github.com/kaushiknishchay/react-form-builder#readme |
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 apt-get update | |
sudo apt-get install default-jre | |
sudo apt-get install default-jdk | |
get path from: | |
sudo update-alternatives --config java | |
sudo gedit /etc/environment | |
JAVA_HOME="/usr/lib/jvm/java-8-oracle" |
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
What problem does it solve and How was it addressed earlier? | |
How fast is it? | |
What runtimes can we use (X) in? | |
What are we doing for resiliency? For example, what are we doing to make sure the (X) service stays up? | |
How do we handle restarts? | |
How are we measuring the latency of the service? | |
What are the costs involved in building (X)? | |
What reports and dashboards will be available to us to help us understand what problems we could face? | |
How much in percentage of our business can use (X)? | |
What are its limitations? |
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
Step1: Take dump of all your databases | |
pg_dumpall > outputfile | |
Step2: Uninstall Postgres | |
dpkg -l | grep postgres | |
Step3: Get list of all postgres related packages from Step 2 and form purge command | |
sudo apt-get --purge remove postgresql postgresql-8.3 postgresql-client postgresql-client-8.3 postgresql-client-common postgresql-common postgresql-contrib postgresql-contrib-8.3 | |
Step4: Remove all data directories |
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
Step 1: Download JDK from Oracle | |
https://www.oracle.com/technetwork/java/javase/downloads/index.html | |
Step 2: Install the package | |
sudo dpkg -i jdk-11.0.1_linux-x64_bin.deb | |
Step 3: Config Java (use jdk-xx.x.x based on your downloaded version) | |
sudo update-alternatives --install /usr/bin/java java /usr/lib/jvm/jdk-11.0.1/bin/java 2 | |
sudo update-alternatives --config 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
Running docker as non-root user | |
Note: Should run every command in the user account. | |
Step 1: Create the docker group. | |
$ sudo groupadd docker | |
Step 2: Add your user to the docker group. | |
$ sudo usermod -aG docker $USER | |
Step 3: Change ownership to the current user |
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
Step 1: Create chained certificate with the provided crt files. Ordering is important. | |
~$ cat Server.crt Intermediate.crt Root.crt > Chained_certificate.crt | |
Step 2: Format the concatenation | |
The crt file should Follow the syntax | |
-----Start Certificate----- | |
############################ | |
############################ | |
-----End Certificate----- |
NewerOlder