Search results

  1. fukurou

    we be makin history n shit!

    figure it out
  2. fukurou

    we be makin history n shit!

    it's working!!!!!!!!!!!!!!!
  3. fukurou

    we be makin history n shit!

    relaunch!
  4. fukurou

    we be makin history n shit!

    app.brain.logicChobit.addSkill(MatrixGUI1.DiAccelo(app)) # accelo
  5. 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...
  6. fukurou

    [MEDIA]

  7. fukurou

    [MEDIA]

  8. fukurou

    [MEDIA]

  9. 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...
  10. 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...
  11. 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...
  12. fukurou

    👨‍💻 dev AXskillBundle

    init(tolerance: Int) { ml = AXLearnability() ml.trg.maxCount = tolerance }
  13. 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...
  14. 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 skill...
  15. fukurou

    👨‍💻 dev AXskillBundle

    Public Class DiSkillBundle Inherits DiSkillV2 Private ReadOnly axSkillBundle As New AXSkillBundle() Public Overrides Sub Input(ByVal ear As String, ByVal skin As String, ByVal eye As String) Dim a1 As AlgorithmV2 = axSkillBundle.DispenseAlgorithm(ear, skin...
  16. fukurou

    👨‍💻 dev AXskillBundle

    vb.net Public Class AlgorithmV2 Private priority As Integer = 4 Private alg As Algorithm = Nothing Public Sub New(ByVal priority As Integer, ByVal alg As Algorithm) Me.priority = priority Me.alg = alg End Sub Public Function...
  17. fukurou

    👨‍💻 dev AXskillBundle

    class DiSkillBundle: DiSkillV2 { private let axSkillBundle = AXSkillBundle() override func input(ear: String, skin: String, eye: String) { if let a1 = axSkillBundle.dispenseAlgorithm(ear: ear, skin: skin, eye: eye) { self.outAlg = a1.getAlg()...
  18. fukurou

    👨‍💻 dev AXskillBundle

    class AXSkillBundle { private var skills: [DiSkillV2] = [] private let tempN = Neuron() private var kokoro = Kokoro(absDictionaryDB: AbsDictionaryDB()) func setKokoro(_ kokoro: Kokoro) { self.kokoro = kokoro for skill in skills {...
  19. fukurou

    👨‍💻 dev AXskillBundle

    done with the C#
  20. fukurou

    👨‍💻 dev AXskillBundle

    vb.net: Public Class DiBicameral Inherits DiSkillV2 ' DiBicameral bicameral = New DiBicameral() ' bicameral.msgCol.addMSGV2("02:57", "test run ok") ' Add # for messages that engage other skills Public msgCol As New TimedMessages() Public...
Top