Skip to content
View doroshenko's full-sized avatar
  • Copenhagen, Denmark
Block or Report

Block or report doroshenko

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

  1. MPCRemote MPCRemote Public

    MPC-HC remote control app for iOS

    Swift 2

  2. Unified preview style for SwiftUI's ... Unified preview style for SwiftUI's PreviewProvider
    1
    import SwiftUI
    2
    
                  
    3
    struct ContentView: View {
    4
        var body: some View {
    5
            Text("Hello, World!")
  3. IPv4 storage and handling in Swift IPv4 storage and handling in Swift
    1
    import Foundation
    2
    
                  
    3
    typealias IPv4 = UInt32
    4
    
                  
    5
    extension IPv4 {
  4. An incremental linting script for Sw... An incremental linting script for SwiftLint
    1
    #!/bin/bash
    2
    
                  
    3
    START_DATE=$(date +"%s")
    4
    
                  
    5
    SWIFTLINT="${PODS_ROOT}/SwiftLint/swiftlint"