fukurou's latest activity

  • fukurou
    fukurou replied to the thread workout skill.
    class DiWorkOut(Skill): def __init__(self): super().__init__() self.last_date = "" self.xp_farmed = 0...
  • fukurou
    fukurou replied to the thread workout skill.
    class DiWorkOut(Skill): def __init__(self): super().__init__() self.last_date = "" self.xp_farmed = 0...
  • fukurou
    fukurou replied to the thread workout skill.
    class DiWorkOut(Skill): def __init__(self): super().__init__() self.last_date = "" self.xp_farmed = 0...
  • fukurou
    fukurou posted the thread workout skill in Atelier.
    class DiWorkOut(Skill): def __init__(self): super().__init__() self.last_date = "" self.xp_farmed:int = 0...
  • fukurou
    fukurou updated their status.
  • fukurou
    fukurou posted the thread railpunk funcs in chit chat.
    replacer mapper for ports, translations def word_diff(str1, str2): w1 = str1.split() w2 = str2.split() limit = min(len(w1)...
  • fukurou
    import re def make_extractor(pattern_str): # Escape the whole string so regex metacharacters don’t break it escaped =...
  • fukurou
    import re from typing import override from LivinGrimoirePacket.AXPython import RailBot #...
  • fukurou
    class Tokenizer: exclusions: set[str] = { "i", "me", "my", "mine", "you", "your", "yours", "am", "are", "was"...
  • fukurou
    class KeysFunnel(PopulatorFunc): def __init__(self): super().__init__() self.regex = "funnel" self.context =...
  • fukurou
    fukurou replied to the thread jizzbox snippet storer.
    class SnippetStore(PopulatorFunc): def __init__(self): super().__init__() self.regex = "snippet"...
  • fukurou
    fukurou replied to the thread jizzbox snippet storer.
    class SnippetSummonerStr: # funnels strings into lookup keys def __init__(self): self.incantations: set[str] = set()...
  • fukurou
    fukurou replied to the thread jizzbox snippet storer.
    class SnippetSummonerStr: # funnels strings into lookup keys def __init__(self): self.incantations: set[str] = set()...
  • fukurou
    fukurou replied to the thread jizzbox snippet storer.
    import re text = "code xx yy ok zz" keyword = "code" pattern = rf"{keyword}\s+(.*?)\s+ok\s+(.*)" v1, v2 = re.fullmatch(pattern...
  • fukurou
    fukurou replied to the thread jizzbox snippet storer.
    v2: import re text = "code xx yy ok zz" # Strict full‑structure match v1, v2 = re.fullmatch(r"code\s+(.*?)\s+ok\s+(.*)"...
Top