Skip to content

dannas/rsc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Random source code.

This repository contains unpolished and - for most cases - uncompleted code that I've written for learning purposes. Others use gists for keeping track of similar things.

A reimplementation of the C++ standard library. It prioritizes readability over completeness and performance.

Solutions to the Matasano Crypto Challenge.

A stack based machine similar to p-code or the Java stack machine. Includes an interpreter; disassembler; a minimal compiler that uses the system stack for pops and pushes; and a compiler that keeps stack values in a compiler stack in the style of Firefox Webassembly baseline JIT compiler.

My unpolished Python solutions to the Advent of Code 2017 coding challenge.

Solutions to exercises from Robert Sedgewicks and Kevin Waynes book Algorithms 4th edition.