Search results

  1. fukurou

    🐍 python python time

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

    [MEDIA]

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

    🐍 python python time

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

    [MEDIA]

  7. 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...
  8. fukurou

    🐍 python python time

    public class AXGamification { // this auxiliary module can add fun to tasks, skills, and abilities simply by // tracking their usage, and maximum use count. private int counter = 0; private int max = 0; public int getCounter() { return counter; } public int...
  9. fukurou

    test prgbar

    95
  10. fukurou

    [MEDIA]

  11. fukurou

    [MEDIA]

  12. fukurou

    👨‍💻 dev gamification module

    class AXGamification{ // this auxiliary module can add fun to tasks, skills, and abilities simply by // tracking their usage, and maximum use count. private var counter:Int = 0 private var max:Int = 0 func getCounter()->Int{ return counter } func...
  13. fukurou

    robot leg design

  14. fukurou

    [MEDIA]

  15. fukurou

    [MEDIA]

  16. fukurou

    new auxiliary module translation code party TEAM FUKI ASSEMBLE!

    class PersistantQuestion{ private var isActive:Bool = false private var mode:String = "yes" // key mode private var dic:[String:DrawRnd]=[:] private var outputDripper:OutPutDripper = OutPutDripper(limit: 1) private var loggedAnswer:String = "" // only used in log() which...
  17. fukurou

    new auxiliary module translation code party TEAM FUKI ASSEMBLE!

    5PL team fuki the legend! :s69:
  18. fukurou

    new auxiliary module translation code party TEAM FUKI ASSEMBLE!

    class TODOListManager{ /* manages to do tasks. q1 tasks are mentioned once, and forgotten backup tasks are the memory of recently mentioned tasks * */ var q1:UniqueItemSizeLimitedPriorityQueue = UniqueItemSizeLimitedPriorityQueue() var...
Top