Skip to content

Instantly share code, notes, and snippets.

@threevi
threevi / Python3_Snippets.md
Last active May 24, 2021 22:22
Useful Python 3 Code Snippets
@threevi
threevi / musl-static.c
Created April 24, 2018 03:29
Compile static C program with musl-gcc
#include <stdlib.h>
#include <stdio.h>
// Compile with `musl-gcc -static -Os musl-static.c -o musl-static`
int main() {
printf("Hello, Dave.\n");
return 0;
}
<Response>
<Say voice="alice">I am so fancy. You already know.</Say>
<Play>http://demo.twilio.com/docs/classic.mp3</Play>
</Response>