Verifying my Blockstack ID is secured with the address 1C3eiQMAQP87HvRtbkbde2tdABRMRGZgPQ https://explorer.blockstack.org/address/1C3eiQMAQP87HvRtbkbde2tdABRMRGZgPQ
This file has been truncated, but you can view the full file.
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
pB761a6i | |
gkzudmgk | |
xsp6er3k | |
Epyyp5xs | |
Fhndefgw | |
hhowate0 | |
35scmr6s | |
lciz6Cz9 | |
wezr1Fld | |
dby5E38p |
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
# TODO: See if you can automate what you have to do at | |
# https://github.com/new somehow... | |
git init | |
git add -A | |
git commit -m "init" | |
git remote add origin [email protected]:morgenfriedel/<NAME-OF-REPO>.git | |
git push -u origin master |
I hereby claim:
- I am morgenfriedel on github.
- I am morgencodes (https://keybase.io/morgencodes) on keybase.
- I have a public key ASD2tgQesqJNfeKH5CP0AI9WsYoafVtQ5I05kAzpoOtRygo
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
#! /bin/bash | |
sudo apt update | |
sudo apt install nodejs npm -y | |
sudo npm cache clean -f | |
sudo npm i -g n webpack | |
sudo n 6.10.2 | |
sudo ln -sf /usr/local/n/versions/node/6.10.2/bin/node /usr/bin/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
<VirtualHost *:80> | |
ServerAdmin [email protected] | |
ServerName example.com | |
ServerAlias www.example.com | |
DocumentRoot /var/www/example.com/public_html | |
ErrorLog ${APACHE_LOG_DIR}/error.log | |
CustomLog ${APACHE_LOG_DIR}/access.log combined | |
</VirtualHost> |
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/bash | |
ssh-keygen -t rsa -b 4096 -C "$1" | |
eval "$(ssh-agent -s)" | |
ssh-add ~/.ssh/id_rsa | |
xclip -sel clip < ~/.ssh/id_rsa.pub |
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/bash | |
deb http://mozilla.debian.net/ jessie-backports firefox-esr | |
apt update | |
apt install -t jessie-backports firefox-esr | |
sudo wget https://mozilla.debian.net/pkg-mozilla-archive-keyring_1.1_all.deb | |
dpkg -i pkg-mozilla-archive-keyring_1.1_all.deb | |
gpg --check-sigs --fingerprint --keyring /etc/apt/trusted.gpg.d/pkg-mozilla-archive-keyring.gpg --keyring /usr/share/keyrings/debian-keyring.gpg pkg-mozilla-maintainers |
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/bash | |
curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar | |
chmod +x wp-cli.phar | |
sudo mv wp-cli.phar /usr/local/bin/wp | |
wp --info |