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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to 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

    22 1

  2. thousandyears/Lexicon thousandyears/Lexicon Public

    Recurrent Mind Maps, Vocabularies, Ontologies and Naming Systems.

    Swift 10 1

  3. swift-compute swift-compute Public

    Edge computing for product logic

    Swift 1

  4. thousandyears/AnyCoding thousandyears/AnyCoding Public

    Coding `Any` using Codable in Swift

    Swift 6

  5. swift-autoresearch swift-autoresearch Public

    A Swift port of the core autoresearch training loop

    Swift

  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