This file contains 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
{ | |
"workbench.activityBar.visible": true, | |
"window.menuBarVisibility": "default", | |
"files.exclude": { | |
".*": true | |
}, | |
"editor.minimap.enabled": false, | |
"breadcrumbs.enabled": false, | |
"editor.renderWhitespace": "all", | |
"workbench.startupEditor": "newUntitledFile", |
This file contains 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
debian | |
sudo apt-get remove docker docker-engine docker.io containerd runc -y | |
sudo apt-get update -y | |
sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common -y | |
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add - | |
sudo apt-key fingerprint 0EBFCD88 | |
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable" | |
sudo apt-get update | |
sudo apt-get install docker-ce docker-ce-cli containerd.io |
This file contains 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
log_format info '$remote_addr - [$time_local] $request $status $body_bytes_sent $http_referer $http_user_agent $gzip_ratio'; | |
server { | |
listen 80; | |
server_name $host; | |
return 301 https://$host$request_uri; | |
} | |
server { | |
listen 443 ssl; |
This file contains 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
git clone https://github.com/42Paris/minilibx-linux | |
cd minilibx-linux | |
apt-get install libxext-dev libxrandr-dev libx11-dev libbsd-dev libssl-dev | |
mv minilibx-linux/man/man1 to /usr/local/man/ | |
mv minilibx-linux/libmlx.a to /usr/local/lib/ | |
mv minilibx-linux/mlx.h to /usr/local/include/ | |
# compile example | |
# clang -Wall -Wextra -Werror main.c -lbsd -lmlx lXext -lX11 |
This file contains 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
git checkout --orphan media | |
git rm -rf . | |
cp image . | |
git add . | |
git commit -m "something" | |
git push origin media |
This file contains 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
name: CI Pytest and Flake8 | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '**.py' | |
jobs: |
This file contains 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 | |
# | |
# Highligh Nginx config file in Vim | |
# Download syntax highlight | |
mkdir -p ~/.vim/syntax/ | |
wget http://www.vim.org/scripts/download_script.php?src_id=19394 -O ~/.vim/syntax/nginx.vim | |
# Set location of Nginx config file | |
cat > ~/.vim/filetype.vim <<EOF |
This file contains 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
setInterval(function() { | |
fetch(URL).then(function (result) { | |
if (result.status == 200) { | |
window.location.href = URL; | |
} | |
}) | |
}, 1000); |
This file contains 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
url="https://discord.com/api/webhooks/#/#" | |
if mongodump mongodb+srv://-:[email protected]/ --db=-; then | |
curl -H "Content-Type: application/json" -X POST -d '{"content":"Database backup was successful!"}' $url | |
else | |
curl -H "Content-Type: application/json" -X POST -d '{"content":"@everyone Database backup failed."}' $url | |
fi | |
# crontab -e | |
# 0 */2 * * * path/backup.sh |
This file contains 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
mkdir /root/.ssh | |
touch /root/.ssh/authorized_keys | |
echo "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDZ1UZTmft6TzwKHLgbM9Cbbt+Pdc/Z96dVG+smnkSNlQd38CnOpYhnb0j1bG9LCRqGhWUeP+M3p4mAJ639h6xr7fL/ft1iNkC2cUfutd2m5vX5C+MhVcvgbhuT3qUDgNFTH4498gTN5Ihf/OuG2K5aoF/s5FMg+uVuIQRdOExYzlgtMuUV6qxEkWpopUfEI1B3OUqQN9wO846LqSus1PJd+lUddaMPijYJiOZxpPcT9XWlN7QwuB9tYUKiX0g53VGJn/FEKTFr1pj0syugz+C0rwVacHQdaKEXlye/gKDLnSQLJXaPUDNwyqRisSxaK2HacX9WkiuZzsc2AcJVUjM1 caio@caio" >> /root/.ssh/authorized_keys |
OlderNewer