Search results

  1. fukurou

    habit skill java-python

    class DiHabit(DiSkillV2): def __init__(self): super().__init__() # setter params: # habit params self._habitsPositive: UniqueItemSizeLimitedPriorityQueue = UniqueItemSizeLimitedPriorityQueue(15) self._habitP: AXCmdBreaker = AXCmdBreaker("i should")...
  2. fukurou

    [MEDIA]

  3. fukurou

    habit skill java-python

    class DiHabit(DiSkillV2): def __init__(self): super().__init__() # setter params: # habit params self._habitsPositive: UniqueItemSizeLimitedPriorityQueue = UniqueItemSizeLimitedPriorityQueue(15) self._habitP: AXCmdBreaker = AXCmdBreaker("i should")...
  4. fukurou

    habit skill java-python

    class DiHabit(DiSkillV2): def __init__(self): super().__init__() # setter params: # habit params self._habitsPositive: UniqueItemSizeLimitedPriorityQueue = UniqueItemSizeLimitedPriorityQueue(15) self._habitP: AXCmdBreaker = AXCmdBreaker("i should")...
  5. fukurou

    habit skill java-python

  6. fukurou

    [MEDIA]

  7. fukurou

    habit skill java-python

    class DiHabit: def __init__(self): # setter params: # habit params self._habitsPositive: UniqueItemSizeLimitedPriorityQueue = UniqueItemSizeLimitedPriorityQueue(15) self._habitP: AXCmdBreaker = AXCmdBreaker("i should") self._temp: str = "" #...
  8. fukurou

    [MEDIA]

  9. fukurou

    habit skill java-python

  10. fukurou

    habit skill java-python

    class DiHabit: def __init__(self): # setter params: # habit params self._habitsPositive: UniqueItemSizeLimitedPriorityQueue = UniqueItemSizeLimitedPriorityQueue(15) self._habitP: AXCmdBreaker = AXCmdBreaker("i should") self._temp: str = ""
  11. fukurou

    habit skill java-python

    private UniqueItemSizeLimitedPriorityQueue habitsPositive = new UniqueItemSizeLimitedPriorityQueue(); private AXCmdBreaker habitP = new AXCmdBreaker("i should"); private String temp = ""; // bad habits private UniqueItemSizeLimitedPriorityQueue habitsNegative = new...
  12. fukurou

    python propagation 121023

    package skills; import AXJava.*; import LivinGrimoire.APVerbatim; import LivinGrimoire.DISkillUtils; import LivinGrimoire.DiSkillV2; import java.util.ArrayList; public class DiHabit extends DiSkillV2 { /*1 *habit* set: i should x get: random habit engage : x completed clear : clear...
  13. fukurou

    python propagation 121023

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

    python propagation 121023

    class DiHelloWorld(DiSkillV2): # Override def input(self, ear: str, skin: str, eye: str): if ear == "hello": self.setVerbatimAlg(4, "hello world") # # 1->5 1 is the highest algorithm priority
  15. fukurou

    python propagation 121023

    ''' DISKILLV2 CLASS ''' class DiSkillV2: def __init__(self): # The variables start with an underscore (_) because they are protected self._kokoro = Kokoro(AbsDictionaryDB()) # consciousness, shallow ref class to enable interskill communications self._diSkillUtils =...
  16. fukurou

    python propagation 121023

    ''' DISKILLUTILS CLASS ''' class DISkillUtils: # alg part based algorithm building methods # var args param def algBuilder(self, *itte: Mutatable) -> Algorithm: # returns an algorithm built with the algPart varargs algParts1: list[Mutatable] = [] for i in...
  17. fukurou

    LG propagation 10102023

    swift ver ready for propagation @owly
  18. fukurou

    LG propagation 10102023

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

    LG propagation 10102023

    open class DiSkillV2{ private(set) var kokoro:Kokoro = Kokoro(absDictionaryDB: AbsDictionaryDB()) let diSkillUtills:DiSkillUtils = DiSkillUtils() var outAlg:Algorithm? = nil var outpAlgPriority:Int = -1 // defcon 1->5 init() {} func input(ear:String, skin:String...
  20. fukurou

    LG propagation 10102023

Top