Search results

  1. fukurou

    [MEDIA]

  2. fukurou

    [MEDIA]

  3. 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...
  4. fukurou

    [MEDIA]

  5. fukurou

    [MEDIA]

  6. 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...
  7. 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)...
  8. 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...
  9. 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": [...
  10. fukurou

    [MEDIA]

  11. 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()...
  12. fukurou

    [MEDIA]

  13. 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"...
  14. 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"...
  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

    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();
  17. 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: ")...
  18. 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()...
  19. 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()...
  20. 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)...
Top