- Abstract class: Used to setup requirements for subclasses
- Abstract classes have more advantage than interfaces(primarily in instanceof check)
- For having correct code and implementation
- Link: https://app.diagrams.net/#Uhttps%3A%2F%2Fraw.githubusercontent.com%2FStephenGrider%2Fmicroservices-casts%2Fmaster%2Fdiagrams%2F05%2F03.drawio
- Diagram 28
- Lecture in 129 Udemy microservices course
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
| defaults write com.googlecode.iterm2 AlternateMouseScroll -bool true |
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
| # Config for contrail_command | |
| export SKIP_CONTRAIL_COMMAND_INSTALL=0 | |
| if [ $DEPLOYER = 'contrail_command_deployer' ] | |
| then | |
| export DEPLOYER=contrail_command | |
| export DEPLOYER_SERVER_HOST_STRING=root@10.204.216.120 | |
| export DEPLOYER_SERVER_HOST_PWD=c0ntrail123 | |
| fi | |
| # End of contrail_command config |
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
| agilio-vrouter5: | |
| virtioforwarder-coremask: "1,2" | |
| registry: "netronomesystems" | |
| registry-insecure: false | |
| # Remove the above if error is seen | |
| image-tag: "latest" |
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
| { | |
| "Profiles": [ | |
| { | |
| "Use Non-ASCII Font" : false, | |
| "Tags" : [ | |
| ], | |
| "Ansi 12 Color" : { | |
| "Green Component" : 0.3333333432674408, | |
| "Red Component" : 0.3333333432674408, |
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
| vim .zshrc | |
| gedit .zshrc | |
| cd ~/.profile | |
| printenv $PATH | |
| npx express-generator --help | |
| npx express-generator -e | |
| cd views | |
| pycharm index.=ejs | |
| npm install express | |
| npm install -g nodemon |
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
| history | grep brew | |
| brew cask install java | |
| brew cask install anaconda | |
| brew cask install homebrew/cask-versions/adoptopenjdk8 | |
| brew install jenkins | |
| which brew | |
| brew install kubectl | |
| brew cask install minikube | |
| brew install kubernetes-helm | |
| brew install telnet |
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
| > /Users/nuthanc/personal_projects/django_ajax_guide/src/my_app/views.py(25)postFriend() | |
| -> ser_instance = serializers.serialize('json', [ instance, ]) | |
| (Pdb) s | |
| --Call-- | |
| > /Users/nuthanc/personal_projects/django_ajax_guide/lib/python3.7/site-packages/django/core/serializers/__init__.py(122)serialize() | |
| -> def serialize(format, queryset, **options): | |
| (Pdb) l | |
| 117 if format not in _serializers: | |
| 118 raise SerializerDoesNotExist(format) | |
| 119 return _serializers[format].Deserializer |
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
| # Your system has configured 'manage_etc_hosts' as True. | |
| # As a result, if you wish for changes to this file to persist | |
| # then you will need to either | |
| # a.) make changes to the master file in /etc/cloud/templates/hosts.debian.tmpl | |
| # b.) change or remove the value of 'manage_etc_hosts' in | |
| # /etc/cloud/cloud.cfg or cloud-config from user-data | |
| # | |
| 192.168.30.20 noden20.maas noden20 | |
| 192.168.30.19 noden19.maas noden19 | |
| 192.168.40.19 noden19.maas noden19 |