Building Group Chat using WebSockets

Introduction I never had a chance to work with WebSockets, so I decided to take a look and create a group chat. Here’s what I discovered: To be able to send and receive messages, you need to create an interface for communication between a server and your application. In my case, I chose sendMessage and receiveMessage methods. For the server-side, I chose Node.js. For the iOS application, I chose the Socket....

May 2, 2024 · 4 min · Dmytro Chumakov

Exploring visionOS

Introduction I find myself fascinated by the idea of creating an app for visionOS where I could possibly display 3D AirPods that I like. Here are a few steps on how you can do the same: First step The first step that you need to do is to create a visionOS project. Second step The next step would be adding a 3D object to Reality Composer Pro and exporting it as a ....

May 2, 2024 · 1 min · Dmytro Chumakov

iOS AR App: Experience 3D Guitar

Introduction I was searching for an AR implementation of a 3D guitar inside an iOS app. Here’s what I discovered: First Step The first step is not related to building the app. Before that you need to create a project using the Reality Composer Pro app (you can find it through Spotlight search). Second Step After that, you need to visit https://developer.apple.com/augmented-reality/quick-look/ and download one of the USDZ files. In my case, I chose the 3D guitar....

May 1, 2024 · 2 min · Dmytro Chumakov