Skip to content

Instantly share code, notes, and snippets.

View lastforkbender's full-sized avatar
🎯
Focusing

ROBERT CECIL lastforkbender

🎯
Focusing
  • Row4
  • Milkyway
View GitHub Profile
@lastforkbender
lastforkbender / attenuamas.py
Created January 9, 2026 13:19
Avaliação vetorizada das formas modais, zone frequências de excitação
# attenuamas.py
import numpy as np
class FoldingModel:
# Características:
# (1) Integração semi-implícita estável para as amplitudes modais
# (2) Avaliação vetorizada das formas modais
# (3) Cálculo de deslocamento e atenuação por elemento
# (4) Métodos de teste unitário integrados para verificar consistência e estabilidade
def __init__(self,
@lastforkbender
lastforkbender / cecil_plus_ide.py
Last active January 7, 2026 11:29
Cecil+ IDE / Spectral Multi-dispatch GUI Works
# 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
@lastforkbender
lastforkbender / cp_doc_kywrd_pipe.txt
Last active December 9, 2025 20:56
Cecil+ — Documentação da Linguagem de Programação / PALAVRA-CHAVE: pipe
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
@lastforkbender
lastforkbender / cubosai.py
Created October 12, 2025 10:44
Comutação de três estados, modulação axis-map(wave) por par de blocos de cubo e persistência em XML
# 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
@lastforkbender
lastforkbender / tt_dom_inpr_1_02.py
Last active October 11, 2025 12:30
Tictac interpreter 1.02
# 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
@lastforkbender
lastforkbender / cognitive_bspline_cycle.py
Created September 29, 2025 02:37
Minimal cognitive B-spline purposes limit-cycle model
# 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
#
@lastforkbender
lastforkbender / giant_slayer.py
Created September 28, 2025 12:25
Key Session Dataset
# giant_slayer.py
import time
TimerState = tuple
MOD64 = 1<<64
#///////////////////////////////////////////////////////////////////////////////////
def ringprint32(mv: memoryview) -> int:
@lastforkbender
lastforkbender / catpis.py
Created September 28, 2025 08:44
hybrid collision ast cube/spheres error chaining
# 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
@lastforkbender
lastforkbender / gsp.py
Created September 27, 2025 16:57
Grid Signal Processor with satellite interpolation kernels, pi-correlated RNG, spectral/harmonic phase sequencing opts, adjustable directional interpolation probability & per-pass callback(s).
# 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
@lastforkbender
lastforkbender / dctm.py
Created September 26, 2025 23:15
Diffusion Chained Tunneling Coupler Modal
# dctm.py - Diffusion Chained Tunneling Coupler Modal
import math
CNST_EP = 2.718281828459045
#___________________________________________________________________________________
def mat_mult_vec(M, v):
return [sum(M[i][j]*v[j] for j in range(len(v))) for i in range(len(M))]
#___________________________________________________________________________________