Search results

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

    LG propagation 10102023

    swift ver ready for propagation @owly
  5. 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...
  6. 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...
  7. fukurou

    LG propagation 10102023

  8. fukurou

    LG propagation 10102023

    : Array<String>
  9. fukurou

    luxury interior designs

  10. fukurou

    LG propagation 10102023

  11. fukurou

    LG propagation 10102023

    class DiSkillUtils{ // alg part based algorithm building methods // var args param func algBuilder(algParts:Mutatable...)->Algorithm{ // returns an algorithm built with the algPart varargs var algParts1: Array<Mutatable> = [Mutatable]() for algPart in...
  12. fukurou

    LG propagation 10102023

    class AXStrOrDefault{ func gerOrDefault(str1:String, default1:String) -> String { return str1.isEmpty ? default1 : str1 } }
  13. fukurou

    luxury interior designs

  14. fukurou

    luxury interior designs

  15. fukurou

    luxury interior designs

  16. fukurou

    luxury interior designs

  17. fukurou

    luxury interior designs

  18. fukurou

    🏕️offgrid fat shelter build

  19. fukurou

    [MEDIA]

  20. fukurou

    LG propagation 10102023

    java ver propagated
Top