Skip to content
View tjeerdintveen's full-sized avatar

Block or report tjeerdintveen

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. manning-swift-in-depth manning-swift-in-depth Public

    Source code for Manning's book: Swift in depth

    Swift 146 64

  2. advent-of-code-2020 advent-of-code-2020 Public

    Doing some advent of code exercises in Common lisp

    Common Lisp

  3. adventofcode2018 adventofcode2018 Public

    The advent of code exercises in Rust

    Rust 1

  4. swift_function_piping.swift swift_function_piping.swift
    1
    
                  
    2
    import UIKit
    3
    
                  
    4
    // Naive implementation of a piping operator.
    5
    
                  
  5. Vurig-Calendar Vurig-Calendar Public

    Easy to use, simple, clean calendar view

    Objective-C 186 68

  6. inspect as an extension on Sequence inspect as an extension on Sequence
    1
    extension Sequence {
    2
        public func inspect(
    3
            _ body: (Element) throws -> Void
    4
            ) rethrows  -> Self {
    5
            for element in self {