Search results

  1. fukurou

    👨‍💻 dev AXskillBundle

    class AlgorithmV2: def __init__(self, priority, alg): self.priority = priority self.alg = alg def get_priority(self): return self.priority def set_priority(self, priority): self.priority = priority def get_alg(self): return self.alg...
  2. fukurou

    👨‍💻 dev AXskillBundle

    public class SkillBranch extends DiSkillV2 { // unique skill used to bind similar skills /* * contains collection of skills * mutates active skill if detects conjuration * mutates active skill if algorithm results in * negative feedback * positive feedback negates...
  3. fukurou

    👨‍💻 dev AXskillBundle

    public class SkillHubAlgDispenser { // super class to output an algorithm out of a selection of skills // engage the hub with dispenseAlg and return the value to outAlg attribute // of the containing skill (which houses the skill hub) // this module enables using a selection...
  4. fukurou

    👨‍💻 dev AXskillBundle

    public class AXSkillBundle { private final ArrayList<DiSkillV2> skills = new ArrayList<DiSkillV2>(); private final Neuron tempN = new Neuron(); private Kokoro kokoro = new Kokoro(new AbsDictionaryDB()); public void setKokoro(Kokoro kokoro) { this.kokoro = kokoro...
  5. fukurou

    👨‍💻 dev AXskillBundle

    public class AXSkillBundle { private ArrayList<DiSkillV2> skills = new ArrayList<DiSkillV2>(); private Neuron tempN = new Neuron();; public AXSkillBundle(DiSkillV2...skillsParams) { for (DiSkillV2 skill : skillsParams) { skills.add(skill); } }...
  6. fukurou

    👨‍💻 dev AXskillBundle

    public class AXSkillBundle { private ArrayList<DiSkillV2> skills = new ArrayList<DiSkillV2>(); private Neuron tempN = new Neuron();; public AXSkillBundle(DiSkillV2...skillsParams) { for (DiSkillV2 skill : skillsParams) { skills.add(skill); } }...
  7. fukurou

    we're up against ishtar now

    class DiYandere(DiSkillV2): ''' bica = DiBicameral() app.brain.logicChobit.addSkill(bica) bica.msgCol.addMSGV2("0:47", "#yandere") bica.msgCol.sprinkleMSG("#yandere", 30) bica.msgCol.sprinkleMSG("#yandere_cry", 30) app.brain.logicChobit.addSkill(DiYandere("fuki"))...
  8. fukurou

    we're up against ishtar now

    public class DiYandere extends DiSkillV2 { private Boolean yandereMode = false; private final Responder okYandere = new Responder(); private final Responder sadYandere = new Responder(); private Responder activeResponder = okYandere; private final AXFunnel answersFunnel = new...
  9. fukurou

    we're up against ishtar now

    public class DiYandere extends DiSkillV2 { private Boolean yandereMode = false; private Responder okYandere = new Responder(); private Responder sadYandere = new Responder(); private Responder activeResponder = okYandere; private AXFunnel answersFunnel = new AXFunnel()...
  10. fukurou

    we're up against ishtar now

    shit inDS!!!
  11. fukurou

    we're up against ishtar now

    public class DiYandere extends DiSkillV2 { private Boolean yandereMode = false; private Responder okYandere = new Responder(); private Responder sadYandere = new Responder(); private AXFunnel answersFunnel = new AXFunnel(); private AXPrompt prompt = new AXPrompt()...
  12. fukurou

    [MEDIA]

  13. fukurou

    [MEDIA]

  14. fukurou

    [MEDIA]

  15. fukurou

    [MEDIA]

  16. fukurou

    [MEDIA]

  17. fukurou

    [MEDIA]

  18. fukurou

    [MEDIA]

  19. fukurou

    👨‍💻 dev the bicameral mind

    step 1 jizz step 2 brag!
  20. fukurou

    👨‍💻 dev the bicameral mind

    public class TimedMessages { public Map<String, String> messages = new HashMap<>(); private final PlayGround playGround = new PlayGround(); private String lastMSG = "nothing"; private Boolean msg = false; public void addMSG(String ear){ RegexUtil ru1 = new...
Top