Search results

  1. fukurou

    optimizing the shit

  2. fukurou

    optimizing the shit

    class_name = instance.__class__.__name__
  3. fukurou

    [MEDIA]

  4. fukurou

    [MEDIA]

  5. fukurou

    [MEDIA]

  6. fukurou

    [MEDIA]

  7. fukurou

    [MEDIA]

  8. fukurou

    [MEDIA]

  9. fukurou

    [MEDIA]

  10. fukurou

    🎮gaming gaming laptop

    @ZORO
  11. fukurou

    [MEDIA]

  12. fukurou

    [MEDIA]

  13. fukurou

    [MEDIA]

  14. fukurou

    [MEDIA]

  15. fukurou

    👨‍💻 dev porting Auxiliary modules Java->kotlin

    class AXSkillBundle(vararg skillsParams: DiSkillV2) { private val skills: ArrayList<DiSkillV2> = ArrayList<DiSkillV2>() private val tempN: Neuron = Neuron() private var kokoro: Kokoro = Kokoro(AbsDictionaryDB()) fun setKokoro(kokoro: Kokoro) { this.kokoro = kokoro...
  16. fukurou

    👨‍💻 dev porting Auxiliary modules Java->kotlin

    class AXConvince(private val req: AXContextCmd) { private val reset = Responder("reset") private var min = 3 // minimum requests till agreement private val rnd = DrawRnd() private var counter = 0 var isConvinced = false private set private var max_eff_to_convince = 6 fun...
  17. fukurou

    👨‍💻 dev porting Auxiliary modules Java->kotlin

    class AXContextCmd { // engage on commands // when commands are engaged, context commans can also engage var commands = UniqueItemSizeLimitedPriorityQueue() var contextCommands = UniqueItemSizeLimitedPriorityQueue() var trgTolerance = false fun engageCommand(s1: String)...
  18. fukurou

    👨‍💻 dev porting Auxiliary modules Java->kotlin

    class TrgSnooze( //2 recomended private var maxrepeats: Int ) : TrGEV3() { // this boolean gate will return true per minute interval // max repeats times. private var repeats = 0 private var snooze = true private var snoozeInterval = 5 private val playGround =...
  19. fukurou

    👨‍💻 dev porting Auxiliary modules Java->kotlin

    class TrgMinute : TrGEV3 { // trigger true at minute once per hour private var hour1 = -1 var minute: Int private val pl = PlayGround() constructor() { val rand = Random() minute = rand.nextInt(60) } constructor(minute: Int) { this.minute =...
  20. fukurou

    👨‍💻 dev porting Auxiliary modules Java->kotlin

    class TrgEveryNMinutes( startTime: String, // trigger returns true every minutes interval, post start time private var minutes // minute interval between triggerings : Int ) : TrGEV3() { private val pl = PlayGround() private val trgTime: TrgTime private var timeStamp = ""...
Top