Skip to content

Instantly share code, notes, and snippets.

View mateusfg7's full-sized avatar
:shipit:
learning...

Mateus Felipe Gonçalves mateusfg7

:shipit:
learning...
View GitHub Profile
@sergeyzenchenko
sergeyzenchenko / russia-ddos.md
Last active August 25, 2025 18:55
Russia DDOS list
@lucanello
lucanello / rclone_backup.py
Last active October 22, 2025 19:02
Python Rclone Script with Telegram and InfluxDB Reporting
# Python Rclone Script with Telegram and InfluxDB Reporting
# - This Script backups your data to any rclone location (see rclone.org)
# - You can execute scripts, commands and database dumps before running a single rclone command
# - It sends automatic error reports and summaries
# - It saves all statistics and operations to an Influx database
# - The data can be used for visualizations in e.g. Grafana
# - You can automate it by using cron
# Created by: Luca Koroll - https://github.com/lucanello
# Last update: 2021-07-04
@bradtraversy
bradtraversy / docker_wordpress.md
Last active December 4, 2025 14:35
Docker Compose FIle For Wordpress, MySQL & phpmyadmin

Wordpress & Docker

This file will setup Wordpress, MySQL & PHPMyAdmin with a single command. Add the code below to a file called "docker-compose.yaml" and run the command

$ docker-compose up -d

# To Tear Down
$ docker-compose down --volumes
@kylophone
kylophone / loudness.rb
Last active January 3, 2025 18:00
FFmpeg loudnorm filter - dual pass loudness normalization example - http://k.ylo.ph/2016/04/04/loudnorm.html
#!/usr/bin/env ruby
require 'open3'
require 'json'
ffmpeg_bin = '/usr/local/bin/ffmpeg'
target_il = -24.0
target_lra = +11.0
target_tp = -2.0
samplerate = '48k'