Skip to content

Instantly share code, notes, and snippets.

View bennyyip's full-sized avatar
🚫
This account has been suspended.

BenYip bennyyip

🚫
This account has been suspended.
View GitHub Profile
@bennyyip
bennyyip / cue_to_mp3.py
Created July 3, 2017 07:40 — forked from bancek/cue_to_mp3.py
CUE splitter using ffmpeg (to mp3)
cue_file = 'file.cue'
d = open(cue_file).read().splitlines()
general = {}
tracks = []
current_file = None
@bennyyip
bennyyip / wtab.c
Last active March 17, 2017 06:07 — forked from d0k/wtab.c
C program to generate LaTeX truth tables
/* ./wtab n
* creates a truth table for LaTeX with n bits
*/
#include <stdio.h>
#include <stdlib.h>
#define SIZE unsigned long
#define MAXBITS sizeof(SIZE)*8-1