Skip to content
View antoniopantaleo's full-sized avatar
πŸ’»
I'm learning new things
πŸ’»
I'm learning new things
Block or Report

Block or report antoniopantaleo

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

GitHub Workflow Status

octocat

Hi πŸ‘‹
I'm Antonio Pantaleo

πŸ“† Joke of the day (14/05/2024)

How can you tell an extroverted programmer?

He looks at YOUR shoes when he's talking.

πŸ§‘πŸ½β€πŸ’» About

🏑 28 years old developer based in Turin, Italy

πŸŽ“ I've a master degree in computer engineering

πŸ”€ Git addicted

πŸ“± In my daily life I mainly work as a native iOS developer, but I love learning new things, challenge myself and automate repetitive or boring workflows

πŸ›£ On the road to be a proficient iOS engineer

🌟 Contributed to

πŸ† My Latest Projects

πŸ“ˆ Stats

πŸ” Find me

linkedin spotify bandcamp

Pinned

  1. Decode a generic decodable object Decode a generic decodable object
    1
    public extension JSONDecoder {
    2
            
    3
        static func decode<T:Decodable>(from data: Data) -> T? {
    4
            do { return try JSONDecoder().decode(T.self, from: data) as T } 
    5
            catch { return nil }
  2. APFlipDigits APFlipDigits Public

    A SwiftUI package to display and animate integer numbers

    Swift 1 1