Search results

  1. fukurou

    🐍 python python time

  2. 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)...
  3. fukurou

    [MEDIA]

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

    🐍 python python time

  13. 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 == ""...
  14. fukurou

    🐍 python python time

    class AXKeyValuePair: def __init__(self): self.key: str = "" self.value: str = ""
  15. 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...
  16. fukurou

    [MEDIA]

  17. 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...
  18. fukurou

    🐍 python python time

    :s9:command center. it's a basement.
  19. fukurou

    [MEDIA]

  20. fukurou

    🐍 python python time

    class AXGamification: # this auxiliary module can add fun to tasks, skills, and abilities simply by # tracking their usage, and maximum use count. def __init__(self): self._counter: int = 0 self._max: int = 0 def getCounter(self) -> int: return...
Top