You can also checkout my Archived GitHub Profile
- π Iβm currently working on a Music app for iOS and watchOS
- π± Iβve currently started learning Vapor
- π¬ Ask me about anything, I will be glad to help
- π« How to reach me: Connect with me on LinkedIn
- π Pronouns: He/Him
class Ravikiran : Pathade {
//MARK :- Only one instance π
public static let sharedInstance = Ravikiran()
private init() {
isSleeping = false
}
var isSleeping : Bool = true
var knownProgrammingLanguages = ["Swift", "Objective-C", "JavaScript", "Python", "Java"]
var knownFrameworks = ["UIKit","AVFoundation","CoreML","ARKit"]
var knowniOSLibraries = ["Lottie", "Alamofire", "SnapKit", "Hero"]
var knownTools = ["Xcode","Travis","CircleCI","Fastlane", "Git"]
var goalForThisYear = "To contribute lot more to open source community"
var thingsILoveToDo = [
"Photography",
"Read Books",
"Watch Comedy Movies",
"Bookmark Various Articles on Medium.com",
"Listening Podcasts",
"Going for a walk"
]
func think() {
guard !isSleeping else { return }
think()
}
func sleep(){
isSleeping = true
}
func wakeUp() {
isSleeping = false
}
}