What's new in Swift
This year's "What's new in Swift" included a plethora of improvements and new add-ons. Some of the news are: better diagnostic compiler error's and hence better debugging improved and faster code completion improved auto indentation improved integration ...
Introducing App Clips
Apple introduced a new feature called app clips at this year's WWDC. It is coming to iOS 14 this fall. App clips offer a promising new way for businesses to increase the discoverability of their apps and services while at the same time eliminating the nee...
3D model presentation in games (props)
Props are items that can interact with players in the game and have a certain influence on the attributes of the game characters. There are two important criteria for judging whether an item is a prop: First, can it interact with players? Second, does th...
A first look at Apple's new Augmented Reality features
Apple's WWDC event is greatly anticipated in the Apple developers community every year. When it comes to the augmented reality world, we only got a quick glimpse of what is new in yesterday's keynotes. Here is an overview of what we know so far, with more...
MBT (Model-based testing)
Model-based testing (MBT) is a technology that is sometimes advertised as "automated test design". You can find the project on Github here. Concept The MBT tool generates test cases from a test model specified by the user. Without the test model, the tool...
Women who code connect digital - 2020
In June 2020, WomenWhoCode hosted a 3 days event for the women involved in the tech World. This is the 5th edition and the first time they did it completely virtually. And kudos for them that they managed to make it free of charge for everyone. As expecte...
Flutter size limit container summary
Flutter's size-restricted container components include ConstrainedBox, UnconstrainedBox, SizedBox, AspectRatio, FractionallySizedBox, LimitedBox, and Container. These components can constrain the size of sub-components, one by one introduced below. Constr...
LLDB summary
LLDB,Low Level Debugger, is a lightweight, high-performance debugger that is built into Xcode by default. Being able to use it well will make our development more efficient with less effort. We often use LLDB's po / breakpoint in development, you can get ...