Skip to content

Instantly share code, notes, and snippets.

@kylepls
kylepls / pdf_merge.py
Created November 15, 2020 23:47
Merges several input PDFs into a single, large, PDF with bookmarks for each individual PDF.
import os
import re
import sys
import PyPDF2
MIN_PYTHON = (3, 0)
"""
@kylepls
kylepls / PsAndQs.java
Created May 27, 2023 21:36
PsAndQs Encoder
import java.io.*;
import java.nio.charset.StandardCharsets;
/**
* Encode streams into Ps and Qs.
* Why? Because it's mannerly.
* P = 0
* Q = 1
*/
public class PsAndQs {
@kylepls
kylepls / rubiks-gen.ipynb
Last active February 11, 2024 08:11
Rubik's Algorithm Visualizer
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kylepls
kylepls / spiral.ipynb
Last active February 11, 2024 08:26
2-Dimensional Grid Square Spiral Coordinates
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.