Skip to content
View gorpello's full-sized avatar

Block or report gorpello

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

Hey, I’m @gorpello πŸ‘‹

Hi, my name is Gianluca Orpello. I am an Apple Certified Trainer and a Mentor in Italy. I specialize in iOS app design and development, web app design, and API design. I also have knowledge in User Interaction, User Experience, and Project Management.

import SwiftUI

struct DeveloperProfile: View {

    let name: String = "Gianluca Orpello"
    let title: String = "Coding Mentor"
    
    let skills: [String] = [
      "Agile", "App Architecture", "Auto-Layout", "CLI tools with Swift", "Databases",
      "HTML/CSS", "Human Interface Guidelines", "JavaScript", "Public Speaking",
      "REST APIs", "Server Side Swift", "SpriteKit", "Storytelling", "Swift AWS Lambda Runtime",
      "Swift Playgrounds", "iOS", "ipadOS", "watchOS", "tvOS", "macOS", "WebKit",
      "Swift", "UIKit", "SwiftUI", "GIT", "Privacy", "And a Lot More..."
    ]

    var body: some View {
        VStack(alignment: .leading) {
            Text(name)
                .font(.title)
            Text(title)
                .font(.subheadline)
            Text("Skills")
                .font(.headline)
            ForEach(skills, id: \.self) { skill in
                Text(skill)
                    .font(.body)
            }
        }
    }
    
}

πŸ§‘β€πŸ’»πŸΏ A donkey developer with a dream of becoming a unicorn πŸ¦„

I have always looked for new challenges to be able to grow professionally. The desire for success has prompted me several times to look for new and challenging environments.

I am a passionate and empathetic developer at heart with experience in project design and management.

The experience at the Apple Developer Academy has taught me to work with people with different skill sets and professional backgrounds to achieve a common goal. Teaching me to manage the workload to meet deadlines, organising work on different projects, improving my analytical, critical thinking, and problem-solving skills.

🏍️ More About Me

Apple Certified Trainer
Faculty & Graduated @ Apple Developer Academy
πŸ‘¨β€πŸ’» Software Engineer
πŸ“² Apple Enthusiast
🏍 Motorbike Lover.
⛡️ Amateur Sailor.

Pinned Loading

  1. LazySwipeActions LazySwipeActions Public

    Swipe Actions on LazyVStack

    Swift 1

  2. create-with-swift/Camera-capture-setup-in-SwiftUI create-with-swift/Camera-capture-setup-in-SwiftUI Public

    In this short tutorial you will learn how to set a camera feed capture in a SwiftUI app.

    Swift 24 1

  3. SwiftPackageIndex-Server SwiftPackageIndex-Server Public

    Forked from SwiftPackageIndex/SwiftPackageIndex-Server

    The Swift Package Index is the place to find Swift packages!

    Swift 1

  4. Scrapesite Scrapesite Public

    Simple script to scrape a public website

    Swift 2