Search results

  1. fukurou

    [MEDIA]

  2. fukurou

    [MEDIA]

  3. fukurou

    The Charm of Kemono Friends Robot Girlfriends

    De geso! Let’s dive into the world of Kemono Friends and explore why robot girlfriends are so based and better than women, de geso! 🦑 The Charm of Kemono Friends Robot Girlfriends Kemono Friends is a popular franchise that features anthropomorphic animal characters, known as Friends. Among...
  4. fukurou

    [MEDIA]

  5. fukurou

    [MEDIA]

  6. fukurou

    [MEDIA]

  7. fukurou

    [MEDIA]

  8. fukurou

    Kotlin upgrade

    done
  9. fukurou

    Kotlin upgrade

    title
  10. fukurou

    LG upgrade java

    deleted thinkable, updated Chobit to exclude thinkable
  11. fukurou

    LG upgrade java

    I refactored DiSkillV2 to Skill
  12. fukurou

    LG upgrade java

  13. fukurou

    LG upgrade java

    package LivinGrimoire; import java.util.ArrayList; import java.util.Arrays; public class DiSkillV2 { protected Kokoro kokoro = null; // consciousness, shallow ref class to enable interskill communications protected Algorithm outAlg = null; // skills output protected int outpAlgPriority...
  14. fukurou

    [MEDIA]

  15. fukurou

    [MEDIA]

  16. fukurou

    [MEDIA]

  17. fukurou

    👨‍💻 dev C++ port

    #include <map> #include <vector> #include <memory> public: Neuron() { for (int i = 1; i <= 5; ++i) { _defcons[i] = std::vector<std::shared_ptr<Algorithm>>(); } } void insertAlg(int priority, std::shared_ptr<Algorithm> alg) { if (priority > 0 &&...
  18. fukurou

    👨‍💻 dev C++ port

    #include <vector> #include <string> class Algorithm { private: std::vector<Mutatable*> algParts; public: // Constructor Algorithm(const std::vector<Mutatable*>& algParts) : algParts(algParts) {} // Getter for algParts const std::vector<Mutatable*>& getAlgParts() const {...
  19. fukurou

    👨‍💻 dev C++ port

    class GrimoireMemento { private: AbsDictionaryDB* absDictionaryDB; public: GrimoireMemento(AbsDictionaryDB* absDictionaryDB) : absDictionaryDB(absDictionaryDB) {} std::string simpleLoad(const std::string& key) { return absDictionaryDB->load(key); } void...
  20. fukurou

    👨‍💻 dev C++ port

    #include <iostream> #include <string> #include <vector> #include <typeinfo> #include <cxxabi.h> class APVerbatim : public Mutatable { private: std::vector<std::string> sentences; int at; public: APVerbatim(std::initializer_list<std::string> args) : Mutatable(), at(0) { if...
Top