Search results

  1. fukurou

    [MEDIA]

  2. fukurou

    👨‍💻 dev VU meter

    import sounddevice as sd import numpy as np import threading import time class LoudDetector: # Global static variable is_loud = False @staticmethod def get_is_loud(): temp = LoudDetector.is_loud LoudDetector.is_loud = False return temp def...
  3. fukurou

    👨‍💻 dev VU meter

    import sounddevice as sd import numpy as np import threading import time class LoudDetector: # Global static variable is_loud = False def __init__(self, threshold=0.35, cooldown=0.5): self.threshold = threshold self.cooldown = cooldown self._thread = None...
  4. fukurou

    [MEDIA]

  5. fukurou

    👨‍💻 dev pet animation

    🧩 GOAL A desktop pet / VTuber window that: floats on the desktop animates (idle, blink, talk) stays always‑on‑top runs at 60 FPS never blocks your main program communicates with your main logic (e.g., “talk”, “blink”, “angry”, “idle”) This is the same pattern used by commercial VTuber...
  6. fukurou

    alarm skill update

    yeah you can just run it via a program called pycharm and use voice commands or typing. I haven't bothered much with anime user interface cause I focus on robotics aspect, I want a bot to be the interface. at the bottom left of the forum there is an option to swap skins. looks like a paint brush.
  7. fukurou

    [MEDIA]

  8. fukurou

    alarm skill update

    yes, like set alarm to [time] I just optimized it for speech to text(for example saying 9:40 is recognized as 940) so I patched it. I think i'll post a demo. it also remembers so even if you restart the AI the alarm stays armed for the requested time. she alarms very cutely actualy. it also has...
  9. fukurou

    alarm skill update

    fixed code: class DiAlarmer(Skill): def __init__(self): super().__init__() self.off: Responder = Responder("shut up", "stop") self._cron: Cron = Cron("", 3, 3) self.msg_extra: str = "" self.default_alarm: str = "beep beep beep"...
  10. fukurou

    alarm skill update

    new STT optimized version: class DiAlarmer(Skill): def __init__(self): super().__init__() self.off: Responder = Responder("shut up", "stop") self._cron: Cron = Cron("", 3, 3) self.msg_extra: str = "" self.default_alarm: str = "beep beep beep"...
  11. fukurou

    alarm skill update

    old ver: class DiAlarmer(Skill): def __init__(self): super().__init__() self.off: Responder = Responder("shut up", "stop") self._cron: Cron = Cron("", 3, 3) self.msg_extra: str = "" self.default_alarm: str = "beep beep beep" self._alarm_armed...
  12. fukurou

    sequence matcher

    from difflib import SequenceMatcher def similarity(a, b): return SequenceMatcher(None, a, b).ratio()
  13. fukurou

    👨‍💻 dev they said LLMs can't use stopper timers, I will add the feature to my superior AI between jizzings

    import time class DiStopWatch(Skill): """ Stopwatch skill for voice-controlled timing. Auto-announces at each minute milestone while running. """ def __init__(self): super().__init__() self.timer = Timer() self.last_announced_minute = 0...
  14. fukurou

    👨‍💻 dev they said LLMs can't use stopper timers, I will add the feature to my superior AI between jizzings

    import time class Timer: """ A simple timer class for tracking elapsed time. Supports start, pause, resume, reset, and formatted output. """ def __init__(self): """Initialize a new timer. Not started by default.""" self._start_time = None...
  15. fukurou

    Galatea v3: Multipurpose Companion Maid Robot

    unitree also seems good for kit bashing. too bad its so pricy. maybe in a year or too they will be affordable with doll features
  16. fukurou

    Galatea v3: Multipurpose Companion Maid Robot

    would love to hear about the technical aspects of how you built her. a devlog thread even.
  17. fukurou

    [MEDIA]

  18. fukurou

    👨‍💻 dev lobe 6 redev

    class Pipe: def __init__(self): self.nulify: bool = False def nulify(self): self.nulify = True def is_nullified(self): temp = self.nulify self.nulify = False return temp def input(self, ear: str, skin: str, eye: str, stave:str)->str...
  19. fukurou

    🐍 python aeye reborn

    import threading import time from typing import List, Tuple, Optional import cv2 import numpy as np # ----------------------------------------- # RECTANGLE CLASS (IMAGE COORDS) # ----------------------------------------- class Rectangle: def __init__(self, x1: int, y1: int, x2: int, y2...
  20. fukurou

    image recog

    updated Python version with per‑object movement (each bounding box tracked individually), using parallel lists import threading import time import torch from torchvision import models, transforms from PIL import Image import cv2 from ultralytics import YOLO from typing import List #...
Top