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 install -y geany |
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
| fp-compiler | |
| sudo apt-get install fp-compiler | |
| fp-ide | |
| sudo apt-get install fp-ide |
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
| to make git work with gitlab and github in parallel you need to change the config file ~/.ssh/config to the following: | |
| Host gitlab.com | |
| User git | |
| Hostname gitlab.com | |
| IdentityFile ~/.ssh/ID_RSA | |
| TCPKeepAlive yes | |
| IdentitiesOnly yes | |
| Host github.com |
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
| You need to put bash shell aliases in the ~/.bashrc file file executed by bash for non-login shells. On most modern Linux distros, you may want to put all your bash alias definitions into a separate file like ~/.bash_aliases, instead of adding them in the ~/.bashrc file directly. | |
| Please note that ~/.bash_aliases file only works if the following line presents in the ~/.bashrc file: | |
| if [ -f ~/.bash_aliases ]; then | |
| . ~/.bash_aliases | |
| fi | |
| Edit ~/.bash_aliases or ~/.bashrc with the editor of your choice | |
| Append your bash alias with for example with: alias ll='ls -la' |
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
| NVM is a Node Version Manager tool. Using the NVM utility, you can install multiple node.js versions on a single system. You can also choose a specific Node version for applications. It also provides an option to auto-select the node version using the .nvmrc configuration file. | |
| install nvm | |
| cd ~/asmara/workbench | |
| curl https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash | |
| source ~/.profile | |
| nvm --version | |
| install node and npm using nvm | |
| install the latest | |
| nvm install node |
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
| prequesites | |
| REMOTE_USER | |
| REMOTE_USER_PASSWORD | |
| PRODUCTIONSERVER_ADDRESS | |
| PRODUCTIONSERVER_TEMP_WORKING_DIRECTORY | |
| PRODUCTIONSERVER_MYSQL_ROOT_PASSWORD | |
| PRODUCTION_DATABASE_NAME | |
| PRODUCTION_DATABASE_DUMP | |
| LOCAL_DEV_MACHINE_TEMP_WORKING_DIRECTORY | |
| LOCAL_DEV_MACHINE_MYSQL_ROOT_PASSWORD |
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 add-apt-repository ppa:phoerious/keepassxc | |
| sudo apt update | |
| sudo apt install keepassxc |
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 snap install keepassxc |
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 snap install thunderbird |
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
| make sure that python3.8-venv is installed | |
| sudo apt install python3.8-venv | |
| python3 -m venv NAMEOFVIRTUALENVIRONMENT (for example venv-projectname) | |
| sourcce NAMEOFVIRTUALENVIRONMENT/bin/activate |
NewerOlder