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
{ | |
"sync.gist": "1f7965c87413a729594603c81033da43", | |
"editor.inlineSuggest.enabled": true, | |
"workbench.iconTheme": "eq-material-theme-icons", | |
"workbench.colorTheme": "Default Light+", | |
"terminal.integrated.defaultProfile.windows": "Git Bash" | |
} |
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 -s | |
apt update | |
apt upgrade | |
wget https://linktodownloadxamppxampp-linux-x64-7.1.10-0-installer.run | |
chmod +x xampp-linux-x64-7.1.10-0-installer.run | |
./xampp-linux-x64-7.1.10-0-installer.run | |
sudo ln -s /opt/lampp/bin/php /usr/bin/php | |
#In order to start all the xampp services, we need to run the following command in the terminal: |
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://github.com/heroku/heroku-buildpack-nodejs | |
https://github.com/heroku/heroku-buildpack-ember-cli | |
https://github.com/hone/heroku-buildpack-static | |
NPM_CONFIG_PRODUCTION=false |
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 | |
sudo apt install php-cli unzip | |
cd ~ | |
curl -sS https://getcomposer.org/installer -o composer-setup.php | |
HASH=`curl -sS https://composer.github.io/installer.sig` | |
echo $HASH | |
php -r "if (hash_file('SHA384', 'composer-setup.php') === '$HASH') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" | |
sudo php composer-setup.php --install-dir=/usr/local/bin --filename=composer | |
composer |
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
# file ~/.ssh/config | |
# JrogeT | |
Host github.com | |
HostName github.com | |
User jroget | |
IdentitiesOnly=yes | |
PreferredAuthentications publickey | |
PasswordAuthentication no | |
IdentityFile ~/.ssh/jroget_github |
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
tasks: | |
- name: Configuring Wakatime | |
command: | | |
echo "[settings]" >> /home/gitpod/.wakatime.cfg | |
echo "api_key = $WAKATIME_API_KEY" >> /home/gitpod/.wakatime.cfg | |
exit | |
- name: Configuring Laravel Project | |
command: | |
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
# "xampp/apache/conf/extra/httpd-vhosts.conf" | |
# "/opt/lampp/etc/extra" | |
<VirtualHost *:80> | |
DocumentRoot "C:/Projects/Php/Test/public" | |
ServerName test.localhost | |
</VirtualHost> | |
in ubuntu: |
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
check if all your current project dependencies support null safety by using: | |
```dart pub outdated --mode=null-safety``` | |
Then, run the following command to migrate: | |
```dart migrate``` | |
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
1. slmgr /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX | |
2. slmgr /skms kms8.msguides.com | |
3. slmgr /ato | |
Home: TX9XD-98N7V-6WMQ6-BX7FG-H8Q99 |
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
Procfile: | |
web: npm start | |
package.json: | |
"start": "node /dist/project/abc.js" | |
"build": "tsc" | |
"dependencies":[ | |
.. | |
"tslint": "x.x.xx", |
OlderNewer