Search results

  1. fukurou

    👨‍💻 dev Java->Kotlin port

    class DeepCopier { fun copyList(original: ArrayList<String>?): ArrayList<String> { return ArrayList(original) } fun copyListOfInts(original: ArrayList<Int>?): ArrayList<Int> { return ArrayList(original) } }
  2. fukurou

    👨‍💻 dev Java->Kotlin port

    /* it speaks something x times * a most basic skill. * also fun to make the chobit say what you want * */ class APSay(repetitions: Int, param: String) : Mutatable() { protected var param: String private var at: Int init { at = if (repetitions > 10) 10 else repetitions...
  3. fukurou

    👨‍💻 dev Java->Kotlin port

    open class Mutatable { // one part of an algorithm, it is a basic simple action or sub goal var algKillSwitch = false open fun action(ear: String, skin: String, eye: String): String {return ""} open fun completed(): Boolean {return false} open fun clone(): Mutatable {return Mutatable()}...
  4. fukurou

    👨‍💻 dev Java->Kotlin port

    class AbsDictionaryDB { fun save(key: String?, value: String?) { // save to DB (override me) } fun load(key: String?): String { // override me return "null" } }
  5. fukurou

    [MEDIA]

  6. fukurou

    [MEDIA]

  7. fukurou

    [MEDIA]

  8. fukurou

    we be makin history n shit!

    figure it out
  9. fukurou

    we be makin history n shit!

    it's working!!!!!!!!!!!!!!!
  10. fukurou

    we be makin history n shit!

    relaunch!
  11. fukurou

    we be makin history n shit!

    app.brain.logicChobit.addSkill(MatrixGUI1.DiAccelo(app)) # accelo
  12. fukurou

    we be makin history n shit!

    class DiAccelo(DiSkillV2): def __init__(self, app: MatrixGUI1.App): super().__init__() self.brain: Brain = app.brain self.app: MatrixGUI1.App = app self._tg:TimeGate = TimeGate(2) self._acceled:bool = False def input(self, ear: str, skin: str...
  13. fukurou

    [MEDIA]

  14. fukurou

    [MEDIA]

  15. fukurou

    [MEDIA]

  16. fukurou

    👨‍💻 dev AXskillBundle

    Public Class SkillBranch Inherits 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...
  17. fukurou

    👨‍💻 dev AXskillBundle

    vb.net: 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 of...
  18. 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...
  19. fukurou

    👨‍💻 dev AXskillBundle

    init(tolerance: Int) { ml = AXLearnability() ml.trg.maxCount = tolerance }
  20. 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...
Top