brew install ffmpeg $(brew options ffmpeg | grep -vE '\s' | grep -- '--with-' | tr '\n' ' ')
This file contains hidden or 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
// 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. |
This file contains hidden or 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
<?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> |
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.
Os nomes das tabelas devem estar no plural.
This file contains hidden or 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
; 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 |
This file contains hidden or 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
0-mail.com | |
007addict.com | |
020.co.uk | |
027168.com | |
0815.ru | |
0815.su | |
0clickemail.com | |
0sg.net | |
0wnd.net | |
0wnd.org |
gpg --output mygpgkey_pub.gpg --armor --export [email protected]
gpg --output mygpgkey_sec.gpg --armor --export-secret-key [email protected]
gpg --import mygpgkey_pub.gpg
gpg --allow-secret-key-import --import mygpgkey_sec.gpg
This file contains hidden or 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
"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; |