Skip to content
View antfarm's full-sized avatar

Block or report antfarm

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

    Advent of Code 2024 in Swift, without using mutable state, custom data types or loops.

    Swift 1

  2. CRC32 checksum generation in a few l... CRC32 checksum generation in a few lines of Swift 5. https://en.wikipedia.org/wiki/Cyclic_redundancy_check#CRC-32_algorithm
    1
    class CRC32 {
    2
            
    3
        static var table: [UInt32] = {
    4
            (0...255).map { i -> UInt32 in
    5
                (0..<8).reduce(UInt32(i), { c, _ in
  3. Life Life Public

    Conway's Game of Life in SwiftUI MVVM with a hint of the Elm architecture.

    Swift 2

  4. TurtleGraphics TurtleGraphics Public

    iOS Turtle Graphics Demo

    Swift 1

  5. Emanon Emanon Public

    Benchmarking several ways of evaluating and generating arithmetic expressions at run-time with Swift.

    Swift

  6. rpeggio rpeggio Public

    Command line sound toys written in JRuby using javax.midi. (https://www.youtube.com/watch?v=2OmEuTcoZoU)

    Ruby