Recent content by fukurou

  1. fukurou

    [MEDIA]

  2. 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 =...
  3. 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...
  4. fukurou

    [MEDIA]

  5. 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!")
  6. 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...
  7. fukurou

    railpunk digivolution

    itchy asses with smeared shit in the aaaass
  8. 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
  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

    👨‍💻 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...
  11. fukurou

    weightedREsponder upgrade

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

    👨‍💻 dev SkillSupreme

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

    👨‍💻 dev SkillSupreme

    import re def extract_skills(text: str) -> list[str]: return re.findall(r"\bDi[A-Z][a-zA-Z]*\b", text)
  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 self.xp_base = 10 # ------------------------- # Moddable hooks...
Top