Skip to content

Instantly share code, notes, and snippets.

View louisswarren's full-sized avatar

Louis Warren louisswarren

View GitHub Profile
@louisswarren
louisswarren / vet.sh
Created February 6, 2023 02:00
Vet which media files to copy
#!/bin/sh
vet() {
echo "Playing $1"
mpv --no-audio-display "$1"
read x
if [ "$x" == "y" ]; then
cp -v "$1" "$2/"
else
echo "Skipping $1"
fi
@louisswarren
louisswarren / html.c
Created January 29, 2023 02:23
HTML generation in C
#include <stdio.h>
static const char *closebuff[1024];
static const char tabs[] = "\t\t\t\t\t\t\t\t";
void
put(int *t, const char *msg)
{
const char *indent = tabs + sizeof(tabs) - 1 - *t;
printf("%s%s\n", indent < tabs ? tabs : indent, msg);
@louisswarren
louisswarren / fullwidth.c
Last active January 13, 2023 21:57
Fullwidth text is even more upper case than upper case
#include <stdio.h>
#include <stdint.h>
int
main(void)
{
int c, d;
while ((c = getchar()) != EOF) {
d = c & 0x1f;
if ((c | 0x20) > 0x60 && d < 26) {
@louisswarren
louisswarren / spectrum.c
Last active December 30, 2022 08:00
Generate all hues in the colour spectrum
/*
* Idea: We want to cycle through all hues, with maximum saturation and value,
* using RGB. This gives 1530 = 3! * (256 - 3!) colours:
000-0fe: ff 00-fe 00
0ff-1fd: ff-01 ff 00
1fe-2fc: 00 ff 00-fe
2fd-3fb: 00 ff-01 ff
3fc-4fa: 00-fe 00 ff
4fb-5f9: ff 00 ff-01
@louisswarren
louisswarren / coding-style.sql
Created December 3, 2022 00:55
My coding style for SQL
/* Idea:
* Use 8 spaces for indenting the body of clauses
* Use 4 spaces for all other indentation
* Set your editor to expand tab to 4 spaces
This is highly readible while minimising effort while writing.
Indentation that requires manual character-level alignment would be
extremely painful (for me).
*/
with
@louisswarren
louisswarren / tabulate.py
Last active September 3, 2023 01:00
Tabulation in python, in place of spreadsheets
class NotApplicable:
def __repr__(self):
return 'NA'
def __str__(self):
return ''
def __add__(self, other): return self
def __sub__(self, other): return self
def __mul__(self, other): return self
@louisswarren
louisswarren / .gitignore
Last active August 21, 2022 00:02
CPython testing
*.o
*.o
primes.*.so
@louisswarren
louisswarren / private_ips.py
Last active July 9, 2022 00:18
All private IPv4 addresses, in all formats
IPV4_OCTET_TYPES = {
4: (24, 16, 8, 0,),
3: (24, 16, 0,),
2: (24, 0,),
1: ( 0,),
}
def num(ip):
octets = tuple(map(int, ip.split('.')))
bases = IPV4_OCTET_TYPES[len(octets)]
@louisswarren
louisswarren / Makefile
Last active July 2, 2022 00:30
Hash table in C
.PHONY: default
default: dict
./dict
dict: dict.c set.o
test: test.c set.o
set.o: set.c set.h
@louisswarren
louisswarren / flexible-in-flexible.c
Created June 29, 2022 07:34
Flexible array members in flexible array members are allowed
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct a {
char x;
char buf[];
};