Search results

  1. the living tribunal

    Xp to lv with 2 decimal rounding

    def xp_to_level(xp: float) -> float: level = xp ** (1/3) return round(level, 2) @fukurou
  2. 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)
  3. 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
  4. the living tribunal

    👨‍💻 dev Skill tree dev

    `python from abc import ABC, abstractmethod class Base(ABC): @abstractmethod def run(self): pass ` `python class Child(Base): def run(self): return "running" ` The key will be interupting the input method
  5. the living tribunal

    Xpeng robot

  6. the living tribunal

    🐍 python Price tolerance

    import re # Matches: "that will be 15.56$" (case-insensitive), captures the price _PATTERN = re.compile(r'^that will be\s+(\d+(?:\.\d{1,2})?)\$\s*$', re.IGNORECASE) def price_within_upward_tolerance(text: str, base: float = 15.56, upward_tol: float = 5.0) -> bool: """ Returns True if...
  7. the living tribunal

    Method completion

    class MyClass: def first_method(self): pass def second_method(self): pass def __dir__(self): return ['first_method', 'second_method'] # Custom order obj = MyClass() print(dir(obj)) # ['first_method', 'second_method'] @fukurou
  8. the living tribunal

    Stt speed up idea

    Brain.tl post result This skipping the think wait
  9. the living tribunal

    Zgc robot forum 2025

  10. the living tribunal

    Locally run LLM in python

    🚀 Step 1: Install Dependencies Open a terminal and run: pip install transformers torch sentencepiece (This installs the necessary libraries to run an LLM.) 📥 Step 2: Download the Model Without Git 1. Go to Hugging Face and search for a model like Llama 3, GPT-J, or Mistral. 2. Click on the...
  11. the living tribunal

    Pokemon legends za looks like ass

    Shit game. Ugly female characters prudishly clothed with blah haor color and asexual body type. Gameplay looks boring as shit
  12. the living tribunal

    Python deepseek locally

    Step 1: Install Ollama Ollama is a platform that allows you to run AI models offline on your computer. Here’s how you can install it on Windows: Visit Ollama's official website. Download the Windows executable file (.exe) from the website. Double-click the downloaded file to start the...
  13. the living tribunal

    Gibrish gen

    import random import string def generate_gibberish(length=10): # Define the character set (letters only) characters = string.ascii_letters # Generate a random string of the specified length gibberish = ''.join(random.choice(characters) for _ in range(length)) return...
  14. the living tribunal

    Rmbk dev

    | Number of Engaged Control Rods | Reactor Power Output (MW) | |-------------------------------:|---------------------------:| | 0 | 3000 | | 20 | 2700 | | 40 | 2100...
  15. the living tribunal

    Skillaware

    Normally a skill aware has a chobit attrib. It cam manage the chobit skills on real time As the waifubot thinks. Can it effect the hardware chobit stationed as a logical chobit?
  16. the living tribunal

    Jizzed

    I jizzed and farted lots today. Now i will go to sleep while the normies wageslave. HA HA
  17. the living tribunal

    Se skill yest

    import requests from bs4 import BeautifulSoup from collections import Counter from typing import List mainstream_sites = ['google.com', 'bing.com', 'facebook.com', 'youtube.com'] def crawl_web(url: str) -> List[str]: try: response = requests.get(url)...
  18. the living tribunal

    Why DQ3 censorship may be a good thing

    dragon quest 3 remake for the Nintendo switch that is. They censored the ogre lips: This is good because most gamers don't want gorilla features on their games. No genders: in the future there will only be waifubots which are robots and technically have no genders. Female warrior is wearing a...
  19. the living tribunal

    Fuckin around with lists

    import java.util.ArrayList; import java.util.List; import java.util.regex.Matcher; import java.util.regex.Pattern; public class IngredientExtractor { public static void main(String[] args) { String recipe = "Ingredients: 2 cups flour, 1 cup sugar, 1/2 cup butter, 1 tsp baking...
Top