- LibreELEC installation - LePotato config
- Flash to SD card
I hereby claim:
- I am nenad on github.
- I am stojanovikj (https://keybase.io/stojanovikj) on keybase.
- I have a public key ASDAknsWp4PSPBSxcZfCgwKtKCnghLipPDEsF723WAUvAAo
To claim this, I am signing this object:
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
[Desktop Entry] | |
Version=1.0 | |
Type=Application | |
Name=PhpStorm | |
Icon=/opt/phpstorm/bin/phpstorm.png | |
Exec=env _JAVA_AWT_WM_NONREPARENTING=1 PHPSTORM_JDK=/usr/lib/jvm/java-11-openjdk "/opt/phpstorm/bin/phpstorm.sh" %f | |
Comment=The Drive to Develop | |
Categories=Development;IDE; | |
Terminal=false | |
StartupWMClass=jetbrains-phpstorm |
On: how to implement Pact to validate contract between front-end services, gateway and backend services.
- https://javier.gilpereda.com/microservices/bdd-microservices-environment-using-consumer-driven-contract-testing-1
- https://javier.gilpereda.com/microservices/generating-consumer-contract-angular-application-using-pact-js-bdd-and-cdc
- https://javier.gilpereda.com/microservices/rest-api-gateway-using-netflix-zuul-and-pact-consumer-driven-contracts-bdd-and-cdc
- https://javier.gilpereda.com/microservices/implementing-springboot-restapi-using-pact-consumer-driven-contracts-bdd-and-cdc
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
#!/bin/sh | |
export LESS_TERMCAP_mb=$'\e[1;32m' | |
export LESS_TERMCAP_md=$'\e[1;32m' | |
export LESS_TERMCAP_me=$'\e[0m' | |
export LESS_TERMCAP_se=$'\e[0m' | |
export LESS_TERMCAP_so=$'\e[01;33m' | |
export LESS_TERMCAP_ue=$'\e[0m' | |
export LESS_TERMCAP_us=$'\e[1;4;31m' |