Search results

  1. fukurou

    👨‍💻 dev core diet

  2. fukurou

    👨‍💻 dev core diet

    public class Skill { protected Kokoro kokoro = null; // consciousness, shallow ref class to enable interskill communications protected Algorithm outAlg = null; // skill's output protected int outpAlgPriority = -1; // defcon 1->5 public Skill() { base(); //...
  3. fukurou

    👨‍💻 dev core diet

    Public Class Skill Protected kokoro As Kokoro = Nothing ' consciousness, shallow ref class to enable interskill communications Protected outAlg As Algorithm = Nothing ' skills output Protected outpAlgPriority As Integer = -1 ' defcon 1->5 Public Sub New()...
  4. fukurou

    👨‍💻 dev core diet

    Public Class Skill ' Protected fields Protected kokoro As Kokoro = Nothing ' Consciousness, shallow ref class for interskill communications Protected outAlg As Algorithm = Nothing ' Skills output Protected outpAlgPriority As Integer = -1 ' DEFCON levels 1->5 ' Default...
  5. fukurou

    👨‍💻 dev core diet

  6. fukurou

    👨‍💻 dev core diet

    vb.net Public Class APVerbatim Inherits Mutatable Private sentences As New List(Of String)() ' Constructor accepting variable arguments Public Sub New(ParamArray sentences() As String) Me.sentences.AddRange(sentences) End Sub ' Constructor accepting a List(Of...
  7. 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)...
  8. 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...
  9. 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 ""; }...
  10. 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()...
  11. 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...
  12. 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()...
  13. 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()...
  14. fukurou

    core upgrade

    works setting card
  15. 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()...
  16. fukurou

    core upgrade

    fail. increasing dark coding force by 1k% !
  17. 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()...
  18. 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...
  19. 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]...
  20. 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]...
Top