Recent content by fukurou

  1. fukurou

    new site

    https://www.livingrimoire.com/
  2. fukurou

    [MEDIA]

  3. fukurou

    [MEDIA]

  4. fukurou

    [MEDIA]

  5. fukurou

    [MEDIA]

  6. fukurou

    🐍 python FU money calculator

    import math def survival_years(total, monthly_spend, annual_return=0.05): """ Returns how many years you can survive. If survival is infinite, returns -1. """ yearly_spend = monthly_spend * 12 # No growth case if annual_return == 0: return total /...
  7. fukurou

    [MEDIA]

  8. fukurou

    [MEDIA]

  9. fukurou

    🐍 python polinators

    # Simple pronoun resolver using history import re PRONOUNS = re.compile(r'\b(it|they|them|that|this|its|their)\b', re.I) def last_entity(history: list[dict]) -> str | None: """Walk backwards through history, return last user noun phrase.""" noun =...
  10. fukurou

    🐍 python upgraded spit xp farm skill for chatbot gamification

    class DiEmoV2(Skill): def __init__(self): super().__init__() self.xp = 0 self.reseter: TrgEveryNMinutes = TrgEveryNMinutes(10) self.lim = 3 self.no_mood: Responder = Responder("bored", "meh", "neutral") self.yes_mood: Responder =...
  11. fukurou

    🐍 python upgraded spit xp farm skill for chatbot gamification

    class DiEmoV2(Skill): def __init__(self): super().__init__() self.xp = 0 self.reseter: TrgEveryNMinutes = TrgEveryNMinutes(10) self.lim = 3 self.no_mood: Responder = Responder("bored", "meh", "neutral") self.yes_mood: Responder =...
  12. fukurou

    🐍 python upgraded spit xp farm skill for chatbot gamification

    class DiEmoV2(Skill): def __init__(self): super().__init__() self.xp = 0 self.reseter: TrgEveryNMinutes = TrgEveryNMinutes(10) self.lim = 3 self.no_mood: Responder = Responder("bored", "meh", "neutral") self.yes_mood: Responder =...
  13. fukurou

    [MEDIA]

  14. fukurou

    shondo boredom handler

    class DiBoredHandler(Skill): def __init__(self): super().__init__() self.activity: Responder = Responder( # --- Yoga poses: specific + general --- "H-hey! Do a tree pose, okay? Balance like a fancy lil show‑off, OwO.", "Warrior pose time...
  15. fukurou

    shondo boredom handler

    class DiBoredHandler(Skill): def __init__(self): super().__init__() self.activity: Responder = Responder( # --- Yoga poses: specific + general (NO child pose) --- "H-hey! Do a tree pose, okay? Balance like a fancy lil show‑off, OwO."...
Top