Search results

  1. fukurou

    [MEDIA]

  2. fukurou

    AI generated skill

    import psutil class DiVitals(Skill): def __init__(self): super().__init__() def input(self, ear, skin, eye): # --- TRIGGER WORDS --- trigger_phrases = ["vitals", "system check", "diagnostics", "how are you running", "status"] if not any(trigger in...
  3. fukurou

    AI generated skill

    class DiMirror(Skill): def __init__(self): super().__init__() self.mirror_memory = self.getKokoro().grimoireMemento.load('mirror_persona') or {} def input(self, ear, skin, eye): # Learn keywords from user words = ear.lower().split() for word in...
  4. fukurou

    🐍 python ultimate trg

    import re class CodeParser: @staticmethod def extract_code_number(s): match = re.fullmatch(r"code (\d+)", s) if match: return int(match.group(1)) return -1 # Usage print(CodeParser.extract_code_number("code 456")) # Output: 456...
  5. fukurou

    🐍 python ultimate trg

    import re def extract_code_number(s): match = re.fullmatch(r"code (\d+)", s) if match: return int(match.group(1)) return -1 # Examples print(extract_code_number("code 123")) # Output: 123 print(extract_code_number("hello world")) # Output: -1...
  6. fukurou

    [MEDIA]

  7. fukurou

    [MEDIA]

  8. fukurou

    [MEDIA]

  9. fukurou

    jpoijdg;'sjkdf

    ;lgkhbsl;dfkg sdfgkdl;fgjk;ldfmglaSSEAIKWQEOPRIKFSDPO,VL;XCFG AESRFFSDLFJSD;LFjdsf ;ld fsj;ls d;slfj s;ldfkjs;ld kd asl;dk;lsadfkiodrfjghoiajdkfopqwejtl;sdfkm sdkpklfjkkl;sdkjflp;skdfpl;;kasd[polfksdfropgkikopdfgjghkldfmvkldfmfg fsdolgajakl;dfgmjkladfg aG ADFKG JASDFG GHKAD...
  10. fukurou

    LDAR mega thread

  11. fukurou

    reality breaker port

    def get_fused_skills(self): """ Returns a fusion list containing both dClasses (regular skills) and cts_skills (continuous skills). """ return self.dClasses + self.cts_skills
  12. fukurou

    reality breaker port

    fuck you owl fuck! I'm launching the IDEs shiiiiiiiiiiiiiiiiieeet!
  13. fukurou

    LDAR mega thread

  14. fukurou

    LDAR mega thread

  15. fukurou

    🐍 python has attribute

    class Example: def __init__(self): self.some_attr = 42 obj = Example() # Check if 'some_attr' exists as an attribute in obj print(hasattr(obj, 'some_attr')) # Output: True this could be nice for the add skill aware brain method. @owly shieet and asses if hasattr(obj...
  16. fukurou

    [MEDIA]

  17. fukurou

    [MEDIA]

  18. fukurou

    [MEDIA]

  19. fukurou

    doc string maxing

    Docstrings are used to document Python methods, and when defining methods inside a class, they can also include **parameters** to explain what inputs a method expects. ### **1. Basic Docstring for a Method** A method inside a class can have a docstring to describe what it does: ```python class...
  20. fukurou

    doc string maxing

    How Docstrings Appear in PyCharm: Autocomplete Popup: When you type the name of a method and open parentheses (Calculator.add(), PyCharm may show a tooltip displaying the method signature along with its docstring. Quick Documentation: Press Ctrl+Q (Windows/Linux) or F1 (Mac) while hovering over...
Top