Search results

  1. fukurou

    👨‍💻 dev event chatbot

    def create_dict(objectx: 'ObjectX', *args: str) -> dict[str, 'ObjectX']: return {arg: objectx for arg in args} # Example usage: class ObjectX: pass obj = ObjectX() result = create_dict(obj, "key1", "key2", "key3") print(result)
  2. fukurou

    👨‍💻 dev event chatbot

    def create_dict(objectx, *args): return {arg: objectx for arg in args} # Example usage: class ObjectX: pass obj = ObjectX() result = create_dict(obj, "key1", "key2", "key3") print(result)
  3. fukurou

    AI hormones test

    from __future__ import annotations # for the builder pattern from AXPython import TimeGate from LivinGrimoire23 import Skill, Chobits class AH1(Skill): def __init__(self, chobit: Chobits): super().__init__() # Call the parent class constructor self._chobit: Chobits =...
  4. fukurou

    [MEDIA]

  5. fukurou

    protocol 2501 with .txt instead of .py

    import os def call_add_DLC_skills(brain: Brain): for file in os.listdir('.'): if file.endswith('.txt') and 'DLC' in file: with open(file, 'r') as f: code = f.read() exec(code) exec(f"add_DLC_skills(brain)") # Example usage...
  6. fukurou

    [MEDIA]

  7. fukurou

    spermin'

    from AXPython import * class StandByCHK: def __init__(self, N: int): self.cycler: Cycler = Cycler(N) self.standBy: bool = True def chkStandBy(self, in1: str) -> int: if len(in1) > 1: self.standBy = False x1 = self.cycler.cycleCount()...
  8. fukurou

    spermin'

  9. fukurou

    spermin'

    standby = true if not param is "" standby = false if trgEveryNMinutes: if not standby: standby = true;return -1 return -1 return 0
  10. fukurou

    spermin'

    import time class StandByCHK: def __init__(self, N: int): self.N: int = N * 60 # Convert minutes to seconds self.in1: str = "" self.last_check_time: float = time.time() self.reset_flag: bool = False self.result: int = 0 def standBy(self, in1...
  11. fukurou

    spermin'

    import time class StandByCHK: def __init__(self, N: int): self.N: int = N * 60 # Convert minutes to seconds self.in1: str = "" self.last_check_time: float = time.time() self.reset_flag: bool = False self.result: int = 0 def standBy(self, in1...
  12. fukurou

    spermin'

    import time class SkillChecker: def __init__(self, N): self.N = N * 60 # Convert minutes to seconds self.in1 = "" self.last_check_time = time.time() self.reset_flag = False self.result = 0 def standBy(self, in1: str) -> int: current_time...
  13. fukurou

    [MEDIA]

  14. fukurou

    [MEDIA]

  15. fukurou

    [MEDIA]

  16. fukurou

    [MEDIA]

  17. fukurou

    [MEDIA]

  18. fukurou

    sterno cooker

  19. fukurou

    👨‍💻 dev on today's jizzfest

    # This is a sample Python script. import random # Press Shift+F10 to execute it or replace it with your code. # Press Double Shift to search everywhere for classes, files, tool windows, actions, and settings. from collections import deque from typing import List class CityMap: def...
  20. fukurou

    👨‍💻 dev on today's jizzfest

    # This is a sample Python script. import random # Press Shift+F10 to execute it or replace it with your code. # Press Double Shift to search everywhere for classes, files, tool windows, actions, and settings. from collections import deque from typing import List class CityMap: def...
Top