Journey from junior dev to senior dev requires learning and upskilling. Things that you need to learn
- SOLID principle
- Protocol Oriented Programming
- TDD
- Design Patterns and when to use which?
- App architecture pattern and how to use in project.
#mobile#iOS#Android
@programmerByDay Depends on use case... if it's one off, then you could consider using switch or ifs, but generally considering the cases could increase, they couldn't be made flexible enough using this strategy.
@anumness Good knowledge of investment, i guess. If I could invest properly and grow my money then it would be easier to take "less secure" job in a startup
Learn how to define Engineering Goals
https://t.co/LSsJOnnHNg
📈 Create clear Objectives
🎯 Measurable, time-bound targets
🚀 Become more successful
#swiftlang#iosdev
Do you do PR reviews?
I used to think PR reviews are for experts. I don't know enough to review PRs
But I realised, it's not just about pointing out bad code,
I will also learn about other areas of codebase that I generally don't touch.
#programming
Do you do PR reviews?
I used to think PR reviews are for experts. I don't know enough to review PRs
But I realised, it's not just about pointing out bad code,
I will also learn about other areas of codebase that I generally don't touch.
#programming
After updating to use the string catalog I have to say it's actually pretty nice.
I like the status markers. Makes it clear exactly which strings need attention after adding new strings or editing strings. Also automatically marks them as "Stale" if there's a key in your catalog that isn't found in code so you can tidy up.
And it's now super easy to vary by platform and pluralize. Made me realize that some of my strings needed more appropriate versions for Mac (tap vs click).
Do you love Singleton Pattern?
No right?
Singletons are the most misused and misunderstood patterns of all time. There are too many people criticizing it just because they don't implement in proper use case
They are good if single state is a requirement.
Don't hate them