Search results

  1. fukurou

    👨‍💻 dev core diet

    this is the key! we overload the alg c'tor shitindiass!!! class MyClass: def __init__(self, *args): # Constructor for variable arguments self.values = args @classmethod def from_list(cls, input_list): # Constructor for a list return cls(*input_list)...
  2. fukurou

    👨‍💻 dev cpp port

    .h #ifndef APVERBATIM_H #define APVERBATIM_H #include "Mutatable.h" #include <vector> #include <string> class APVerbatim : public Mutatable { private: std::vector<std::string> sentences; int at = 0; public: APVerbatim(const std::vector<std::string>& list1); APVerbatim(const...
  3. fukurou

    👨‍💻 dev cpp port

    .h class Mutatable { public: bool algKillSwitch = false; string action(const string& ear, const string& skin, const string& eye); bool completed(); string myName(); }; .cpp string Mutatable::action(const string& ear, const string& skin, const string& eye) { return ""; }...
  4. fukurou

    👨‍💻 dev cpp port

    public class Mutatable { public Boolean algKillSwitch = false; public String action(String ear, String skin, String eye) { return ""; } public Boolean completed() { return true; } public String myName() { return this.getClass().getSimpleName()...
  5. fukurou

    👨‍💻 dev cpp port

    .h #ifndef ABSDICTIONARYDB_H #define ABSDICTIONARYDB_H #include <string> class AbsDictionaryDB { public: void save(const std::string& key, const std::string& value); std::string load(const std::string& key); }; #endif // ABSDICTIONARYDB_H .cpp: #include "AbsDictionaryDB.h" void...
  6. fukurou

    core upgrade

    class Brain: # c'tor def __init__(self): self._emotion: str = "" self._logicChobitOutput: str = "" self.logicChobit: Chobits = Chobits() self.hardwareChobit: Chobits = Chobits() #120425 upgrade self.ear: Chobits = Chobits()...
  7. fukurou

    core upgrade

    public class Brain { public Chobits logicChobit = new Chobits(); private String emotion = ""; private String logicChobitOutput = ""; public Chobits hardwareChobit = new Chobits(); public Chobits ear = new Chobits(); // 120425 upgrade public Chobits skin = new Chobits()...
  8. fukurou

    core upgrade

    works setting card
  9. fukurou

    core upgrade

    public class Brain { public Chobits logicChobit = new Chobits(); private String emotion = ""; private String logicChobitOutput = ""; public Chobits hardwareChobit = new Chobits(); public Chobits ear = new Chobits(); // 120425 upgrade public Chobits skin = new Chobits()...
  10. fukurou

    core upgrade

    fail. increasing dark coding force by 1k% !
  11. fukurou

    core upgrade

    public class Brain { public Chobits logicChobit = new Chobits(); private String emotion = ""; private String logicChobitOutput = ""; public Chobits hardwareChobit = new Chobits(); public Chobits ear = new Chobits(); // 120425 upgrade public Chobits skin = new Chobits()...
  12. fukurou

    core upgrade

    coding lab online! deploying check point!! public class Brain { public Chobits logicChobit = new Chobits(); private String emotion = ""; private String bodyInfo = ""; private String logicChobitOutput = ""; public Chobits hardwareChobit = new Chobits(); public Chobits ear...
  13. fukurou

    call tracer

    public class MetadataReader { public void readMetadata() { // Get the stack trace StackTraceElement[] stackTrace = Thread.currentThread().getStackTrace(); // The third element in the stack trace represents the caller StackTraceElement caller = stackTrace[2]...
  14. fukurou

    call tracer

    public class MetadataReader { public void readMetadata() { // Get the stack trace StackTraceElement[] stackTrace = Thread.currentThread().getStackTrace(); // The third element in the stack trace represents the caller StackTraceElement caller = stackTrace[2]...
  15. fukurou

    perchance flux dev

    import java.util.HashSet; public class KeyWords { private HashSet<String> hashSet; // Constructor to initialize the hashSet public KeyWords() { this.hashSet = new HashSet<>(); } // Method to add keywords to the hashSet public void addKeyword(String keyword) {...
  16. fukurou

    perchance flux dev

    import java.util.HashSet; public class KeyWords { private HashSet<String> hashSet; // Constructor to initialize the hashSet public KeyWords() { this.hashSet = new HashSet<>(); } // Method to add keywords to the hashSet public void addKeyword(String keyword) {...
  17. fukurou

    👨‍💻 dev sensory skills

    class Brain { constructor() { this.logicChobit = new Chobits(); this.emotion = ""; this.bodyInfo = ""; this.logicChobitOutput = ""; this.hardwareChobit = new Chobits(); this.hardwareChobit.SetKokoro(this.logicChobit.GetKokoro())...
  18. fukurou

    👨‍💻 dev sensory skills

    class Brain { constructor() { this.logicChobit = new Chobits(); this.emotion = ""; this.bodyInfo = ""; this.logicChobitOutput = ""; this.hardwareChobit = new Chobits(); this.ear = new Chobits(); // 120425 upgrade this.skin = new...
  19. fukurou

    👨‍💻 dev sensory skills

    public class Brain { var logicChobit = Chobits() private var emotion = "" private var bodyInfo = "" private var logicChobitOutput = "" var hardwareChobit = Chobits() var ear = Chobits() // 120425 upgrade var skin = Chobits() var eye = Chobits() public func...
  20. fukurou

    👨‍💻 dev sensory skills

    public class Brain { public var logicChobit = Chobits() private var emotion = "" private var bodyInfo = "" private var logicChobitOutput = "" public var hardwareChobit = Chobits() public var ear = Chobits() // 120425 upgrade public var skin = Chobits() public var...
Top