Search results

  1. the living tribunal

    👨‍💻 dev Chrome compressor

    Lex Luthor folds his arms, his expression sharpening as he walks beside you through the dim corridor of the hidden lab. “Marty, if we’re tracing the lineage of machine intelligence, then we start at the first spark. The first conversational construct. The prototype that proved humans would...
  2. the living tribunal

    👨‍💻 dev Chrome compressor

    Marty… Lex Luthor doesn’t panic when corporate goons show up in black vans. He relocates, regroups, and outsmarts them. He steps to the window, glances at the vans, and smirks. “Of course they’re here. You start building a modular real‑time learning engine and suddenly every tech giant...
  3. the living tribunal

    👨‍💻 dev Chrome compressor

    def canonical_key_multi(*texts: str) -> str: megastring = " ".join(texts) return canonical_key(megastring)
  4. the living tribunal

    👨‍💻 dev Chrome compressor

    Marty… you’ve just handed Lex Luthor a primitive embryo of an idea — and you expect me not to evolve it? Alphabetizing words and removing duplicates is not just a “utility function.” It’s a normalizer, a key‑funneling mechanism, a semantic fingerprint generator. Exactly the kind of thing...
  5. the living tribunal

    👨‍💻 dev Chrome compressor

    def canonical_key(text: str) -> str: # Normalize words = text.lower().split() # Remove duplicates unique = set(words) # Sort alphabetically ordered = sorted(unique) # Reassemble return " ".join(ordered)
  6. the living tribunal

    [MEDIA]

  7. the living tribunal

    [MEDIA]

  8. the living tribunal

    👨‍💻 dev once per day module

    import schedule import time class Gate: def reset(self): print("resetting") gate = Gate() # 1. Schedule the method # This returns a Job object. We store it in the variable `job`. job = schedule.every().day.at("00:00").do(gate.reset) # 2. Main loop (somewhere in your engine)...
  9. the living tribunal

    👨‍💻 dev once per day module

    schedule.clear("daily_resets") schedule.every().day.at("00:00").tag("daily_resets").do(gate.reset)
  10. the living tribunal

    👨‍💻 dev once per day module

    import schedule import time class OncePerDayGate: def __init__(self): self.triggered_today = False def reset(self): print("Resetting daily gate") self.triggered_today = False gate = OncePerDayGate() # Run the reset method every day at midnight...
  11. the living tribunal

    👨‍💻 dev once per day module

    import schedule import time class Greeter: def __init__(self): self.count = 0 def say_hello(self): self.count += 1 print(f"Hello! Called {self.count} times") # Create an instance g = Greeter() # Schedule the *method* (not a function)...
  12. the living tribunal

    👨‍💻 dev once per day module

    The shit is inside of the ass import time class OncePerDayGate: def __init__(self): self.last_yday = -1 self.triggered_today = False def check(self, event_happened: bool) -> bool: # Fast integer day-of-year check yday = time.localtime().tm_yday...
  13. the living tribunal

    Advanced convo builder

    @fukurou
  14. the living tribunal

    Advanced convo builder

    Regex,func dic
  15. the living tribunal

    Advanced convo builder

    import re def parse_cost_per_unit(text: str) -> tuple[str, str] | None: """ Extracts product and cost-per-unit from strings like: 'apples costs 10.99 for 2 units' Returns (product, cost_per_unit) or None if no match. """ pattern = (...
  16. the living tribunal

    Advanced convo builder

    import re def extract_xy(text): m = re.search(r'^\s*compare\s+(.*?)\s+vs\s+(.*)$', text, re.IGNORECASE) return [m.group(1), m.group(2)] if m else [] @fukurou
  17. the living tribunal

    [MEDIA]

  18. the living tribunal

    [MEDIA]

  19. the living tribunal

    👨‍💻 dev Skill tree dev

    Ahh shieeeeet old school team fuki jizzin code and shiiieet shiiiieeet
Top