top of page
Search


Hui Wang
Jul 2, 20231 min read
Hui's iOS Podcast: 4. Active Listening: The Game-Changer in Personal and Professional Life
In this fascinating episode of "Hui's iOS Podcast," we delve into the often-neglected art of active listening. We all think we're great...


Hui Wang
Jun 18, 20231 min read
‎Hui's iOS Podcast: 3. Unpacking iOS 17: What's New, What's Hot! i Apple Podcasts
In the ever-evolving realm of technology, one must stay updated to navigate the waves of change. As we know, Apple's newest operating...


Hui Wang
Jun 18, 20231 min read
Hui's iOS Podcast: 2. WWDC 2023, SwiftUI Enhancements and SwiftData Unveiled i Apple Podcasts
Exciting news for all iOS enthusiasts out there! My latest episode of "Hui's iOS Podcast" is now live and ready to turbo-charge your iOS...


Hui Wang
Jun 18, 20231 min read
‎Hui's iOS Podcast: 1. Apple Vision Pro: A Glimpse into the Future of Tech i Apple Podcasts
Exciting News! I'm thrilled to announce the launch of the very first episode of my personal podcast - Hui's iOS Podcast. I delve into the...

Hui Wang
May 8, 20233 min read
101. News: Mojo: The Revolutionary AI-Language Set to Disrupt the Industry
Last week, the tech world was abuzz with the debut of the new programming language, Mojo, at Modular AI's launch event. The fragmented...
Hui Wang
Mar 11, 20232 min read
100. Pause on Blog Updates: Audio/Video Development Guide in Progress!
Dear readers, I am writing this announcement to inform you that I will take a break from updating my blog for a few months. The reason...

Hui Wang
Feb 13, 20231 min read
99. SwiftUI: Creating flexible grid layout using LazyVGrid
Code: import SwiftUI struct ContentView: View { private var items: [GridItem] = [ GridItem(.flexible(), spacing: 10),...

Hui Wang
Feb 11, 20232 min read
98. News: Microsoft Bing + ChatGPT, Google Bard, and Baidu ERNIE Bot
Microsoft and Google are joining the chatbot race. ChatGPT, a popular chatbot system, has recently gained attention and caused a surge in...

Hui Wang
Feb 7, 20231 min read
97. SwiftUI: How to switch the visibility of a Form?
Code: struct ContentView: View { @State private var isVisible = false @State private var username = "" @State private var password = "" ...

Hui Wang
Jan 26, 20231 min read
96. SwiftUI: How to activate/deactivate a Form
Here is an example of how you can activate and deactivate a Form in SwiftUI: struct ContentView: View { @State private var disabledForm =...

Hui Wang
Jan 25, 20231 min read
95. SwiftUI: Using section to divide the List into several groups
You can use the Section struct to divide a List view into multiple groups. The Section struct takes a single parameter, which is an array...
Hui Wang
Jan 19, 20233 min read
94. Machine learning: Python Object Oriented Programming (Part 1/4)
Object-oriented programming (OOP) is a programming paradigm that uses objects and classes to represent and manipulate data. Python...
Hui Wang
Jan 13, 20236 min read
93. Machine learning: Python Functions (Part 2/2)
1. Inner Functions An inner function is a function that is defined inside another function. The inner function can access variables and...
Hui Wang
Jan 12, 20235 min read
92. Machine learning: Python Functions (Part 1/2)
In Python, a function is a block of code that can be reused multiple times throughout a program. Functions allow you to organize your...
Hui Wang
Jan 11, 20233 min read
91. Machine learning: Python Data Structures
Python has several built-in data structures that can be used to store and manipulate different types of data. Some of the most commonly...
bottom of page