Skip to content
View kk-vv's full-sized avatar
πŸ‘¨β€πŸ’»
πŸ‘¨β€πŸ’»
  • Alone
  • ON-CHAIN
Block or Report

Block or report kk-vv

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
kk-vv/README.md

Hi cosmos πŸ›°οΈ

  • πŸ§‘β€πŸ’» A Coder ...
  • πŸ€” Looking for true meaning ...
  • πŸ”­ Just watching ...
  • 🌌 Missing ...

Pinned

  1. ZXDrawPrize ZXDrawPrize Public

    iOS lottery by swift

    Swift 10 2

  2. Extension SwiftyJSON with JSONDecodable Extension SwiftyJSON with JSONDecodable
    1
    import Foundation
    2
    import SwiftyJSON
    3
    
                  
    4
    public protocol JSONDecodable {
    5
    
                  
  3. Shitcoin price format eg. 0.0{6}4518 Shitcoin price format eg. 0.0{6}4518
    1
    enum RegularType {
    2
        case scientificNotation
    3
        case shitcoinPrice
    4
        case url
    5
        case evmAddress
  4. BigInt to string BigInt to string
    1
    import Foundation
    2
    import BigInt
    3
    
                  
    4
    extension BigUInt {
    5
        func string(decimals: Int) -> String {
  5. Biometrics Biometrics
    1
    import UIKit
    2
    import LocalAuthentication
    3
    
                  
    4
    class BiometricsUtils {
    5
    
                  
  6. Swift namespace mixin Swift namespace mixin
    1
    public struct MixinWrapper<Base> {
    2
      public var base: Base
    3
      init(_ base: Base) {
    4
        self.base = base
    5
      }