This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| revvign.c — Reverse full-length shift Vigenere con KDF temporal, relleno alfanumérico L=16, | |
| HMAC-SHA256 truncado a 16 bytes, verificación en tiempo constante, modos TCP cliente/servidor. | |
| Archivo de configuración: ./config_secret.ccc | |
| Puerto IJK4-TCP por defecto: 4242 | |
| "cc -std=c99 -O2 -o revvign revvign.c" | |
| Ejecutar servidor(Buenos Aires) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from typing import Generator, Tuple, Dict | |
| from collections import defaultdict | |
| # Parámetros | |
| L = 5 # longitud de la ventana de la "rod" (4-8 típico) | |
| # Dos bases independientes de 64 bits (impares, apariencia aleatoria) | |
| BASES = (11400714785074694791, 14029467366897019727) | |
| MASK64 = (1 << 64) - 1 # máscara para emular overflow uint64 | |
| def _build_bad_char(pattern: str) -> dict: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Cecil+ Programme Lang /IDE /PyQt5 - Spectral Multi-Dispatching GUI Works - /Py /C /C++ /C# | |
| # | |
| #____________________________________________________________________________________________________________________ | |
| # | |
| # CECIL+ CORE FEATURES/SERVICES: | |
| # | |
| # Spectral Multi-Dispatch(SMD) allows dispatch merges along multiple orthogonal axes(type, capability, performance | |
| # classing, resource constraints and much more. A LLM-AI using the Cecil+ language can more easily assemble large | |
| # systems like a game engine by composing small, focused handlers and letting the dispatch system select best-fit | |
| # implementations at runtime or compile time to C. Those technical parsing mechanisms include a built-in AI system |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Cecil+ — Documentação da Linguagem de Programação | |
| PALAVRA-CHAVE: pipe | |
| _______________________________________________________________________________ | |
| pipe | pipe+ | pipe- | |
| _______________________________________________________________________________ | |
| Construtor universal aplicável a variáveis, atributos de classe e a todos os laços. | |
| Essa palavra-chave pode ser um construtor neutro, positivo (pipe+) ou negativo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # cubosai.py ~ comutação de três estados, modulação axis-map(wave) por par de blocos de cubo e persistência em XML | |
| from typing import Tuple, Dict, Any, Optional, List | |
| import xml.etree.ElementTree as ET | |
| import torch.optim as optim | |
| import torch.nn as nn | |
| import numpy as np | |
| import torch | |
| import math | |
| import io |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # tt_dom_inpr_1_02.py /TT-DOM Plex Interpreter 1.02 with high-fidelity complex flir sequence imagings /Python 3.13 | |
| from PIL import Image, ImageFilter, ImageDraw, ImageFont | |
| from collections import defaultdict, namedtuple, deque | |
| from torch.utils.data import Dataset, DataLoader | |
| from scipy.linalg import cho_factor, cho_solve | |
| from xml.etree import ElementTree as ET | |
| from sklearn.cluster import KMeans | |
| import matplotlib.pyplot as plt | |
| import torch.nn.functional as F |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # cognitive_bspline_cycle.py | |
| #_____________________________________________________________________________________ | |
| # Minimal cognitive B-spline purposes limit-cycle model: | |
| # | |
| # • Adaptive conjunction matrix M mapping Theta -> Phi | |
| # • Weighted Recursive Least Squares updates for M using activations for weights | |
| # • E-Coupling: <||Phi-M(Theta)||^2> as extended merge dynamics | |
| # • New-node init from finite difference curvature prediction | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # giant_slayer.py | |
| import time | |
| TimerState = tuple | |
| MOD64 = 1<<64 | |
| #/////////////////////////////////////////////////////////////////////////////////// | |
| def ringprint32(mv: memoryview) -> int: | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # catpis.py - hybrid collision ast cube/spheres error chaining | |
| #____________________________________________________________________________________ | |
| from collections import Counter | |
| import random | |
| import cmath | |
| import math | |
| import json | |
| import time | |
| import sys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # gsp.py - Grid Signal Processor with satellite interpolation kernels, pi-correlated RNG, | |
| # spectral/harmonic phase sequencing opts, adjustable directional interpolation | |
| # probability & per-pass callback(s). (Reproduces the wave audio file @ runtime | |
| # where this module is -> current_module_run_directory/gsp_wave/gsp.wav) The | |
| # constants associated with these classes are in sim the satellites are facing | |
| # some type of reflected source from an infinite [angular] density regression. | |
| #__________________________________________________________________________________ | |
| from typing import List, Optional, Callable, Tuple | |
| import hashlib |
NewerOlder