Skip to content
View kamikuo's full-sized avatar

Block or report kamikuo

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

Pinned Loading

  1. SwiftUILightMeter SwiftUILightMeter Public

    Simple Light Meter with SwiftUI

    Swift 8

  2. Diary Diary Public

    a simple diary app

    Swift

  3. FileExtension FileExtension Public

    file download controller

    Swift

  4. SwiftEvents SwiftEvents Public

    define and trigger events for class.

    Swift

  5. Swift Sqlite Controller Swift Sqlite Controller
    1
    //
    2
    //  SqliteController.swift
    3
    //
    4
    //  Created by Jiawei on 2018/3/15.
    5
    //  Copyright © 2019 Jiawei. All rights reserved.
  6. DispatchSource+Timer DispatchSource+Timer
    1
    public extension DispatchSource {
    2
        static func timer(repeating: TimeInterval, handler: @escaping () -> Bool) {
    3
            let timer = DispatchSource.makeTimerSource(queue: DispatchQueue.global())
    4
            var keepTimer: DispatchSourceTimer? = timer
    5
            timer.schedule(deadline: .now(), repeating: repeating)