Skip to content
View ollieatkinson's full-sized avatar
🪐
🪐

Organizations

@thousandyears

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

    21 1

  2. thousandyears/Lexicon thousandyears/Lexicon Public

    Recurrent Mind Maps, Vocabularies, Ontologies and Naming Systems.

    Swift 7 1

  3. 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
  4. 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
    
                  
  5. apple/swift-algorithms apple/swift-algorithms Public

    Commonly used sequence and collection algorithms for Swift

    Swift 6k 443

  6. thousandyears/AnyCoding thousandyears/AnyCoding Public

    Coding `Any` using Codable in Swift

    Swift 4