Skip to content
View NarenkrishnaaR's full-sized avatar
  • Sedin Technologies
  • Chennai

Block or report NarenkrishnaaR

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
NarenkrishnaaR/README.md
//  Naren.swift
//  GitHubProfile
//
//  Created by Naren on 2024.
//  πŸš€ Passionate iOS Developer | Swift Enthusiast | Lifelong Learner
//

import Foundation

struct Naren {
  
  // MARK: - About Me
  let name: String = "Naren Krishnaa"
  let role: String = "Senior iOS Developer"
  let experience: Int = 8
  
  // MARK: - Current Focus
  var currentFocus: [String] {
    return [
      "πŸ“š Deepening expertise in SwiftUI and Combine",
      "πŸš€ Enhancing iOS performance with Core Animation and optimization techniques",
      "🎨 Crafting clean and scalable UI/UX designs",
      "πŸŽ™οΈ Exploring podcast integration and multimedia content delivery",
      "πŸ“– Sharing knowledge through blogs and Swift meetups",
      "πŸ“š Enjoying fiction and exploring new literary genres"
    ]
  }
  
  
  // MARK: - Skills
  let skills: [String] = [
    // Programming Languages & Frameworks
    "Swift", "Objective-C", "UIKit", "SwiftUI",
    
    // Data Persistence & Storage
    "Core Data", "Realm", "Firebase",
    
    // Architectural Patterns
    "MVP", "MVC", "MVVM",
    
    // Version Control & Deployment
    "Git", "GitHub", "App Store Deployment",
  ]
  
  
  // MARK: - Connect With Me
  func connectLinks() -> [String: URL] {
    return [
      "πŸ’Ό LinkedIn": URL(string: "https://www.linkedin.com/in/narenkrishnaa")!,
      "πŸ™ GitHub": URL(string: "https://github.com/NarenkrishnaaR")!,
      "πŸ“§ Email": URL(string: "mailto:narenkrishnaar@gmail.com")!
    ]
  }
}
  // Instantiate the Profile
  let narenProfile = Naren()
  
  // Showcase Profile Details
  print("πŸ‘‹ Hello, I'm \(narenProfile.name) - \(narenProfile.role) with \(narenProfile.experience)+ years of experience.\n")
  print("πŸš€ Currently focusing on: \(narenProfile.currentFocus.joined(separator: ", "))\n")
  print("πŸ› οΈ Skills: \(narenProfile.skills.joined(separator: ", "))\n")
  print("πŸ“¬ Connect with me: \(narenProfile.connectLinks().keys.joined(separator: ", "))\n")
    

Popular repositories Loading

  1. iOS-Swift-Little-Tricks iOS-Swift-Little-Tricks Public

    Forked from uy/iOS-Swift-Little-Tricks

    πŸ”‘ Little tricks should be known

    Swift 1

  2. CloudinarySample CloudinarySample Public

    Upload and Download an image using Cloudinary sample app

    Swift 1 1

  3. Orion Orion Public

    Swift

  4. MapView MapView Public

    Swift

  5. BuildingHub BuildingHub Public

    Swift

  6. SnapkitSample SnapkitSample Public

    Building view with auto layouts constraints programmatically

    Swift