Search results

  1. fukurou

    🐍 python python time

    class AXLearnability: def __init__(self, tolerance: int): self._algSent = False # problems that may result because of the last deployed algorithm: self.defcons: UniqueItemSizeLimitedPriorityQueue = UniqueItemSizeLimitedPriorityQueue(5) # major chaotic...
  2. fukurou

    new legendaries

    Houndstone @ Choice Band Ability: Sand Rush Tera Type: Ghost EVs: 252 Atk / 4 SpD / 252 Spe Adamant Nature - Last Respects - Sandstorm - Psychic Fangs - Destiny Bond Magearna-Original @ Aguav Berry Ability: Soul-Heart Tera Type: Psychic EVs: 252 HP / 120 Def / 136 SpD...
  3. fukurou

    new legendaries

    Eternatus @ Black Sludge Ability: Pressure Tera Type: Dragon EVs: 4 HP / 252 SpA / 252 Spe Modest Nature IVs: 0 Atk - Cosmic Power - Recover - Dynamax Cannon - Venoshock
  4. fukurou

    new legendaries

    Giratina-Origin @ Griseous Core Ability: Levitate Shiny: Yes Tera Type: Ghost EVs: 252 HP / 252 SpA / 4 Spe Timid Nature - Hex - Shadow Sneak - Shadow Force - Dragon Pulse
  5. fukurou

    new legendaries

    @ZORO
  6. fukurou

    new legendaries

    Zacian @ Rusted Sword Ability: Intrepid Sword Shiny: Yes Tera Type: Psychic EVs: 252 Atk / 4 Def / 252 Spe Adamant Nature - Play Rough - Iron Head - Close Combat - Psychic Fangs Zacian @ Rusted Sword Ability: Intrepid Sword Tera Type: Fairy EVs: 252 Atk / 4 Def / 252 Spe...
  7. fukurou

    new legendaries

    Zacian @ Rusted Sword Ability: Intrepid Sword Shiny: Yes Tera Type: Steel EVs: 252 Atk / 4 Def / 252 Spe Adamant Nature - Play Rough - Iron Head - Close Combat - Psychic Fangs Kleavor (M) @ Heavy-Duty Boots Ability: Sharpness Shiny: Yes Tera Type: Dark EVs: 252 Atk / 4...
  8. fukurou

    new legendaries

    Kyogre @ Chesto Berry Ability: Drizzle Tera Type: Electric EVs: 4 HP / 252 Def / 252 SpA Modest Nature IVs: 0 Atk - Thunder - Hydro Pump - Rest - Ice Beam Eternatus @ Black Sludge Ability: Pressure Shiny: Yes Tera Type: Poison EVs: 4 HP / 252 SpA / 252 Spe Modest...
  9. fukurou

    new legendaries

    Glimmora (F) @ Focus Sash Ability: Corrosion Tera Type: Rock EVs: 252 SpA / 4 SpD / 252 Spe Calm Nature - Mortal Spin - Ancient Power - Toxic Spikes - Venoshock DragonZord (Groudon) @ Wide Lens Ability: Drought Shiny: Yes Tera Type: Fire EVs: 132 HP / 252 Atk / 124 SpD...
  10. fukurou

    🐍 python python time

    are there cases in which algs mutate just by overuse?
  11. fukurou

    🐍 python python time

    class OutputDripper(Cycler): # drips true once every limit times # shushes the waifubot enough time to hear a reply from user def __init__(self, limit: int): # set limit to 1 for on off effect super().__init__(limit) def drip(self) -> bool: return...
  12. fukurou

    🐍 python python time

  13. fukurou

    🐍 python python time

    class AXLHub: # hubs many reply decorators, language translators, encriptors and other string modifiers # decorate(str) to decorate string using the active string decorator def __init__(self, *nyaa: AXLHousing): self._nyaa: list[AXLHousing] = [] size: int = len(nyaa)...
  14. fukurou

    [MEDIA]

  15. fukurou

    🐍 python python time

    class AXLHousing: def decorate(self, str1: str) -> str: # override me return "" class AXLNeuroSama(AXLHousing): def __init__(self): super().__init__() self._nyaa: AXNeuroSama = AXNeuroSama(3) def decorate(self, str1: str) -> str: return...
  16. fukurou

    🐍 python python time

    public class AXLNeuroSama extends AXLHousing{ private AXNeuroSama nyaa = new AXNeuroSama(3); @Override public String decorate(String str1) { return this.nyaa.decorate(str1); } }
  17. fukurou

    🐍 python python time

    class AXNeuroSama: def __init__(self, rate: int): # the higher the rate the less likely to decorate outputs self._rate: int = rate self._nyaa: Responder = Responder(" heart", " heart", " wink", " heart heart heart") self._rnd: DrawRnd = DrawRnd() def...
  18. fukurou

    🐍 python python time

    class TODOListManager: '''manages to do tasks. q1 tasks are mentioned once, and forgotten backup tasks are the memory of recently mentioned tasks''' def __init__(self, todoLim: int): self._q1: UniqueItemSizeLimitedPriorityQueue =...
  19. fukurou

    🐍 python python time

    class UniqueItemSizeLimitedPriorityQueue(UniqueItemsPriorityQue): # items in the queue are unique and do not repeat # the size of the queue is limited # this cls can also be used to detect repeated elements (nagging or reruns) def __init__(self, limit: int)...
  20. fukurou

    🐍 python python time

    public class UniqueItemSizeLimitedPriorityQueue extends UniqueItemsPriorityQue{ // items in the queue are unique and do not repeat // the size of the queue is limited private int limit = 5; public int getLimit() { return limit; } public void setLimit(int limit)...
Top