See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| if (!window.decodeStanza) { | |
| window.decodeStanza = require("WAWap").decodeStanza; | |
| window.encodeStanza = require("WAWap").encodeStanza; | |
| } | |
| require("WAWap").decodeStanza = async (e, t) => { | |
| const result = await window.decodeStanza(e, t); | |
| console.log('RECV', result.toString(), result); |
| #!/bin/bash | |
| # Author: Simon Legner <[email protected]> | |
| convert () { | |
| in="$1" | |
| out="${in%.m4a}.ogg" | |
| ffmpeg -i "$in" \ | |
| -acodec libvorbis -aq 4 -vn -ac 2 \ | |
| -map_metadata 0 \ | |
| "$out" |
| /* | |
| * packet-adb.c | |
| * | |
| * Routines for Android Debug Bridge (ADB) protocol dissection | |
| * Author: Geir Sporsheim <[email protected]> | |
| */ | |
| #ifdef HAVE_CONFIG_H | |
| #include "config.h" | |
| #endif |