Skip to content

Instantly share code, notes, and snippets.

@caio-vinicius
caio-vinicius / compile-ffmpeg-nvenc.sh
Created September 7, 2021 12:31
This bash script will compile a static Ffmpeg build with NVENC and VAAPI hardware-accelerated support on Ubuntu in your home directory. You can modify the script to customize the build options as you see fit.
#!/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 \
@caio-vinicius
caio-vinicius / norminette.sh
Created August 6, 2021 21:09
norminette automatically update in /etc/init.d
#!/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
@caio-vinicius
caio-vinicius / dhclient.conf
Created July 6, 2021 01:33 — forked from thorsummoner/dhclient.conf
How to request specific IP in /etc/dhcp/
# 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
#include <mlx.h>
typedef struct s_data {
void *img;
char *addr;
int bits_per_pixel;
int line_length;
int endian;
} t_data;
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
@caio-vinicius
caio-vinicius / backup.sh
Created January 27, 2021 20:55
backup with mongodump script discord webhooks
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
setInterval(function() {
fetch(URL).then(function (result) {
if (result.status == 200) {
window.location.href = URL;
}
})
}, 1000);
@caio-vinicius
caio-vinicius / vim-nginx-conf-highlight.sh
Created January 7, 2021 13:05 — forked from ralavay/vim-nginx-conf-highlight.sh
Enable syntax highlight for Nginx conf file in Vim
#!/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
@caio-vinicius
caio-vinicius / python.yaml
Created January 3, 2021 14:11
CI Python projects
name: CI Pytest and Flake8
on:
pull_request:
branches:
- main
paths:
- '**.py'
jobs:
git checkout --orphan media
git rm -rf .
cp image .
git add .
git commit -m "something"
git push origin media