Skip to content

Instantly share code, notes, and snippets.

View saucecode's full-sized avatar

Julian saucecode

  • New Zealand
View GitHub Profile
@saucecode
saucecode / aoc16.py
Created December 16, 2017 07:31
awful and unclean solution
with open('day16challengeinput','r') as f:
data = f.read().split(',')
moves = []
for move in data:
if move[0] == 's':
moves.append( (0, int(move[1:])) )
elif move[0] == 'x':
@saucecode
saucecode / Game.cpp
Created June 26, 2018 10:44
attempt at porting mattdesl's 2d pixel perfect shadows
#include "Game.hpp"
#include <iostream>
#include <GL/glew.h>
#include <GLFW/glfw3.h>
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
From d2ef1e5505a7b3e9b3ad393df344b3cda5e2ad09 Mon Sep 17 00:00:00 2001
From: Julian <[email protected]>
Date: Tue, 18 Dec 2018 03:34:32 +1300
Subject: [PATCH] added locking of linear and angular velocities with
RigidBody::setLinearVelocityFactor(), RigidBody::setAngularVelocityFactor()
---
src/body/RigidBody.cpp | 45 +++++++++++++++++++++++++++++++++++++++++++-
src/body/RigidBody.h | 42 +++++++++++++++++++++++++++++++++++++----
src/engine/DynamicsWorld.cpp | 14 +++++++++++++-
@saucecode
saucecode / linkedlists.c
Created June 15, 2019 21:54
example linked lists implementation
#include <stdio.h>
#include <stdlib.h>
typedef struct {
int x;
int y;
float health;
} monster_t;
typedef struct {
import base64, zlib, sys, os, json
inflator = zlib.decompressobj()
bins = sorted([i for i in os.listdir('.') if i.endswith('.in.bin')], key=lambda j:int(j[:-7]))
pretty_print = True
# go through all the *.in.bin files, decompress them sequentially
# and write them to *.in.json files. Optionally pretty print
# them (switch the variable above)
'''
A 'range' in this context is a 2-tuple
(a, b) that represents the set of integers
in the (mathematical) range (a, b].
a must always be less than b.
'''
def range_contains(ra, sub):