View postman-deb.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
#!/bin/sh | |
ls Postman*.tar.gz > /dev/null 2>&1 | |
if [ $? -eq 0 ]; then | |
echo "Removing old Postman tarballs" | |
rm -f $(ls Postman*.tar.gz) | |
fi | |
curlExists=$(command -v curl) |
View install-firacode.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 -p ~/.local/share/fonts | |
for type in Bold Light Medium Regular Retina; do wget -O ~/.local/share/fonts/FiraCode-$type.ttf "https://github.com/tonsky/FiraCode/blob/master/distr/ttf/FiraCode-$type.ttf?raw=true"; done | |
fc-cache -f |
View vscodeextensions.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
#!/bin/bash | |
## Atualizando o repositório ## | |
sudo apt update | |
## VSCode Extensions Milton Rodrigues ## | |
code --install-extension 2gua.rainbow-brackets | |
code --install-extension anseki.vscode-color |
View workstation.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
#!/bin/bash | |
## Starting my Shell Script! ## | |
sudo rm var lib dpkg lock-frontend ; sudo rm/var/cache/apt/archives/lock; | |
## Updating the repository ## | |
sudo apt update |
View hexen2.bat
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
@echo off | |
title Hexen 2 Pt-Br por Milton "Miltonr87" Rodrigues | |
COLOR 200 | |
:start | |
cls | |
echo _ _ __ __ __ __ _ _ __________ | |
echo I I I I I _I \ \ / / I _I I \ I I I I I I | |
echo I I_I I II_ \ / / II_ I \ I I I I I I |
View q3config.cfg
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
// generated by quake, do not modify | |
unbindall | |
bind TAB "+scores" | |
bind ENTER "+button3" | |
bind ESCAPE "togglemenu" | |
bind SPACE "+moveup" | |
bind + "sizeup" | |
bind - "sizedown" | |
bind 0 "weapon 10" | |
bind 1 "weapon 1" |