Skip to content
View ollieatkinson's full-sized avatar
💭
Out of Office
💭
Out of Office

Organizations

@thousandyears
Block or Report

Block or report ollieatkinson

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
ollieatkinson/README.md

Hi there 👋

Pinned Loading

  1. thousandyears/garden thousandyears/garden Public

    Thousand Years Manifesto

    20 1

  2. thousandyears/Lexicon thousandyears/Lexicon Public

    Recurrent Mind Maps, Vocabularies, Ontologies and Naming Systems.

    Swift 7 1

  3. Predicate Predicate Public

    A small addition to Swift adding predicate matchers for filtering operators using KeyPaths, it just feels natural™

    Swift 34 1

  4. DataPersistence DataPersistence Public

    CRUD for `Data`

    Swift 3

  5. Utilise the private CoreSVG framewor... Utilise the private CoreSVG framework in Swift
    1
    import Darwin
    2
    import Foundation
    3
    import UIKit
    4
    
                  
    5
    // https://github.com/xybp888/iOS-SDKs/blob/master/iPhoneOS17.1.sdk/System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG.tbd
  6. Implementation of `Tuple` type using... Implementation of `Tuple` type using Swift's new parameter packs
    1
    public struct Tuple<each T> {
    2
        public private(set) var value: (repeat each T)
    3
        public init(_ value: repeat each T) { self.value = (repeat each value) }
    4
    }
    5