Skip to content
View TizianoCoroneo's full-sized avatar
๐Ÿ‘น
Playing type-level Sudoku
๐Ÿ‘น
Playing type-level Sudoku

Organizations

@TicketSwap @ComputerScienceEducation

Block or report TizianoCoroneo

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
TizianoCoroneo/README.md

Hi there ๐Ÿ‘‹

  • ๐Ÿ”ญ Iโ€™m currently working as iOS senior software engineer for TicketSwap.
  • ๐ŸŒฑ Iโ€™m studying for a MSc in Computer Security at Vrije Universiteit, Amsterdam, with the VUSec research group.
  • ๐Ÿ‘ฏ I like open source, videogames, music, cats.
  • ๐Ÿ’ฌ Ask me anything, I'm always open for a chat (on Bluesky: tizianocoroneo.bsky.social)!

Pinned Loading

  1. Deeplink Deeplink Public

    A library to parse deeplinks and their arguments using String interpolation.

    Swift 54 5

  2. Type level FizzBuzz in Swift 5.10 Type level FizzBuzz in Swift 5.10
    1
    func namespace(_ f: () -> ()) -> () { f() }
    2
    
                  
    3
    // A fizz buzz implementation in Swift
    4
    namespace {
    5
        let range = 1...100
  3. Swift 5.10 - Cast [Any] to a tuple Swift 5.10 - Cast [Any] to a tuple
    1
    private func cast<each Result>(
    2
        _ values: [Any],
    3
        to r: (repeat each Result).Type = (repeat each Result).self
    4
    ) throws -> (repeat each Result) {
    5
        var count = 0