Search results

  1. fukurou

    rail port solid shit inDS

    Public Class RailBot Private ReadOnly ec As EventChatV2 Private context As String = "stand by" Private elizaWrapper As ElizaDBWrapper = Nothing ' Starts as Nothing (no DB) ' Constructor with limit parameter Public Sub New(ByVal limit As Integer) ec = New...
  2. fukurou

    rail port solid shit inDS

    vb.net: Public Class PhraseInflector ' Dictionary for pronoun and verb inflection Private Shared ReadOnly inflectionMap As New Dictionary(Of String, String) From { {"i", "you"}, {"me", "you"}, {"my", "your"}, {"mine", "yours"}, {"you", "i"}, '...
  3. fukurou

    rail port solid shit inDS

    vb.net: Public Class QuestionChecker Private Shared ReadOnly QUESTION_WORDS As HashSet(Of String) = New HashSet(Of String) From { "what", "who", "where", "when", "why", "how", "is", "are", "was", "were", "do", "does", "did", "can", "could", "would", "will", "shall", "should"...
  4. fukurou

    👨‍💻 dev DiPerChance

    def find_contained_substring(target: str, substrings: list[str]) -> str: """ Find the first substring contained in the target string. :param target: The string to search within. :param substrings: A list of substrings to search for. :return: The first substring found in the...
  5. fukurou

    jizzers creepers look what I got

    import os # Cancel a scheduled shutdown os.system("shutdown /a")
  6. fukurou

    jizzers creepers look what I got

    import os # Delay time in seconds (e.g., 60 seconds = 1 minute) delay_time = 60 # Shutdown command with delay os.system(f"shutdown /s /t {delay_time}")
  7. fukurou

    hashpikh parikh

    import java.util.Arrays; import java.util.HashSet; import java.util.Set; public class QuestionChecker { private static final Set<String> QUESTION_WORDS = new HashSet<>(); static { // Initialize the set of question words String[] words = { "what", "who"...
  8. fukurou

    hashpikh parikh

    public class QuestionChecker { // Using a switch expression (Java 14+) for maximum performance private static boolean isQuestionWord(String word) { return switch (word) { case "what", "who", "where", "when", "why", "how", "is", "are", "was", "were"...
  9. fukurou

    thnx 4 D feet pix princess

    thnx 4 D feet pix princess
  10. fukurou

    hashpikh parikh

    public class DiRail extends Skill { // DiRail skill for testing purposes private RailBot railBot = new RailBot(); public DiRail() { super(); } public static boolean endsWithOk(String input) { return input != null && input.endsWith("ok"); } public...
  11. fukurou

    hashpikh parikh

    public class RailBot { private final EventChatV2 ec; private String context; public RailBot(int limit) { ec = new EventChatV2(limit); } public RailBot() { this(5); } public void setContext(String context) { if (context.isEmpty()) {...
  12. fukurou

    hashpikh parikh

    public class RailBot { private final EventChatV2 ec; private String context; public RailBot(int limit) { ec = new EventChatV2(limit); } public RailBot() { ec = new EventChatV2(5); } public void setContext(String context) { if...
  13. fukurou

    hashpikh parikh

    import java.util.HashMap; import java.util.Random; public class RailBot { private HashMap<String, RefreshQ> dic; private String context; private int limit; public RailBot(int limit) { this.limit = limit; this.dic = new HashMap<>(); this.context =...
  14. fukurou

    hashpikh parikh

    :s36:pathfinders aren't good for small talk because they would funnel inputs to dead ends in convos. pathfinders rely on the environment being static, while convos are pretty much like an exchange of real-world twits
  15. fukurou

    hashpikh parikh

    1 a-b a-c a-a(a-a must be filtered) 2 a-n a-g a-r would an Eliza replacer be an overkill shit aaaaaAAAAAAAAAAAAAAAAAAAAAAAAAASSSSSSsssssssssss shit asss shouryuken shit asses asss asss asasasasasasas asssed asses of FURY!!!
  16. fukurou

    hashpikh parikh

    LOL why so you can talk to yourself?! LMAO
  17. fukurou

    hashpikh parikh

    water is wet. all brainless NPCs. you and I are the only real ones. funny game the only way to win is to LDAR.
  18. fukurou

    contact silojizms

    # contacts self.add_phrase_matcher( r"(.*) owns the email (.*)", "email {0}", "{1}", "what is the email for {0}", "{1}" )
  19. fukurou

    contact silojizms

    def initialize_babble2(self) -> None: # Adding phrase matchers for various patterns and responses to enhance conversation logic # Description self.add_phrase_matcher( r"(.*) is (.*)", "what is {0}", "{0} is {1}", "explain {0}", "{0} is {1}" ) #...
  20. fukurou

    contact silojizms

    - "Pomni has the code 1234." - "The code that belongs to Pomni is 1234." - "Pomni owns the code 1234." - "The code for Pomni is 1234."
Top