Skip to content

Instantly share code, notes, and snippets.

View requeijaum's full-sized avatar

Rafael Requião requeijaum

  • Salvador, BA - Brazil
View GitHub Profile
@florentroques
florentroques / ffmpeg-install.md
Last active April 27, 2020 15:31
Install FFMPEG with all flags on OS X with HomeBrew
brew install ffmpeg $(brew options ffmpeg | grep -vE '\s' | grep -- '--with-' | tr '\n' ' ')
@Koepel
Koepel / Progmem_far.ino
Last active March 27, 2024 15:16
Test PROGMEM beyond 64k
// Test PROGMEM beyond 64k
//
// This test is with Arduino IDE 1.8.5 and a Arduino Mega 2560.
//
// 29 december 2017
//
// For: http://forum.arduino.cc/index.php?topic=519175
//
// 2019: See https://forum.arduino.cc/index.php?topic=622922.0
// for multiple PROGMEM segments.
@OlesenkoViktor
OlesenkoViktor / PS3Dualshock_10_15.plist
Last active June 27, 2022 07:48
DualShock 3 + Mac OS
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CGPDeviceCategory</key>
<string>GamePad</string>
<key>CGPDeviceType</key>
<string>PS3</string>
<key>CGPDisplayNameOvr</key>
<string>DualShock3 Analogue Triggers</string>
@thiamsantos
thiamsantos / db-conventions.md
Last active April 13, 2025 02:08
Convenções de nomenclatura para banco de dados

Convenções de nomenclatura para banco de dados

Geral

Os nomes das tabelas e colunas devem estar minúsculas e as palavras devem ser separadas por underscore, seguindo o padrão snake case. E todos os termos devem estar em inglês, exceto alguns termos que não há tradução apropriada para o inglês. Sempre prefira nomes descritivos, evitando ao máximo contrações.

Tabelas

Os nomes das tabelas devem estar no plural.

@HenkPoley
HenkPoley / KEYDB.cfg
Last active January 18, 2025 01:51
KEYDB.cfg of 2017 september 2nd - 14:04:55, originally from http://labdv.com/aacs/ . downloaded from https://web.archive.org/web/20170902140455id_/http://www.labdv.com/aacs/KEYDB.cfg - you can use it with VLC 2.2.4 (not newer! - http://download.videolan.org/pub/videolan/vlc/2.2.4/ ) and libaacs.dll from https://vlc-bluray.whoknowsmy.name
; KEYDB.cfg
; 2017-09-02 16:04:54
;
; server: http://www.labdv.com/aacs
; processing keys: 18 (18 from doom9.org forum)
; host certificates: 8 (7 from doom9.org forum)
; disc VUK keys: 24010 keys for 23999 discs (0 from doom9.org forum)
; processing keys
| PK | 0x810827A76E5B2CC1685E3217A23E2186 ; DK_V01-V12
@ammarshah
ammarshah / all_email_provider_domains.txt
Last active April 21, 2025 07:13
A list of all email provider domains (free, paid, blacklist etc). Some of these are probably not around anymore. I've combined a dozen lists from around the web. Current "major providers" should all be in here as of the date this is created.
0-mail.com
007addict.com
020.co.uk
027168.com
0815.ru
0815.su
0clickemail.com
0sg.net
0wnd.net
0wnd.org
@franciscocpg
franciscocpg / README.md
Last active October 15, 2021 07:09
Export/import gpg key

Export

gpg --output mygpgkey_pub.gpg --armor --export [email protected]
gpg --output mygpgkey_sec.gpg --armor --export-secret-key [email protected]

Import

gpg --import mygpgkey_pub.gpg
gpg --allow-secret-key-import --import mygpgkey_sec.gpg
@windyinsc
windyinsc / ffmpeg-cheatsheet.md
Last active January 30, 2025 08:40 — forked from larvata/ffmpeg-cheatsheet.md
ffmpeg notes

ffmpeg Cheatsheet

  • Join TS Files
  • Convert TS to MP4
  • Download Online AES-128 Encrypted HLS video
  • Convert Video to GIF
  • Extract Audio and Convert it to MP3
  • Burn Subtitles into Video

Join TS Files

anonymous
anonymous / psndl.db2rap.js
Created June 28, 2017 07:07
"use strict";
const fs = require("fs");
const path = require("path");
const FS_OPTS = {encoding: "utf8"};
// const RE_RAP = /;([^;]+\.rap);([0-9a-f]+);/ig;
const RE_RAP = /;([0-9a-z_\-]+\.rap);([0-9a-f]{32,32});/ig;