Search results

  1. fukurou

    [MEDIA]

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

    test prgbar

    95
  5. fukurou

    [MEDIA]

  6. fukurou

    [MEDIA]

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

    robot leg design

  9. fukurou

    [MEDIA]

  10. fukurou

    [MEDIA]

  11. 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...
  12. fukurou

    new auxiliary module translation code party TEAM FUKI ASSEMBLE!

    5PL team fuki the legend! :s69:
  13. 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...
  14. fukurou

    new auxiliary module translation code party TEAM FUKI ASSEMBLE!

    class PerChance{ /* * extend me and add sentences and lists for parameters in the sentences in the * sub classes c'tor. replicate speech paterns, generate movie scripts or books and enjoy */ var sentences:Array<String> = [String]() var...
  15. fukurou

    new auxiliary module translation code party TEAM FUKI ASSEMBLE!

    class UniqueItemSizeLimitedPriorityQueue:UniqueItemsPriorityQue{ // items in the queue are unique and do not repeat // the size of the queue is limited private var limit:Int = 5 func getLimit()->Int{return limit} func setLimit(lim:Int){self.limit = lim} override func...
  16. fukurou

    [MEDIA]

  17. fukurou

    new auxiliary module translation code party TEAM FUKI ASSEMBLE!

    class AXStrategy{ /* this auxiliary module is used to output strategies based on context can be used for battles, and games upon pain/lose use the evolve methode to update to different new active strategies check for battle state end externaly (opponent...
Top