If you want to check part 1.
Fix App Transport Security (ATS) blocks Network connection in iOS
Security is always a strict part of iOS, and you should always follow Apple rules in order to upload your app to App Store. If you have ever seen problems with ATS or SSL when connecting to the network, maybe this article can help you.
Full CI/CD with Docker + GitHub Actions + DigitalOcean (Droplets + Container Registry)
Nowadays, CI/CD became an essential part when developing software. It can save tons of money, time and reduce risks… In this article, I will show you how did I set up CI/CD for my personal blog with free services.
[iOS] Some tips for writing Unit Test
In order to have qualified code, writing Unit Test is an important skill that every developer needs to know. Here are some tips for writing it easier.
Shallow copy and Deep copy in Swift
My colleague sometimes asks me why he just changes the object in his screen, but when back to previous screen, that object keeps the change. I tried to explain to him, then he wants me to write that into a small blog and share with others in the company.