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 | |
#This script will compile and install a static ffmpeg build with support for nvenc un ubuntu. | |
#See the prefix path and compile options if edits are needed to suit your needs. | |
#install required things from apt | |
installLibs(){ | |
echo "Installing prerequisites" | |
sudo apt-get update | |
sudo apt-get -y --force-yes install autoconf automake build-essential libass-dev libfreetype6-dev libgpac-dev \ |
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 | |
wget -q --spider http://google.com | |
if [ $? -eq 0 ]; then | |
python3 -m pip --disable-pip-version-check list --outdated | grep norminette >> /tmp/norminette_version.log | |
if [ $? -eq 0 ]; then | |
python3 -m pip --disable-pip-version-check -q install --upgrade norminette | |
fi | |
fi |
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
# Configuration file for /sbin/dhclient, which is included in Debian's | |
# dhcp3-client package. | |
# | |
# This is a sample configuration file for dhclient. See dhclient.conf's | |
# man page for more information about the syntax of this file | |
# and a more comprehensive list of the parameters understood by | |
# dhclient. | |
# | |
# Normally, if the DHCP server provides reasonable information and does | |
# not leave anything out (like the domain name, for example), then |
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
#include <mlx.h> | |
typedef struct s_data { | |
void *img; | |
char *addr; | |
int bits_per_pixel; | |
int line_length; | |
int endian; | |
} t_data; |
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 |
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
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
#!/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
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
git checkout --orphan media | |
git rm -rf . | |
cp image . | |
git add . | |
git commit -m "something" | |
git push origin media |