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
# usage: savesong https://youtube.com/watch?v=thewatchidhereidk "the song name i guess" | |
yt-dlp $1 --extract-audio --audio-format=mp3 -o ~/Music/TEMPORARY.mp3 | |
mv ~/Music/TEMPORARY.mp3 "$HOME/Music/$2.mp3" |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stddef.h> | |
#include <stdarg.h> | |
#include <string.h> | |
struct | |
WriteBuffer { | |
size_t size; | |
size_t length; |
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
#include <stdio.h> | |
#include <stddef.h> | |
#define TYPE_NIL 0 | |
#define TYPE_BOOLEAN 1 | |
#define TYPE_INTEGER 2 | |
#define TYPE_FLOAT 3 | |
#define TYPE_STRING 8 | |
#define TYPE_THREAD 9 |