Search results

  1. fukurou

    ๐Ÿ python python time

    are there cases in which algs mutate just by overuse?
  2. 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...
  3. fukurou

    ๐Ÿ python python time

  4. 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)...
  5. fukurou

    [MEDIA]

  6. 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...
  7. 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); } }
  8. 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...
  9. 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 =...
  10. 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)...
  11. 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)...
  12. fukurou

    ๐Ÿ python python time

    class DrawRnd: # draw a random element, than take said element out def __init__(self, *values: str): self.converter: LGTypeConverter = LGTypeConverter() self.strings: LGFIFO = LGFIFO() self._stringsSource:list[str] = [] for i in range(0, len(values))...
  13. fukurou

    ๐Ÿ python python time

    how bout I kick your ass and say you fell or something? then you and your team or whatever can do whatever shit it is you do and let me just chill? how bout that you owl fuck?
  14. fukurou

    ๐Ÿ python python time

  15. fukurou

    ๐Ÿ python python time

    class LGTypeConverter: # converts strings types to number typed variables def __init__(self): self.r1: RegexUtil = RegexUtil() def convertToInt(self, v1: str) -> int: temp: str = self.r1.extractEnumRegex(enumRegexGrimoire.integer,v1) if temp == ""...
  16. fukurou

    ๐Ÿ python python time

    class AXKeyValuePair: def __init__(self): self.key: str = "" self.value: str = ""
  17. fukurou

    ๐Ÿ python python time

    public class AXKeyValuePair { private String key = ""; private String value = ""; public String getKey() { return key; } public void setKey(String key) { this.key = key; } public String getValue() { return value; } public void...
  18. fukurou

    [MEDIA]

  19. fukurou

    ๐Ÿ python python time

    fuck you 2. I'm not the one who sent all them meeseekses. class Cycler: # cycles through numbers limit to 0 non-stop def __init__(self, limit: int): self.limit: int = limit self._cycler: int = limit def cycleCount(self) -> int: self._cycler -= 1 if...
  20. fukurou

    ๐Ÿ python python time

    :s9:command center. it's a basement.
Top