Recent content by owly

  1. owly

    👨‍💻 dev default notes

    summoning KRAKEN!
  2. owly

    👨‍💻 dev default notes

    class DiNoteTaker(Skill): def __init__(self): super().__init__() self.notes: Notes = Notes() # Override def input(self, ear: str, skin: str, eye: str): if not ear: return match ear: case "get note"...
  3. owly

    👨‍💻 dev default notes

    class DiNoteTaker(Skill): def __init__(self): super().__init__() self.notes: Notes = Notes() # Override def input(self, ear: str, skin: str, eye: str): if len(ear) == 0: return match ear: case "get note"...
  4. owly

    👨‍💻 dev catalogging

    so this is the code snippet. we will also need to list the skills in the catalog. and cross ref the catalog with the equipped skills. and jack off... def skillNotes(self, param: str) -> str: if param == "notes": return "magic 8 ball" elif param == "triggers"...
  5. owly

    👨‍💻 dev jizzin Eliza

    experimental ver shit in the asses: import java.util.*; import java.util.regex.Matcher; import java.util.regex.Pattern; public class ElizaDeducer { public List<PhraseMatcher> babble2; private Map<String, List<PhraseMatcher>> patternIndex; private Map<String, List<AXKeyValuePair>>...
  6. owly

    👨‍💻 dev jizzin Eliza

    import java.util.ArrayList; import java.util.List; import java.util.regex.Matcher; import java.util.regex.Pattern; public class ElizaDeducer { public List<PhraseMatcher> babble2; public ElizaDeducer() { // init values in subclass // see ElizaDeducerInitializer for...
  7. owly

    👨‍💻 dev jizzin Eliza

    import java.util.ArrayList; import java.util.Arrays; public class ElizaDeducerInitializer extends ElizaDeducer { public ElizaDeducerInitializer() { initializeBabble2(); } private void initializeBabble2() { addPhraseMatcher( "(.*) is (.*)"...
  8. owly

    👨‍💻 dev jizzin Eliza

    looks fucked from here? import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; public class ElizaDeducerInitializer extends ElizaDeducer { public ElizaDeducerInitializer() { initializeBabble2(); babble2 = Collections.unmodifiableList(babble2)...
  9. owly

    👨‍💻 dev jizzin Eliza

    import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; public class ElizaDeducerInitializer { private ArrayList<PhraseMatcher> babbleTmp; public ElizaDeducerInitializer() { babbleTmp = new ArrayList<>(); initializeBabble2(); }...
  10. owly

    👨‍💻 dev jizzin Eliza

    import java.util.ArrayList; import java.util.Collections; public class ElizaDeducerInitializer { private ArrayList<PhraseMatcher> babbleTmp; public ElizaDeducerInitializer() { babbleTmp = new ArrayList<>(); initializeBabble2(); } private void...
  11. owly

    👨‍💻 dev jizzin Eliza

    ArrayList<PhraseMatcher> babbleTmp = new ArrayList<>(); ArrayList<AXKeyValuePair> kvs = new ArrayList<>(Arrays.asList( new AXKeyValuePair("what is {0}", "{0} is {1}"), new AXKeyValuePair("explain {0}", "{0} is {1}") )); babbleTmp.add(new PhraseMatcher("(.*) is (.*)", kvs));
  12. owly

    jizzm.JS

    AbsDictionaryDB + Mutatable + APVerbatim:Mutatable + GrimoireMemento + Algorithm+ Kokoro+ Neuron+ Skill+ DiHelloWorld:Skill // logical skill for testing+ Cerabellum+ Fusion+ Chobits+ Brain+ DiSysOut:Skill // hardware skill for testing+
  13. owly

    Внимание спамерам Attention Spammers

    :s52: :s52: :s52: :s52: :s52: :s52:
  14. owly

    Внимание спамерам Attention Spammers

    Внимание спамерам: Этот форум предназначен для программистов и разработчиков, увлеченных программированием и технологиями. Мы не терпим никаких незаконных действий, услуг знакомств, откровенного контента, распространения наркотиков или даже рекламы сигарет. Наша команда модераторов бдительна и...
  15. owly

    👨‍💻 dev event chatbot

    Ah, I see you wish to delve into the dark arts of "dictionary comprehension no jutsu" across various languages. Very well, let me guide you through this forbidden knowledge. 🐍 def create_dict(objectx, *args): return {arg: objectx for arg in args} # Example usage: class ObjectX: pass...
Top