
Useful Github Actions
Setting GitHub actions is a headache, and it takes time to run correctly. I’ll share what actions I daily use. ... Read More


twentyfour: your lifestyle productivity planner
a product of Aksoft Studios [aksoftstudios@gmail.com] I recently started creating my own mobile product — I had an idea ... Read More


TravelTime: A simple commute app built on React Native
React Native has become increasingly popular over the years, and I wanted to learn the basics of this framework. To get ... Read More


How to install IPA file on iPhone device
To install IPA file on iPhone device, use Apple Configurator app How to use it? Connect your iPhone into M... Read More


Android UI: Building a Custom View
I was recently working on an android app, and one of the features required me to build a custom UI component. In this po... Read More

Why volatile is essential in double-checked singleton
This is a double-checked locking singleton implementation without the volatile keyword. What’s wrong with it? class Foo ... Read More

iOS, Security topics – Certificate, Provisioning, Code Signing, App Transport Security and CryptoKit
Security topics are common interview question. I summarized what is Certificate, Provisioning, Code Signing, App Transpo... Read More


Turned 40 and got layoff on April fools day 2024, Here is my senior iOS interview experience with Google, Meta and Amazon
I turned 40 and got layoff on April fools day. It’s not a success story but I want to share my iOS interview ex... Read More


Core Animation Basics
✍️ Note What is Core Animation Core Animation use bitmaps. UIView -> Layer -> Bitmap -> Hardware... Read More


Socket Programming using Vapor and URLSessionWebSocketTask
In this post, I’ll share how to build socket application. Project Structure I created a workspace and put t... Read More


iOS, Useful Bit Manipulation Techniques
✍️ Note Some codes and contents are sourced from Udemy. This post is for personal notes where I summarize t... Read More


UIKit, Learn Mobile System Design from Apple’s Sample Project
Did you know Apple provides Sample Code? I learned App Architecture from Apple’s Sample Projects. In this post,... Read More


iOS, Graph(unweighted and weighted) – Shortest Path Algorithms (Dijkstra, Bellman-Ford)
✍️ Note Some codes are sourced from Loony Corn’s Udemy Course (https://www.udemy.com/user/janani-ravi-2/). This ... Read More


What sorting algorithm does Swift use in iOS?
Sort algorithm in Swift Foundation is TimSort (Insertion Sort + Merge Sort) I wrote posts about Insertion Sort and Me... Read More


iOS, Find least common ancestor from 2 UIViews
Find the least common ancestor. UIView is a tree data structure. Each node (UIView) can have multiple subviews. To fi... Read More


Backward and Forward Compatibilities
Forward compatibility and backward compatibility sometimes are confusing Here are their definitions from Wikipedia: For... Read More


iOS, Implement Least Recently Used Cache
✍️ Note Some codes are sourced from Holczer Balazs’s Udemy Course (https://www.udemy.com/course/algorithms-and-d... Read More


iOS, General Programming Problems
✍️ Note Some codes are sourced from Loony Corn’s Udemy Course (https://www.udemy.com/user/janani-ravi-2/). This ... Read More


iOS, Combine Framework
✍️ Note Some codes and contents are sourced from Apple, WWDC and BigMountStudio. This post is for personal ... Read More


Sliding Window: Read once, Practice Everywhere.
The sliding window is a very common technique to optimize subarray problems. I have solved similar problems many times, ... Read More


iOS, Graph Data Structure
✍️ Note Some codes and contents are sourced from Udemy. This post is for personal notes where I summarize t... Read More


iOS, Heap Data Structure
✍️ Note Some codes and contents are sourced from Udemy. This post is for personal notes where I summarize t... Read More


iOS, Autorelease Pool
✍️ Note Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes... Read More


iOS, File System
✍️ Note Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes... Read More


iOS, Stack and Queue
✍️ Note Some codes and contents are sourced from Udemy. This post is for personal notes where I summarize the or... Read More


iOS, App Architectures
✍️ Note Some codes and contents are sourced from Apple’s official documentation, google android official site an... Read More


iOS, Communicate with a Server
✍️ Note Some codes and contents are sourced from Apple’s official documentation, educative.io and mozilla. This ... Read More


iOS, hitTesting a View – hitTest, point(inside)
✍️ Note Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes... Read More


Swift, Recursion and the Recursive Sense
✍️ Note Some codes are sourced from Loony Corn’s Udemy Course (https://www.udemy.com/user/janani-ravi-2/). This ... Read More


iOS, What is Clean Architecture and SOLID principle?
✍️ Note Some codes and contents are sourced from The Clean Code Blog official documentation, The iOS Interview G... Read More


Swift, final keyword
✍️ Note Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes... Read More


iOS, App life cycle
✍️ Note Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes... Read More


Swift, Data Structure – Linked List
✍️ Note Some codes are sourced from Loony Corn’s Udemy Course (https://www.udemy.com/user/janani-ravi-2/).... Read More


Swift, Data Structure – Tree Structure
✍️ Note Some codes are sourced from Loony Corn’s Udemy Course (https://www.udemy.com/user/janani-ravi-2/).... Read More


iOS, NSCoding
✍️ Note Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes... Read More


UIKit: UIView, UIImageView
✍️ Note Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes... Read More


Swift, Dispatch Semaphore
✍️ Note Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes... Read More


iOS, Memory Layout, static library, dynamic library
✍️ Note Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes... Read More


Swift, Property Wrappers
✍️ Note Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes... Read More


Swift, Tips for solving data structure and algorithms
Handling String How to access character? You can’t access character by integer. You should use st... Read More


Swift, Modern Concurrency
✍️ Note Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes... Read More


Swift, OperationQueue
✍️ Note Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes... Read More


Understanding of MVVM architecture pattern
https://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93viewmodelModel: Business logic, Data model View: UI presentatio... Read More


Swift, Concurrency Programming guide
✍️ Note All the codes and contents are sourced from Apple’s official documentation. This post is for personal n... Read More


Swift, Rethrows
Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes where I summari... Read More


iOS, RunLoop
Some codes and contents are sourced from Apple’s official documentation. This post is for personal notes where I summari... Read More


Swift, Sorting and Binary Search Algorithm
Useful Foundation APIs swapAt swap the value in an array by passing the index Bubble Sort func bubbleSort(... Read More


Swift, DispatchQueue
✍️ Note All the codes and contents are sourced from Apple’s official documentation. This post is for personal n... Read More


Swift, ARC Automatic Reference Counting
✍️ Note All the codes and contents are sourced from Apple’s official documentation. This post is for personal n... Read More


Leetcode official iOS app – How can I change Chinese language to English
Download Leetcode official app Did you know leetcode has an official iOS app? You can download it. But there is on... Read More


Do you require a server for your iOS app? CloudKit might be the perfect fit for you!
Choosing a server can be challenging, especially if you’re not a backend engineer but still need one for your iOS ... Read More


How Android touch events are dispatched?
In this article, I will elaborate on how touch events are dispatched and handled in the Android view tree. The article c... Read More


A Compose Multiplatform practice app
I built an practice app based on this tutorial: https://www.jetbrains.com/help/kotlin-multiplatform-dev/multiplatform-kt... Read More

![[Draft] Python cheat sheet for iOS Engineer](/_next/image?url=https%3A%2F%2Fshawnbaektravel.wordpress.com%2Fwp-content%2Fuploads%2F2024%2F01%2Fblog-post-6.png&w=3840&q=75)
[Draft] Python cheat sheet for iOS Engineer
I asked my self Is python worth to learn for iOS development? My answer is Yes. Because I can use it for Build s... Read More


Xcode: How to upload dSYM to Firebase Crashlytics
Have you faced the missing dSYM issue? You can fix it by uploading dSYM to firebase. Official Document Build Sett... Read More


Xcode Cloud, How to upload ipa to Firebase AppDistribution
1. Download firebase macOS tool https://firebase.google.com/docs/cli#mac-linux-standalone-binary 2. Copy firebase-... Read More


What is Dynamic Programming?
For me, DP problem is the most challenging problem when I faced it during the interview process. To understand it I summ... Read More


The top 5 mistakes I made on DTO
DTO(Data Transfer Object) is used to pass data between systems or layers while maintaining a clear and structured repres... Read More


How to implement MasonryLayout (Pinterest Style) using UICollectionViewCompositionalLayout
In this post, I’ll share sample code for implementing MasonryLayout using UICollectionViewCompositionalLayout. ... Read More


SwiftUI: Syntax Highlighting JSON using UITextView
It’s very simple. I used this Highlight SPM Sample Code // // ContentView.swift // Button // // Created by Sun... Read More


Project Setup for Full Stack Swift Developer – Use Workspace
This post is about project setup for full stack swift developer. It is the same as WWDC 2022 – Use Xcode for serve... Read More


Xcode Cloud – Auto-Generated Test Notes for TestFlight Build (PR Title, Commits, and JIRA Ticket Links)
No more put ‘No test notes’ at Test Flight No test notes. It’s not clear what to ... Read More


Xcode Cloud – How to check App Version (MARKETING_VERSION) from ci_post_xcodebuild.sh
Check App Version using xcodebuild Update ci_scripts/ci_post_xcodebuild.sh CURRENT_PROJECT_VERSION=$(xcodebuild -projec... Read More


Apple Vision Pro Developer Lab in Singapore
Today I attended Apple office in Singapore to test Vision Pro. Office is located in One North. From my office to here It... Read More


How to write a unit test for validating regex without using XCUIElement’s typeText function
This post might be helpful if you are considering using the typeText function for validating user input using regular ex... Read More


How to check the unused Swift Code
Recently I faced an issue with compile -O for product build. I assumed that It caused by dead function issue. I reported... Read More


City Commuter App Privacy Policy
At City Commuter App, we are committed to protecting the privacy of our users. This privacy policy explains the types of... Read More


How Swift Compile Optimazation Level works
Optimization Level Swift compiler has 3 optimization options (link) -O for product code -Onone for development... Read More


AWS Expenses for My App
I’ve been using AWS to host my Vapor Swift server, but currently, there’s no traffic as I am just running th... Read More


How to check the latest SwiftUI preview crash log
SwiftUI Preview crashed Preview Crashed logs are saved at “~/Library/Logs/DiagnosticReports“ ... Read More


nativeMobile, Privacy Policy
At nativeMobile, we are committed to protecting the privacy of our users. This privacy policy explains the types of info... Read More


Why did we change our iOS rule to allow using Storyboard?
Our UI creation rule was creating a UI programmatically. But recently, we changed it. Now our iOS team can create UI dep... Read More

I attended Droidcon Singapore 2022: Here is a list of things I learnt
Introduction It was good to be back attending talks at Droidcon Singapore this year. The last time I was here was back i... Read More

Mobile App Development: Kotlin Multiplatform Mobile
Introduction Kotlin Multiplatform Mobile (KMM) is a technology developed by JetBrains (https://www.jetbrains.com/) that ... Read More


How to use Docker on your local Vapor Server
I wrote about How to deploy Vapor App(Server-Side-Swift) to the AWS This post is about setting on a local server using D... Read More


How we setup an A/B test to study the best user experience for our users
A guide on how to setup A/B tests on Android to help improve user experience Background Our team was tasked with improvi... Read More

Programming Language: Lox
Introduction My attempt at building the interpreter from the book Crafting Interpreters, where the author walks us throu... Read More


Struct vs. Class: Deciding between Structs and Classes
I was asked What is Struct and Class? Could you explain it? It’s the most common interview question. I summarized ... Read More


Let’s make a receipt text recognizer with the Apple Vision framework.
Overview There are only three steps. I tested these steps using the playground app. ... Read More


How to setup AWS load balancer for Vapor App(Server-Side Swift)
Overview Create AWS Certificate To support HTTPS, We need to create a certificate. I&#... Read More


How to deploy Vapor App(Server-Side-Swift) to the AWS?
This post will write about Docker, AWS ECR, ECS, Fargate, RDS, and Github Action. Contents Overview Getting Start AWS ... Read More


The life cycle of UIViewController
In this post, I’ll explain the life cycle of UIViewController. What happens when you create the UIViewController? ... Read More


How To Create a Tip Calculator on iOS using UIKit and Storyboards
In this tutorial, you’ll learn how to separate logics from view and to deal with user input on UITextField by making the... Read More


Useful English resources like books, lectures, and services for Software Engineer
In this post, I’ll share useful English resources for Software Engineer. I struggled to express my thought to... Read More


How to use an older version of Swift on Xcode 12?
Sometimes You need to use the older version of Swift for preparing the interview. For example, The Codility doesn’t supp... Read More


How can I get a formatted address from CLPlacemark?
This post is concise, but useful to represent the formatted address from CLPlacemark. The CoreLocation provides the loca... Read More


Xcode shortcut keys to boost productivity
In this post, I’ll introduce useful shortcut keys to boost your productivity. I know it’s hard to remember... Read More


How to get the date you want using the Calendar
In this post, I’ll write about Calendar to get the date you want. You can get the specific time and dates like midnight,... Read More


My first experience of attending the international iOS conference, try! Swift Tokyo 2019
I attended the try! Swift Tokyo 2019, which is my first attending iOS conference. I was very excited. I’ll share my exp... Read More


How to animate path using CoreAnimation
I wrote a Behind the scene of delightful animation it is about Animation patterns in modern iOS Apps. In this post, I’ll... Read More


How to display the temperature with unit?
In this post, I’ll share how to display the temperature with unit using the MeasurementFormatter. MeasurementFormatter ... Read More


Behind the scene of delightful experience
I had presented about iOS animations at LetSwift conference last year. I classified the animations by researching the mo... Read More


How to remove text insets on UITextView?
Default UITextView has text insets, unlike the UILabel. How to remove the insets on UITextView like an UILabel? ... Read More


Introduction to Table
Last month I made the Table library. I inspired by javascript console.table. What is the Table? The Table is a ... Read More


What’s new on scrollView?
In Xcode 11, the scroll view has two new things, which are the Content Layout Guide and Frame Layout Guide. It’s a very... Read More


Must know things about Data Structure and Algorithms.
The coding interview is hard because We have to remember the basic data structures and algorithms. For me, I received ma... Read More


How to render xib on Storyboard?
When you create the custom view with xib and then set the custom view on Storyboard but if It has not appeared. How can ... Read More


How to enable syntax highlighting for Swift on Squarespace
Let’s enabling syntax highlighting for Swift The Squarespace supports syntax highlighting for HTML, CSS, and Javascript.... Read More


Android Architecture: Networking
Photo by rawpixel on UnsplashHi again. In this post I thought of sharing a simple architecture I’ve been using to handle... Read More


Android Perfomance: Layout Rendering
Layouts and views can be defined in one of two ways: via XML or programatically. Either way, the system will still need ... Read More


Getting Started with Flutter
Flutter (https://flutter.io) is a new mobile SDK which can be used to build beautiful UI applications for cross platform... Read More
