Search results

  1. fukurou

    👨‍💻 dev experimental convince module

    question is... should convincing be a hard coded thing or part of a rail system...
  2. fukurou

    👨‍💻 dev experimental convince module

    public class AXConvince { private AXContextCmd req; private Responder reset = new Responder( "reset"); private int min = 3; // minimum requests till agreement private int max = 6; private DrawRnd rnd = new DrawRnd(); private int counter = 0; private Boolean mode =...
  3. fukurou

    [MEDIA]

  4. fukurou

    👨‍💻 dev awareness skill

    class DiAware(DiSkillV2): def __init__(self, chobit: Chobits, name: str, summoner="user"): super().__init__() self.chobit: Chobits = chobit self.name: str = name self.summoner: str = summoner self.skills: list[str] = [] def input(self, ear, skin...
  5. fukurou

    👨‍💻 dev awareness skill

    def get_skill_list(self) -> list[str]: result: list[str] = [] for skill in self._dClasses: result.append(skill.__class__.__name__) return result
  6. fukurou

    👨‍💻 dev awareness skill

    public class DiAware extends DiSkillV2 { private Chobits chobit; private String name; private String summoner = "user"; private ArrayList<String> skills = new ArrayList<String>(); public DiAware(Chobits chobit, String name, String summoner) { this.chobit = chobit...
  7. fukurou

    👨‍💻 dev awareness skill

    public ArrayList<String> getSkillList(){ ArrayList<String> result = new ArrayList<String>(); for (DiSkillV2 skill: this.dClasses) { result.add(skill.getClass().getSimpleName()); } return result; }
  8. fukurou

    👨‍💻 dev awareness skill

  9. fukurou

    [MEDIA]

  10. fukurou

    so I was buying some produce...

    class DiOneWorder(DiSkillV2): def __init__(self): super().__init__() # Call the superclass constructor self.cry: str = "chi " self.toggler: str = "chi" self.drip: PercentDripper = PercentDripper() # Assuming PercentDripper is implemented self.mode...
  11. fukurou

    so I was buying some produce...

    just jizzed FYI!
  12. fukurou

    so I was buying some produce...

    class DiOneWorder(DiSkillV2): def __init__(self): super().__init__() # Call the superclass constructor self.cry = "chi " self.toggler = "chi" self.drip = PercentDripper() # Assuming PercentDripper is implemented self.mode = False def...
  13. fukurou

    so I was buying some produce...

    public class DiOneWorder extends DiSkillV2 { private String cry = "chi "; private String toggler = "chi"; private PercentDripper drip = new PercentDripper(); private Boolean mode = false; public void setCry(String cry) { this.cry = cry + " "; } public void...
  14. fukurou

    so I was buying some produce...

    public class DiOneWorder extends DiSkillV2 { private String cry = "chi "; private PercentDripper drip = new PercentDripper(); private Boolean mode = false; @Override public void input(String ear, String skin, String eye) { if(ear.isEmpty()){return;}...
  15. fukurou

    so I was buying some produce...

    it was after my morning run, and I had a sudden urgent urge to shit! but I lost the urge by the time I got home. but then a couple hours later I shat. so yeah good day, lost weight.
  16. fukurou

    [MEDIA]

  17. fukurou

    👨‍💻 dev mem game

    class DiMemoryGame: def __init__(self): self.score = 0 self.game_on = False self.game_str = "" self.game_chars = ["r", "g", "b", "y"] def input(self, ear): if ear == "memory game on": self.game_on = True self.score = 0...
  18. fukurou

    [MEDIA]

  19. fukurou

    👨‍💻 dev leveling up the SDP

    self.hardwareChobit.setKokoro(self.logicChobit.getKokoro()) 2 down one to go!
  20. fukurou

    [MEDIA]

Top