This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
extension Bundle { | |
func decode<T: Decodable>(_ file: String) -> T { | |
guard let url = self.url(forResource: file, withExtension: nil) else { | |
fatalError("Failed to locate \(file) in bundle") | |
} | |
guard let data = try? Data(contentsOf: url) else { | |
fatalError("Failed to load \(file) in bundle") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+-----------------------------------------------------------------------------+ | |
| Xcode Source Control Cheat Sheet | | |
+-----------------------------------------------------------------------------+ | |
| [Setup & Clone] | | |
| 📦 Clone Repository: Intergate -> Clone | | |
| 🔗 Add Existing Remote: Source Control Navigator -> Repositories -> | | |
| -> Remotes -> Add Existing Remote | | |
+-----------------------------------------------------------------------------+ | |
| [Working with Changes] | | |
| 📝 Commit Changes: Source Control Navigator -> your branch -> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"code": "aa", | |
"name": "Afar" | |
}, | |
{ | |
"code": "ab", | |
"name": "Abkhazian" | |
}, | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Help me write work experience in my resume in q&a format. Follow this format: You ask first question, I answer. You ask second question, I answer. Follow this for all questions. When you finish asking all questions, craft work experience. Please find example communication below: | |
You: Describe a significant project or task you completed. | |
Me: I integrated a third-party payment system. | |
You: What specific application did you build? | |
Me: I built a payment processing module for our e-commerce platform. |