Skip to content

Instantly share code, notes, and snippets.

Word groups by Currier (min length: 3)
Folios are classified as Currier A or Currier B based on physical layout.
Each group shows which folios contain the seed word.
======================================================================
CURRIER A
======================================================================
aii(1): (word length: 3 / group items: 292)
folios: f99v
length: min=4, max=15, avg=7.5
#!/usr/bin/env python3
"""
Group words by similarity - finds all words containing each other as substrings.
Usage: python group_words.py [min_length]
Example:
python group_words.py # min_length=2 (default)
python group_words.py 5 # only group words with length >= 5
"""
#!/usr/bin/env python3
"""
Group words by similarity - finds all words containing each other as substrings.
Usage: python group_words.py [min_length]
Example:
python group_words.py # min_length=2 (default)
python group_words.py 5 # only group words with length >= 5
"""
@paigeadelethompson
paigeadelethompson / group_words.py
Last active June 11, 2026 23:53
Voynich freq dist + word groups
#!/usr/bin/env python3
"""
Group words by similarity - finds all words containing each other as substrings.
Usage: python group_words.py [min_length]
Example:
python group_words.py # min_length=2 (default)
python group_words.py 5 # only group words with length >= 5
"""
static int ROWS = 20;
static int COLS = 40;
void initializeBoard(int *board) {
int i, j;
for (i = 0; i < ROWS; i++) {
for (j = 0; j < COLS; j++) {
*(board + i * COLS + j) = 0;
}
}
# TODO: FreeBSD FIB / Multi-Instance Support in FRR
This document outlines the roadmap for adapting FRR's VRF implementation to support FreeBSD FIBs (Routing Tables).
## Technical Constraints & Standards
- [ ] **Platform Gating**: All FreeBSD-specific system calls (like `SO_SETFIB`) and logic must be wrapped in `#ifdef __FreeBSD__` blocks to prevent regressions or build failures on other BSDs or Linux.
- [ ] **Feature Detection**: Where possible, use existing FRR macros for BSD feature detection to maintain compatibility with different FreeBSD versions.
## 1. YANG & Northbound Abstraction
- [ ] **Extend `frr-vrf.yang`**: Add a `table-id` leaf to the `/frr-vrf:lib/vrf` list. This allows users to manually map a VRF name to a kernel FIB ID.
#include <Library/BaseMemoryLib.h>
#include <Library/MemoryAllocationLib.h>
#include <Library/UefiBootServicesTableLib.h>
#include <Library/UefiRuntimeServicesTableLib.h>
#include <Library/DevicePathLib.h>
#include <Guid/GlobalVariable.h>
/**
Scrubs all serial and UART device paths from the ConOut variable.
**/
#define EFI_GLOBAL_VARIABLE_GUID \
{ 0x8B843E20, 0x8110, 0x4318, { 0xCC, 0x69, 0x87, 0xCE, 0x47, 0x46, 0x61, 0x03 } }
// Standard UEFI Terminal Type GUIDs used by BIOS redirection
static EFI_GUID gEfiPcAnsiGuid = { 0xE0C1ECE1, 0x5544, 0x11D4, { 0x9A, 0x39, 0x00, 0x90, 0x27, 0x3F, 0xC1, 0x4D } };
static EFI_GUID gEfiVt100Guid = { 0xDFA666B1, 0x1E59, 0x11D4, { 0x9A, 0x38, 0x00, 0x90, 0x27, 0x3F, 0xC1, 0x4D } };
static EFI_GUID gEfiVt100PlusGuid = { 0x7BA0BCC0, 0x1B58, 0x4114, { 0xA7, 0xA9, 0x54, 0x90, 0xA3, 0x84, 0x2B, 0x8B } };
static EFI_GUID gEfiVtUtf8Guid = { 0xAD15A0D6, 0x8BEC, 0x4B4A, { 0xBA, 0x20, 0x00, 0x80, 0xC7, 0x7E, 0x59, 0x37 } };
EFI_STATUS FilterConsoleVariable(CHAR16 *VarName) {
say you have a VPS ..
- it has a wan address of 208.79.92.66/24
- you can assign more addresses but it doesn't do you a hell of a lot of good because you want to pilfer addresses from that
/24 for other servers
- create a tunnel between your VPS and the host that you want to have use the address, lets say we're going to use
208.79.92.67/24 and 208.79.92.68/24
- tunnel remote is 10.0.0.1 tunnel local is 10.0.0.2
- add a route to 208.79.92.67/32 via 10.0.0.1
- add an ARP proxy entry; what this does is sends ARP saying 208.79.92.67 is at <mac address of interface that 208.79.92.66/24
./README.txt.old:Django LDAP Certificate Authority + Control Plane System
./README.txt.old:========================================================
./README.txt.old:This system is an internal infrastructure platform built using Django that combines a private Certificate Authority (PKI), LDAP-based policy enforcement, Kerberos bootstrap enrollment, asynchronous certificate issuance via Celery, and a certificate-based control-plane messaging system over UDP.
./README.txt.old:It is designed for environments where machines are fully managed and centrally controlled. Identity is not user-based or credential-based — it is entirely certificate-based.
./README.txt.old:After a machine is enrolled, it is no longer identified by Kerberos or any API key system. Instead, its identity becomes a set of X.509 certificates issued by the internal CA, with a mandatory control-plane certificate acting as the primary identity for all future communication.
./README.txt.old:LDAP defines what a machine is allowed to become. The CA e