Search results

  1. fukurou

    LDAR mega thread

  2. fukurou

    LDAR mega thread

  3. fukurou

    LDAR mega thread

  4. fukurou

    LDAR mega thread

  5. fukurou

    LDAR mega thread

  6. fukurou

    LDAR mega thread

  7. fukurou

    LDAR mega thread

  8. fukurou

    LDAR mega thread

  9. fukurou

    [MEDIA]

  10. fukurou

    LDAR mega thread

  11. fukurou

    LDAR mega thread

  12. fukurou

    LDAR mega thread

  13. fukurou

    LDAR mega thread

  14. fukurou

    LDAR mega thread

  15. fukurou

    ass shit creamed corn inside the ass

    from __future__ import annotations
  16. fukurou

    port overlort python ->Swift assed edition!

    /// Simulates a "Night Rider" LED display that moves position up and down in a bounce pattern. class AXNightRider { private var mode: Int = 0 private var position: Int = 0 private var lim: Int = 0 private var direction: Int = 1 init(limit: Int) { if limit > 0 {...
  17. fukurou

    port overlort python ->Swift assed edition!

    /// Provides tools for generating string permutations from multiple lists. class CombinatoricalUtils { private(set) var result: [String] = [] /// Internal recursive function to generate permutations. private func generatePermutationsHelper(_ lists: [[String]], _ result: inout...
  18. fukurou

    port overlort python ->Swift assed edition!

    /// A simple key-value pair representation class AXKeyValuePair { private var key: String private var value: String init(key: String = "", value: String = "") { self.key = key self.value = value } func getKey() -> String { return key } func...
  19. fukurou

    port overlort python ->Swift assed edition!

    // ╔════════════════════════════════════════════════════════════════════════╗ // ║ MISCELLANEOUS ║ // ╚════════════════════════════════════════════════════════════════════════╝
  20. fukurou

    port overlort python ->Swift assed edition!

    /// A limited-size dictionary used for short-term memory. /// Evicts oldest entries based on insertion order. class Catche { private var limit: Int private var keys: UniqueItemSizeLimitedPriorityQueue private var dict: [String: String] = [:] init(size: Int) { self.limit...
Top