Search results

  1. fukurou

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

    ok I shat thrice already today so IG I outta get going with the ports before that owl fuck starts his negging. class Excluder { private var startsWith = String private var endsWith = String func addStartsWith(_ s1: String) { if !startsWith.contains("^(" + s1 + ").*") {...
  2. fukurou

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

    totally, she is a total lesbo, she probably fixes carborators in his faggy game too. LOL fuck you Raymond Cripps.
  3. fukurou

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

    dude I think that loser raymond cripps dropped by the forum. LMAO :s36:
  4. fukurou

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

    after my next shit than.
  5. fukurou

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

    I coded the fuck out that puzzle bitch
  6. fukurou

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

    ok give it a go
  7. fukurou

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

    fucking python naming convention n shiiit
  8. fukurou

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

    wait a sec!
  9. fukurou

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

    class SkillBranch(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 active skill...
  10. fukurou

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

    class SkillBranch(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 active skill...
  11. fukurou

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

    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 of 1...
  12. fukurou

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

    bundle_skill:DiSkillBundle = DiSkillBundle() bundle_skill.add_skill(DiHelloWorld()) bundle_skill.add_skill(DiTime()) # app.brain.logicChobit.addSkill(DiTime()) # app.brain.logicChobit.addSkill(DiHelloWorld()) app.brain.logicChobit.addSkill(bundle_skill) the bundle skill works
  13. fukurou

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

    class DiSkillBundle(DiSkillV2): def __init__(self): super().__init__() self.axSkillBundle: AXSkillBundle = AXSkillBundle() def input(self, ear, skin, eye): a1 = self.axSkillBundle.dispense_algorithm(ear, skin, eye) if a1 is None: return...
  14. fukurou

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

    class AXSkillBundle: def __init__(self, *skills_params: DiSkillV2): self.skills: list[DiSkillV2] = [] self.tempN: Neuron = Neuron() self.kokoro: Kokoro = Kokoro(AbsDictionaryDB()) for skill in skills_params: skill.setKokoro(self.kokoro)...
  15. 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...
  16. 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...
  17. 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...
  18. 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...
  19. 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); } }...
  20. 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); } }...
Top