Home
Forums
New posts
Search forums
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Calendar
games
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
New profile posts
Latest activity
Menu
Log in
Register
Install the app
Install
Home
What's new
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Latest activity
What's new
New posts
New profile posts
Latest activity
the living tribunal
updated their
status
.
Jan 26, 2026
fukurou
replied to the thread
👨💻 dev
once per day module
.
class OncePerDayGate: def __init__(self): self.triggerable = True def reset(self): self.triggerable = True...
Jan 23, 2026
fukurou
replied to the thread
👨💻 dev
once per day module
.
import schedule # in terminal: pip install schedule import time class Greeter: def __init__(self): self.count = 0...
Jan 23, 2026
the living tribunal
replied to the thread
👨💻 dev
once per day module
.
import schedule import time class Gate: def reset(self): print("resetting") gate = Gate() # 1. Schedule the method #...
Jan 23, 2026
the living tribunal
replied to the thread
👨💻 dev
once per day module
.
schedule.clear("daily_resets") schedule.every().day.at("00:00").tag("daily_resets").do(gate.reset)
Jan 23, 2026
the living tribunal
replied to the thread
👨💻 dev
once per day module
.
import schedule import time class OncePerDayGate: def __init__(self): self.triggered_today = False def reset(self)...
Jan 23, 2026
the living tribunal
replied to the thread
👨💻 dev
once per day module
.
import schedule import time class Greeter: def __init__(self): self.count = 0 def say_hello(self): self.count...
Jan 23, 2026
the living tribunal
replied to the thread
👨💻 dev
once per day module
.
The shit is inside of the ass import time class OncePerDayGate: def __init__(self): self.last_yday = -1...
Jan 23, 2026
fukurou
posted the thread
👨💻 dev
once per day module
in
chit chat
.
import datetime class TimeOfDayGreeting(Skill): def __init__(self): super().__init__() self.replied_today = False...
Jan 21, 2026
fukurou
replied to the thread
Advanced convo builder
.
def respondLatest(self, ear): if ear not in self.dic: return "" # Assuming RefreshQ.peek() or similar gets top of stack...
Jan 20, 2026
fukurou
replied to the thread
Advanced convo builder
.
import re from typing import override from LivinGrimoirePacket.AXPython import RailChatBot class PopulatorFunc: def...
Jan 20, 2026
fukurou
replied to the thread
Advanced convo builder
.
import re from typing import override from LivinGrimoirePacket.AXPython import RailChatBot class PopulatorFunc: def...
Jan 20, 2026
the living tribunal
replied to the thread
Advanced convo builder
.
@fukurou
Jan 17, 2026
the living tribunal
replied to the thread
Advanced convo builder
.
Regex,func dic
Jan 17, 2026
the living tribunal
replied to the thread
Advanced convo builder
.
import re def parse_cost_per_unit(text: str) -> tuple[str, str] | None: """ Extracts product and cost-per-unit from strings...
Jan 17, 2026
Home
What's new
Top
Text copied to clipboard.