Skip to content

Instantly share code, notes, and snippets.

View louisswarren's full-sized avatar

Louis Warren louisswarren

View GitHub Profile
@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[];
};
@louisswarren
louisswarren / test.c
Created June 26, 2022 03:50
Simple testing in C
int
check(const char *s, int p)
{
static int passes = 0;
static int failures = 0;
const char *fail = "\x1B[31mFAIL\x1B[0m";
const char *pass = "\x1B[34mPASS\x1B[0m";
if (s) {
fprintf(stderr, "[%s] %s\n", p ? pass : fail, s);
@louisswarren
louisswarren / pre-commit.R.bash
Created June 2, 2022 02:15
Precommit for linting R
#!/bin/bash
#
if git rev-parse --verify HEAD >/dev/null 2>&1
then
against=HEAD
else
# Initial commit: diff against an empty tree object
against=$(git hash-object -t tree /dev/null)
fi
@louisswarren
louisswarren / easy_passwords.py
Last active April 30, 2022 10:01
Generate passwords which are easy to type
# Generate passwords which can be typed without using any finger to press two
# different keys in a row.
from math import log, ceil
# For each finger, write the letters *you* type with that finger.
finger_classes = [
'qaz',
'wsx',
'edc',
@louisswarren
louisswarren / rcpp-trycatch.R
Last active March 25, 2022 00:50
Demonstration of performance penalty of Rcpp code being wrapped in tryCatch
library(Rcpp)
library(profvis)
cppFunction('
double
call_rnorm(int ignored)
{
Function f("rnorm");
NumericVector x = f(1);
@louisswarren
louisswarren / expandable_list.c
Created March 22, 2022 08:56
Linked lists can be expanded without invalidating pointers
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
struct node {
struct node *next;
long v;
};
struct list {
@louisswarren
louisswarren / tm.c
Created February 22, 2022 08:32
Compressed binary tape idea
#include <stdio.h>
#include <stdint.h>
#define BASE_SIZE 8
struct cell {
uint64_t value : 1;
uint64_t reps : 17;
uint64_t prev : 23;
uint64_t next : 23;
@louisswarren
louisswarren / Makefile
Last active December 24, 2021 03:11
Pipe pattern drawing
CFLAGS += -Ofast
.PHONY: default
default: refactor
.PHONY: refactor
refactor: out.pbm
sha256sum $< | diff -q goal.sum -
refactor-set: out.pbm