fukurou's latest activity

  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
    // Constructor Skill::Skill() {} // Virtual input method (can be overridden in derived classes) void Skill::input(const std::string&...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
    class Skill { protected: Kokoro* kokoro = nullptr; // Reference for interskill communication...
  • fukurou
    fukurou replied to the thread cpp port.
    .h #ifndef KOKORO_H #define KOKORO_H #include <string> #include <unordered_map> using namespace std; class Kokoro { private...
  • fukurou
    fukurou posted the thread cpp port in chit chat.
    .h #ifndef ALGORITHM_H #define ALGORITHM_H #include <vector> class Algorithm { private: std::vector<void*> algParts; // Using...
  • fukurou
    fukurou posted the thread F# core in chit chat.
    the F stands 4 fuck module AbsDictionaryDB open System.Collections.Generic type DictionaryDB(saveFunc, loadFunc) = let db =...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
    module AbsDictionaryDB open System.Collections.Generic type DictionaryDB(saveFunc, loadFunc) = let db = Dictionary<string...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
    module AbsDictionaryDB type SaveFunction = string -> string -> unit type LoadFunction = string -> string let createDictionaryDB...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
    class Skill { protected var kokoro: Kokoro? = nil // Consciousness, shallow ref class to enable interskill communications...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
    class Algorithm { private var algParts: [Mutatable] = [] init(algParts: [Mutatable]) { self.algParts = algParts }...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
    class APVerbatim: Mutatable { private var sentences: [String] = [] init(sentences: String...) {...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
    public void algPartsFusion(int priority, Mutatable... algParts) { this.outAlg = new Algorithm(algParts)...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
    class Skill: def __init__(self) -> None: # Initialize protected attributes self.kokoro: Optional['Kokoro'] = None #...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
    skill original class Skill: def __init__(self): # The variables start with an underscore (_) because they are protected...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
    class Algorithm: def __init__(self, algParts: list[Mutatable]) -> None: super().__init__() self.algParts...
  • fukurou
    fukurou replied to the thread 👨‍💻 dev core diet.
    class Algorithm: def __init__(self, *args: Mutatable) -> None: super().__init__() if len(args) == 1 and...
Top