Search results

  1. fukurou

    jizzm.JS

    livingrimoire.js // livingrimoire.js class AbsDictionaryDB { save(key, value) { // Save to DB (override me) } load(key) { // Override me return "null"; } } class Mutatable { constructor() { this.algKillSwitch = false; } // Abstract...
  2. fukurou

    [MEDIA]

  3. fukurou

    [MEDIA]

  4. fukurou

    stand by mode dev

    class AXStandBy(pause: Int) { private val tg: TimeGate = TimeGate(pause) init { tg.openGate() } fun standBy(ear: String): Boolean { // only returns true after pause minutes of no input if (ear.isNotEmpty()) { // restart count...
  5. fukurou

    stand by mode dev

    public class AXStandBy { private final TimeGate tg; public AXStandBy(int pause) { this.tg = new TimeGate(pause); this.tg.openGate(); } public boolean standBy(String ear) { // only returns true after pause minutes of no input if (ear.length() > 0)...
  6. fukurou

    stand by mode dev

    class AXStandBy: def __init__(self, pause: int): self._tg:TimeGate = TimeGate(pause) self._tg.openForPauseMinutes() def standBy(self, ear: str) -> bool: # only returns true after pause minutes of no input if len(ear) > 0: # restart count...
  7. fukurou

    deepseek API

    import requests def deepseek_chat(api_key, user_message): url = "https://api.deepseek.com/chat/completions" headers = { "Content-Type": "application/json", "Authorization": f"Bearer {api_key}" } data = { "model": "deepseek-chat", "messages": [...
  8. fukurou

    [MEDIA]

  9. fukurou

    stand by mode dev

    class AXStandBy: def __init__(self, pause: int): self._tg:TimeGate = TimeGate(pause) def standBy(self, ear: str) -> bool: # only returns true after pause minutes of no input if len(ear) > 0: # restart count self._tg.openForPauseMinutes()...
  10. fukurou

    [MEDIA]

  11. fukurou

    DiSpiderSense

    class DiSpiderSenseV1(Skill): def __init__(self): super().__init__() # Call the parent class constructor self.spiderSense = SpiderSense(5) # Initialize spiderSense with the initial event "shut off" self.spiderSense.addEvent("shut off") # Add the event "die"...
  12. fukurou

    DiSpiderSense

    class DiSpiderSense(Skill): def __init__(self): super().__init__() # Call the parent class constructor self.spiderSense = SpiderSense("shut off") # Initialize spiderSense with the initial event "shut off" self.spiderSense.addEvent("die") # Add the event "die"...
  13. fukurou

    DiSpiderSense

    import java.util.Scanner; public class SpiderSenseDemo { public static void main(String[] args) { SpiderSense spiderSense = new SpiderSense(); Scanner scanner = new Scanner(System.in); while (true) { System.out.print("Enter an event: ")...
  14. fukurou

    DiSpiderSense

    public SpiderSense addEvent(String event); public void learn(String in1); public Boolean getSpiderSense(); public ArrayList<String> getAlertsShallowCopy(); public ArrayList<String> getAlertsClone(); public void clearAlerts();
  15. fukurou

    DiSpiderSense

    import java.util.Scanner; public class SpiderSenseDemo { public static void main(String[] args) { SpiderSense spiderSense = new SpiderSense(); Scanner scanner = new Scanner(System.in); while (true) { System.out.print("Enter an event: ")...
  16. fukurou

    👨‍💻 dev diinsulted

    class DiBanter(Skill): def __init__(self, responder: Responder, memory_size: int = 15, reply_chance: int = 90, ): super().__init__() self.npc: AXNPC2 = AXNPC2(memory_size, reply_chance) self._temp_str: str = "" self.splitter: AXStringSplit = AXStringSplit()...
  17. fukurou

    👨‍💻 dev diinsulted

    class DiCusser(Skill): def __init__(self, responder: Responder, memory_size: int = 15, reply_chance: int = 90, ): super().__init__() self.npc: AXNPC2 = AXNPC2(memory_size, reply_chance) self._temp_str: str = "" self.splitter: AXStringSplit = AXStringSplit()...
  18. fukurou

    👨‍💻 dev diinsulted

    class AnnoyedQ: def __init__(self, queLim: int): self._q1: RefreshQ = RefreshQ(queLim) self._q2: RefreshQ = RefreshQ(queLim) def learn(self, ear: str): if self._q1.contains(ear): self._q2.insert(ear) return self._q1.insert(ear)...
  19. fukurou

    👨‍💻 dev diinsulted

    def count_occurrences(lst, element): return lst.count(element) # Example usage: my_list = [1, 2, 3, 2, 4, 2, 5] element_to_count = 2 count = count_occurrences(my_list, element_to_count) print(f"The element {element_to_count} appears {count} times in the list.")
  20. fukurou

    jizz board

    self.convo1.add_items(UniqueResponder("you are being responsible", "you are doing the right thing", "you are making a good choice"), "i will wear a diaper", "i will wear a nappy") self.convo1.add_items(UniqueResponder("that's the spirit", "you are a big help", "you are doing great"), "i will put...
Top