Search results

  1. fukurou

    [MEDIA]

  2. fukurou

    [MEDIA]

  3. fukurou

    [MEDIA]

  4. fukurou

    [MEDIA]

  5. fukurou

    [MEDIA]

  6. fukurou

    [MEDIA]

  7. fukurou

    [MEDIA]

  8. fukurou

    👨‍💻 dev yoga skill

    class DiYoga(Skill): def __init__(self): super().__init__() self.UResponder: UniqueResponder = UniqueResponder() self.UResponder.addResponse("frog pose") self.UResponder.addResponse("butterfly pose") self.chat: EventChat = EventChat(self.UResponder...
  9. fukurou

    👨‍💻 dev yoga skill

    class DiYoga(Skill): def __init__(self): super().__init__() self.UResponder: UniqueResponder = UniqueResponder() self.UResponder.addResponse("frog pose") self.UResponder.addResponse("butterfly pose") self.chat: EventChat = EventChat(self.UResponder...
  10. fukurou

    To open a .png file in Python

    pip install pillow from PIL import Image # Open an image file image = Image.open('path/to/your/image.png') # Display the image image.show()
  11. fukurou

    [MEDIA]

  12. fukurou

    [MEDIA]

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

    [MEDIA]

  15. fukurou

    [MEDIA]

  16. 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...
  17. 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)...
  18. 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...
  19. 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": [...
Top