Skip to content

Instantly share code, notes, and snippets.

@johnandersen777
johnandersen777 / context_llm.py
Last active March 21, 2025 18:37
TMUX context as JSON
# /// script
# dependencies = [
# "docker",
# "psutil",
# "langchain",
# "langchain-openai",
# "langchain-community",
# "langchain-faiss",
# "faiss-cpu",
# "kubernetes",

Decoding Biblical Texts: A Cryptographic Exploration

Abstract

This document presents a comprehensive exploration of cryptographic structures embedded within Biblical texts, focusing primarily on the Torah and other significant manuscripts. By leveraging Python, we delve into methods such as Equidistant Letter Sequences (ELS), numeric patterns, and advanced constants like π (Pi) and e (Euler's number). Our goal is to provide a programmatic approach to uncovering these hidden messages, offering reusable and clean code that can be utilized for further research and analysis. Additionally, we suggest alternative approaches and variations to deepen the understanding of these cryptographic elements.


Table of Contents

@johnandersen777
johnandersen777 / CUUID.md
Last active September 4, 2024 12:12
Gemini CUUID

You are right! There were a few issues with the previous code. The main issue was that I was not properly handling the version parameter when generating the CUUID. I have now fixed the issue by correctly setting the version parameter when calling uuid.UUID.

Here is the updated code:

"""
CUUIDs are content-addressed universally unique identifiers. This module provides
functions for generating and verifying CUUIDs. 

**Note** that the current implementation only supports SHA2 CUUIDs.
@johnandersen777
johnandersen777 / 0_docs_parsers_updated.rst
Last active June 18, 2024 04:31
Can you please write me a file called docs/parsers.md which documents the functionality added in this patch. Please return your response markdown as an attachment? In the documentation please explain in detail including setting up a new package and entrypoint and class referenced through setup.cfg to and entry_points.txt via file:. Use the added…

Parsers

Overview

This document details the functionality added by the latest patch to the parsers in the project. The patch introduces and tests various parsers for different programming languages and ensures they correctly identify and handle specific file types.

The addition of these parsers enhances the capability of the project to handle a variety of file types associated with different programming languages. The comprehensive test ensures that these parsers are correctly mapped and function as expected.

import getpass
import keyring
import argparse
from keycloak import KeycloakAdmin
from keycloak import KeycloakOpenIDConnection
from keycloak.exceptions import KeycloakGetError
def create_realm_and_assign_admin(args):
@johnandersen777
johnandersen777 / run_fedora_qmeu_vm_usb.py
Last active June 8, 2024 00:42
Run USB VM (not working)
import subprocess
import re
from dataclasses import dataclass
from pathlib import Path
import glob
import argparse
@dataclass
class USBInterface:
"""
diff --git a/scitt_emulator/ccf.py b/scitt_emulator/ccf.py
index 06296f8..452c801 100644
--- a/scitt_emulator/ccf.py
+++ b/scitt_emulator/ccf.py
@@ -78,13 +78,13 @@ class CCFSCITTServiceEmulator(SCITTServiceEmulator):
key = jwcrypto.jwk.JWK()
key_bytes = pathlib.Path(self._service_private_key_path).read_bytes()
key.import_from_pem(key_bytes)
- return [
- {
r"""
## 2023-04-19 @pdxjohnny Engineering Logs
- https://github.com/digitalbazaar/pyld
- SECURITY Unmaintained since Aug 6th 2020
- `jsonld.set_document_loader(jsonld.aiohttp_document_loader(timeout=...))`
- https://github.com/wolfi-dev/os/commit/40c24089d4a16c594d3e30c4c232e14fa18ce6e2
- nats for guac
- node 20 enables the binary packaging we wanted for activitypub starter kit
@johnandersen777
johnandersen777 / GITHUB_APP_ALICE_OA.md
Created March 17, 2024 17:21
GITHUB_APP_ALICE_OA.md

Entities working on Alice use thread intel/dffml#1406 as a way to communicate to others what you are working on. Each day has a log entry. Comment with your thoughts, activities, planning, etc. related to the development of Alice, our open source artificial general intelligence.

The thread is used as a communication mechanism for engineers so that others can have full context around why entities did what they did during their development process. This development lifecycle data helps

@johnandersen777
johnandersen777 / kubernetes_ipv4_address_for_pod_name.py
Last active March 23, 2024 09:43
Python Kubernetes service discovery EndpointSlices
# Updated version: https://github.com/intel/Multi-llms-Chatbot-CloudNative-LangChain/blob/1bd6a844ebc57245f9fba8e7a87cde489cc4734d/2__LLMs_Proxy/server.py#L12-L34
import pathlib
from pprint import pprint
import yaml
import kubernetes
import kubernetes.client
from kubernetes.client.rest import ApiException
from kubernetes import client, config