Skip to content
View lukaskukacka's full-sized avatar
Block or Report

Block or report lukaskukacka

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. ReducerViewModel ReducerViewModel Public

    Unidirectional iOS MVVM architecture inspired by Redux (using States, Events and Reducer).

    Swift 2

  2. SlideoverCardViewController SlideoverCardViewController Public

    My super-quick experiment to implement slideover card behavior as seen in iOS Stocks or Maps app.

    Swift

  3. Keychain dumper (Obj-C). Prints all ... Keychain dumper (Obj-C). Prints all values from iOS Keychain.
    1
    @interface KeychainDumper: NSObject
    2
    - (void)dumpVerbose:(BOOL)verbose;
    3
    @end
    4
    
                  
    5
    @implementation KeychainDumper
  4. Simple Swift generic wrapper class g... Simple Swift generic wrapper class giving synchronized (threadsafe) access to an instance (Swift 5)
    1
    // Swift Playground
    2
    import Foundation
    3
    import Dispatch
    4
    
                  
    5
    final class Synchronized<T> {