a high-octane action scene with explosions and gunfire:1.2, captured in a dynamic pov shot:1.1, inspired by the iconic line 'hasta la vista, baby' from terminator 2:1.3, rendered in a cinematic style:1.2

Unveiling AI Magic: Craft Your Image App Now! – Part 1

6 October, 2023 admin 0

Always wondered how AI image generator apps work under the hood? Let’s dive into this topic. Since I made one myself, I’ll walk you through the main challenges and steps in this tutorial. We’ll set up two main parts: Glossary:First, let’s clarify a couple of terms: Prerequisites: Let’s start! 1. Backend Setup with Anvil: Retrieving API Keys from Replicate.com: Head to replicate.com, sign in, go to Profile > API tokens, choose a name for your key, create […]

WeBe Bluetooth Mouse for iPhone, iPad & iPod touch

27 April, 2013 admin 211

    WeBe, a computer mouse app for the iPhone or the iPod touch, lets you have all the functions of a normal Bluetooth mouse and keyboard in your pocket! The screen of the iPhone or iPod touch serves as a trackpad – slide with three fingers to invoke the keyboard (or use the buttons)!

SNOWGRE_multiplayer

Game Center Tutorial – How to set up a Multiplayer Game like SNOWGRE

18 April, 2013 admin 12

First things first: We just released an update of our MULTIPLAYER App called “SNOWGRE“, available for FREE on the App Store: https://itunes.apple.com/us/app/snowgre/id560450513?mt=8 Please have a look, download it for free and consider buying some extra lives and unlock the multiplayer feature to play against people from all over the world! Play agains me => my nickname is “GABEHOE” or against my co-worker Adrian => “ADIMAN84” 😀 We’d love to hear suggestions and receive feedbacks from you… and […]

white,pages,yellow,tracker,search,find,gps,mobile,411,ringtone,business,911,likes,follower,locator

UIDevice uniqueIdentifier property is deprecated – What now?

7 January, 2013 admin 10

I’m going to show you in this post how to write a workaround for this problem. Many of the existing Apps in the App Store are dependent on this property (uniqueIdentifier) for uniquely identifying a particular device… Apple stopped supporting a unique identifier for iOS (>=5.0). Solution 1: Instead of: [UIDevice uniqueIdentifier]; Use: [UIDevice uniqueDeviceIdentifier]; But wait… where does this property it come from? The following source code solves the problem. It generates a unique identifier based […]

white,pages,yellow,tracker,search,find,gps,mobile,411,ringtone,business,911,likes,follower,locator

Apple Push Notification Services Tutorial: Part 3/3

2 January, 2013 admin 33

Step 3: Build up your database to store user information Now we need a MySQL database to store all user information so that we know where to send the Push Notifications! Build up database to receive user information -> Create a database and a user for that database. -> Update the apns.php file and sendMessage.php file with the database information (username, pwd, database name, host, etc.) We need three tables: “apns_devices”, “apns_device_history” and “apns_messages”. We will actually […]

white,pages,yellow,tracker,search,find,gps,mobile,411,ringtone,business,911,likes,follower,locator

Apple Push Notification Services Tutorial: Part 1/3

28 October, 2012 admin 4

Step 1: Prepare the App to receive Push Notifications In this tutorial I will explain all steps how to make an app for production that can receive Push Notifications. Basically there are 3 steps that must be explained: Prepare the app to receive Push Notifications Login Developer Account & modify/enable app ID to receive PNs Use your new and PN enabled provisioning profile Modify AppDelegate to handle PNs Do some sorcery on your terminal Generate cert & […]