Search results

  1. fukurou

    πŸ‘¨β€πŸ’» dev soul killer

    class APHibernate(AlgPart): def __init__(self, anchor:Skill, brain:Brain): super().__init__() self.brain = brain self.logical_chobit:ChobitsUnlocked = ChobitsUnlocked(brain.logicChobit) self.hardware_chobit: ChobitsUnlocked =...
  2. fukurou

    πŸ‘¨β€πŸ’» dev soul killer

    class ChobitsUnlocked(Chobits): def __init__(self, base:Chobits): super().__init__() self.base = base def get_type1_skills(self)->list[Skill]: return self.base.dClasses def get_type2_skills(self)->list[Skill]: return self.base._awareSkills def...
  3. fukurou

    [MEDIA]

  4. fukurou

    πŸ‘¨β€πŸ’» dev soul killer

    # create_hello_file.py code = """ class HelloWorld: def hello(self): print("Hello, world!") """ with open("hello_world.py", "w") as f: f.write(code) print("hello_world.py created!")
  5. fukurou

    unitree walkthroughs

    ## 🟦 1. Connect your laptop to the robot over Wi‑Fi This part is easy: - Turn on the robot. - On the robot’s screen, find the **Wi‑Fi settings**. - Connect the robot to your home Wi‑Fi (or hotspot). - On your laptop, connect to the **same Wi‑Fi network**. Now both devices are on the same...
  6. fukurou

    railpunk digivolution

    itchy asses with smeared shit in the aaaass
  7. fukurou

    railpunk digivolution

    import time def hourly(): h = time.localtime().tm_hour if hourly.last != h: hourly.last = h return True return False hourly.last = None
  8. fukurou

    πŸ‘¨β€πŸ’» dev SkillSupreme

    class DiNothing(Skill): # this skill does absolutely nothing def __init__(self): super().__init__() class AHReequip(Skill): # equips a skill as needed def __init__(self, brain:Brain): super().__init__() self.set_skill_type(2) self.brain = brain...
  9. fukurou

    πŸ‘¨β€πŸ’» dev SkillSupreme

    class DiNothing(Skill): # this skill does absolutely nothing def __init__(self): super().__init__() class AHReequip(Skill): # equips a skill as needed def __init__(self, brain:Brain): super().__init__() self.set_skill_type(2) self.brain = brain...
  10. fukurou

    weightedREsponder upgrade

    def shuffle(self) -> None: """Randomly shuffle the order of responses while preserving the list.""" import random random.shuffle(self.responses)
  11. fukurou

    πŸ‘¨β€πŸ’» dev SkillSupreme

    import re def extract_skills(text: str) -> list[str]: return re.findall(r"\bDi[a-zA-Z]*\b", text)
  12. fukurou

    πŸ‘¨β€πŸ’» dev SkillSupreme

    import re def extract_skills(text: str) -> list[str]: return re.findall(r"\bDi[A-Z][a-zA-Z]*\b", text)
  13. fukurou

    workout skill

    class DiWorkOut(Skill): def __init__(self): super().__init__() self.last_date = "" self.xp_farmed = 0 self.accumulation = 0 self.max_rest_days = 2 self.credit = 0 self.xp_base = 10 # ------------------------- # Moddable hooks...
  14. fukurou

    workout skill

    class DiWorkOut(Skill): def __init__(self): super().__init__() self.last_date = "" self.xp_farmed = 0 self.accumulation = 0 self.max_rest_days = 2 self.credit = 0 self.xp_base = 10 # ------------------------- # Moddable hooks...
  15. fukurou

    workout skill

    class DiWorkOut(Skill): def __init__(self): super().__init__() self.last_date = "" self.xp_farmed = 0 self.accumulation = 0 self.max_rest_days = 2 self.credit = 0 # ------------------------- # Utility # -------------------------...
  16. fukurou

    workout skill

    class DiWorkOut(Skill): def __init__(self): super().__init__() self.last_date = "" self.xp_farmed:int = 0 self.accumulation:int = 0 self.max_rest_days: int = 2 self.credit: int = 0 # tolerance for fun activity @staticmethod def...
  17. fukurou

    [MEDIA]

  18. fukurou

    railpunk funcs

    replacer mapper for ports, translations def word_diff(str1, str2): w1 = str1.split() w2 = str2.split() limit = min(len(w1), len(w2)) diffs = [] for i in range(limit): if w1[i] != w2[i]: diffs.append((w1[i], w2[i])) return diffs
  19. fukurou

    πŸ‘¨β€πŸ’» dev legend of fudge extractor

    import re def make_extractor(pattern_str): # Escape the whole string so regex metacharacters don’t break it escaped = re.escape(pattern_str) # Replace the escaped 'fudge' with a capture group regex_str = escaped.replace(r"fudge", r"(.*)") return re.compile(regex_str) s =...
  20. fukurou

    πŸ‘¨β€πŸ’» dev Chrome compressor

    import re from typing import override from LivinGrimoirePacket.AXPython import RailBot # ╔════════════════════════════════════════════════════════════════════════╗ # β•‘ RailBot Upgrades β•‘ #...
Top