fukurou's latest activity

  • fukurou
    fukurou replied to the thread nappy code.
    old ver: class DiEvent(Skill): def __init__(self): super().__init__() self.event_hour: int = 19 self._e =...
  • fukurou
    fukurou posted the thread nappy code in chit chat.
    import time class DiEvent(Skill): def __init__(self): super().__init__() self.event_hour = 19 # 19:00 = 7 PM...
  • fukurou
    fukurou replied to the thread shut off skill.
    import sys class DiShutOff(Skill): def __init__(self): super().__init__() # Call the parent class constructor def...
  • fukurou
    fukurou posted the thread shut off skill in chit chat.
    import sys print("I'm outta here!") sys.exit()
  • fukurou
    fukurou updated their status.
  • fukurou
    fukurou replied to the thread cts ports.
    var algTriggered: Bool = false var ctsSkills: [Skill] = [] // continuous skills
  • fukurou
    fukurou updated their status.
  • fukurou
    fukurou replied to the thread 👨‍💻 dev F sharp port.
    type DiHelloWorld() = let baseSkill = Skill(None) member this.AsSkill() : Skill = baseSkill // Exposes `baseSkill` properly...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev F sharp port.
    type DiSysOut() = let baseSkill = Skill(None) // Composing Skill instead of inheriting member this.Input(ear: string, skin...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev F sharp port.
    type Brain() = let mutable logicChobit = Chobits() let mutable hardwareChobit = Chobits() let mutable ear = Chobits()...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev F sharp port.
    type Chobits() = let mutable fusion = Fusion() let mutable noiron = Neuron() let mutable kokoro = Kokoro(AbsDictionaryDB())...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev F sharp port.
    kokoro cls update: type Kokoro(initialGrimoireMemento: AbsDictionaryDB) = let mutable emot = "" let mutable grimoireMemento =...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev F sharp port.
    type Cerabellum() = let mutable fin = 0 let mutable at = 0 let mutable incrementAt = false let mutable alg: Algorithm...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev F sharp port.
    type Skill(initialKokoro: Kokoro option) = let mutable kokoro = initialKokoro let mutable outAlg: Algorithm option = None...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev F sharp port.
    type Neuron() = let defcons = Dictionary<int, ResizeArray<Algorithm>>() do // Initialize the dictionary with priority levels...
Top