Skip to content

Instantly share code, notes, and snippets.

View CesarNog's full-sized avatar
☁️
Developing your Cloud Solution

Cesar Augusto Nogueira CesarNog

☁️
Developing your Cloud Solution
View GitHub Profile
@rvrsh3ll
rvrsh3ll / windows-keys.md
Created February 18, 2024 22:44
Windows Product Keys

NOTE

These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.

Index

@Tokugero
Tokugero / How-To.md
Last active December 8, 2021 10:35
Telegraf with pfSense 2.4.4 and pfBlockerNG

How to Install Telegraf logparser for pfBlockerNG

On pfSense

Step 1: Install pfBlockerNg-devel

System > Package Manager > Available Packages > pfBlockerNG-devel (As of this writing this was 2.2.5_19) (Optional, run the /usr/local/bin/geoipupdate.sh script)

[2.4.4-RELEASE][[email protected]]/root: /usr/local/bin/geoipupdate.sh
Fetching GeoIP.dat and GeoIPv6.dat...
/usr/local/share/GeoIP/GeoIPupdate.VOmIvG/GeoI100% of  694 kB 6683 kBps 00m00s
/usr/local/share/GeoIP/GeoIPupdate.TeBBKT/GeoI100% of 1171 kB 6629 kBps 00m00s
Parameter Description
--max-retry-attempts O número máximo de tentativas que um job falho não pode exceder.
--max-retry-duration O tempo máximo para tentar novamente um job falho, contado à partir da primeira execução.
--min-backoff O tempo mínimo a se esperar antes de tentar novamente após uma falha. O padrão é '5s'.
--max-backoff O tempo máximo a se esperar antes de tentar novamente após uma falha. O padrão é '1h'.
--max-doublings O número máximo de tentativas que o intervalo entre jobs falhos será dobrado antes do aumento se tornar constante. O padrão é 16.
[SERVICE]
Flush 5
Daemon Off
Log_Level info
Parsers_File /etc/fluent-bit/parsers.conf
[INPUT]
Name Tail
Path /mnt/data/docker/containers/*/*.log
Path_Key file
@CesarNog
CesarNog / Android Studio .gitignore
Created February 15, 2017 12:54 — forked from iainconnor/Android Studio .gitignore
A .gitignore for use in Android Studio
# Built application files
/*/build/
# Crashlytics configuations
com_crashlytics_export_strings.xml
# Local configuration file (sdk path, etc)
local.properties
# Gradle generated files
@edgarsandi
edgarsandi / new_relic_alert.sh
Created September 5, 2016 21:59 — forked from lichti/new_relic_alert.sh
Script to enable or disable newrelic alerts
#!/bin/bash
if [ ! -x /usr/bin/curl ]; then
echo "Please install curl"
exit 1
fi
if [ ! -x /usr/bin/jq ]; then
echo "Please install jq"
exit 1
@lichti
lichti / new_relic_alert.sh
Last active May 7, 2019 13:48
Script to enable or disable newrelic alerts
#!/bin/bash
if [ ! -x /usr/bin/curl ]; then
echo "Please install curl"
exit 1
fi
if [ ! -x /usr/bin/jq ]; then
echo "Please install jq"
exit 1
@onjin
onjin / docker-compose.yml
Created September 5, 2016 09:17
example docker compose for postgresql with db init script
postgres:
image: postgres:9.4
volumes:
- ./init.sql:/docker-entrypoint-initdb.d/init.sql
@loiane
loiane / ReceitaBoloMousseMorango.md
Last active August 22, 2018 14:00
ReceitaBoloMousseMorango
@dimasch
dimasch / redis-clear
Last active April 1, 2025 15:02
Clear a redis cache in Docker
docker exec -it container-name redis-cli FLUSHALL