Skip to content
View lewisbar's full-sized avatar

Block or report lewisbar

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. AOC-2022 AOC-2022 Public

    https://adventofcode.com/2022

    Swift 1

  2. ChordSheep-UIKit-version ChordSheep-UIKit-version Public

    An app for bands to use a shared database of chordsheets.

    Swift

  3. einteilung einteilung Public

    Makes a plan which musician/sound guy is in charge at which date in our church service

    Python

  4. Pour Pour Public

    Pour your ideas out quickly and save them to Evernote

    Swift

  5. CodingTextView CodingTextView Public

    A UITextView for coding with automatic brackets and indentation, in preparation to a contribution to https://github.com/BenchR267/Get-Schwifty.

    Swift 2

  6. Prime Numbers Oneliner Prime Numbers Oneliner
    1
    print(*filter(lambda x: all([x % i != 0 for i in range(2, x)]), range(2, int(input("Enter upper bound\n")))))