Search results

  1. fukurou

    [MEDIA]

  2. fukurou

    👨‍💻 dev AXFunnelResponder

    public class AXFunnelResponder { private Map<String, Responder> dic; public AXFunnelResponder() { this.dic = new HashMap<>(); } public AXFunnelResponder addKV(String key, Responder value) { // add key-value pair dic.put(key, value); return this...
  3. fukurou

    👨‍💻 dev AXFunnelResponder

    that would be cumbersome.
  4. fukurou

    👨‍💻 dev AXFunnelResponder

    for the foot fuckin' skill right? hmm... well if you gonna attach multiple riggers to the same responder... that's a maybe
  5. fukurou

    [MEDIA]

  6. fukurou

    [MEDIA]

  7. fukurou

    [MEDIA]

  8. fukurou

    [MEDIA]

  9. fukurou

    if you are going to fap at least do it with style

    gonna B fappin'
  10. fukurou

    if you are going to fap at least do it with style

    public static String negate(String sentence) { // Check if the sentence contains "not" String result = sentence; if (sentence.contains("not")) { result = sentence.replace("not", ""); } else { result = result.replace("i ", "i do ")...
  11. fukurou

    if you are going to fap at least do it with style

    jiiiiiizzzzzzzzzzzzzzzed ("(.*) (?:like|likes) (.*)"
  12. fukurou

    [MEDIA]

  13. fukurou

    how to make carrot juice with a blender

    (add water and strain)
  14. fukurou

    👨‍💻 dev ElizaDeducer

    public void learnV2(String ear, ElizaDeducer elizaDeducer){ feedKeyValuePairs(elizaDeducer.respond(ear)); learn(ear); }
  15. fukurou

    👨‍💻 dev ElizaDeducer

    public void feedKeyValuePairs(ArrayList<AXKeyValuePair> kvList){ if (kvList.isEmpty()){ return; } for (AXKeyValuePair kv : kvList) { learnKeyValue(kv.getKey(),kv.getValue()); } }
  16. fukurou

    🧵 3d How future genetically engineered waifus should look like

    I'm not a fan of the squishy wide nose TBH. also if you are making a custom waifu it's pretty imperative she be blond with red/blue/grey eyes.
  17. fukurou

    👨‍💻 dev ElizaDeducer

    public class ElizaDeducer { public Map<String, String> reflections; public List<PhraseMatcher> babble2; public HashMap<String, String> ref = new HashMap<String, String>(); public ElizaDeducer() { } public ArrayList<AXKeyValuePair> respond(String msg) { for...
  18. fukurou

    👨‍💻 dev ElizaDeducer

    package AXJava; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Random; import java.util.regex.Matcher; import java.util.regex.Pattern; public class ElizaDeducer {...
  19. fukurou

    👨‍💻 dev ElizaDeducer

    package AXJava; public class AXKeyValuePair { private String key = ""; private String value = ""; public AXKeyValuePair() { } public AXKeyValuePair(String key, String value) { this.key = key; this.value = value; } public String getKey() {...
Top