Yavor Georgiev

Yavor is Co-founder and Head of Product at fusebit.io, a startup that makes in-product extensibility and integrations painless for SaaS developers. Previously at Auth0, Hulu, and Microsoft Azure.

5 practical speaking tips

03 December 2018

I'm not that amazing of a public speaker, and the reason I know that is because I've been lucky enough to take some speaker training and be coached by some really excellent folks. Here are some practical tips you can start incorporating the next time you are up in front of a crowd, whether it's three people at the office, or a crowd of hundreds at a conference talk.

Read More

Oredev 14: Building apps that work even when the network doesn't

05 November 2014

Here are the slides, demos, and video from yesterday’s Oredev talk on building offline-enabled mobile apps.

The demos can be downloaded from here. Just running the sample gets you in the “online” state. Then you can change the default start activity (see the manifest file) to switch to the “offline” state, which enables you to try out conflict resolution and push to sync. 

Read More

TechEd Europe 2014: Building customer-facing mobile apps

31 October 2014

Thanks all for attending my talk in Barcelona. Sharing out the video, slides, and demo here.




Here are the links to my demos:

  1. Getting started - just try the quickstart project in the Azure portal
  2. Offline - based on the sample attached to this tutorial
  3. Auth - download sample here
  4. New Relic - just provision from the Azure store and instrument your own app with the NuGet packages shown in the demo.

Glad to answer any questions!

Read More

Come check out my talk next week at Oredev 2014

31 October 2014

Mobile apps that work, even when your network doesn't

A deep dive on the new cross-platform offline data sync feature in Azure Mobile Services and how to data sync in existing apps. We will cover how to use our offline capability from a variety of platforms, how to handle and resolve conflicts, and different strategies about triggering syncing (including using a background push notification).

Read More

Connecting the virtual and physical world: how to build a Minecraft companion app with Azure

25 September 2014

For some time, some coworkers and I have wondered if it would be possible to get Minecraft talking to Azure. The recent news about Microsoft and Minecraft gave us some extra incentive to try out out… so we decided to build a companion mobile app using Azure Mobile Services. The app sends me a push notification if someone enters my house in Minecraft and also lets me check what items I have in my in-game inventory. 

The basic design is as follows:

  1. Certain objects in Minecraft are connected to computers in the game. This includes things like a pressure plate and a chest.
  2. The computers send HTTP requests to a mobile service, passing in some simple payloads. This is implemented via some simple programs running on the computers.
  3. The mobile service can store data in a table or send a push notification
  4. The mobile app is connected to the service to pull table data and receive notifications.

Setting up the mobile service

First, we need to set up endpoints in the cloud for Minecraft to send information to. This is needed because the app can’t talk directly to the game.

  1. Create a Node.js-based mobile service in the Azure Management portal.
  2. On the API tab, create a new custom API called notifyallusers, using the code available here. This API simply takes any message passed in the body of the HTTP POST and sends it as a push notification to all subscribed devices.
  3. Create another API called updateinventory, using the code from here. This API takes any key=value pairs in the body of the HTTP POST and tries to insert them into an Inventory table.
  4. We need to create the Inventory table, so head over to the DATA tab and create it. You can leave the permissions as is.
  5. Head over to the PUSH tab and complete sections 1 and 2 of this tutorial to get your service set up to send push notifications. Don’t worry about the server or client code, just do the configuration steps in the portal.

Now your mobile service is now all set up to receive requests. Let’s now go into Minecraft and configure it to send requests. 

Minecraft setup

Before we even launch the game, we need to make sure we have the right mod installed, since programmable computers are not part of the game by default. In this example, we used ComputerCraft, which, lets you write simple Lua scripts and run them in the computer.

Once you have the mod running, you need to do the following:

  1. To monitor the contents of a chest, put a Trapped Chest directly adjacent to a Computer (in my case it was right on top).
  2. To set up the push notification when someone enters a house, place a Pressure Plate right behind the door. Then put a Computer somewhere nearby. Connect the two by putting down Redstone to connect the two. 
  3. We now need to load the right programs into the two computers. The computer attached to the pressure plate will use the script AlertIntruder and the other one will use the script PostInventory. Be sure to change the URLs in the scripts to point to your own mobile service.
  4. Typing the script in is quite cumbersome, so it’s easier to use Pastebin as an intermediary. Create a paste with the code and get the ID of the paste.
  5. In the computer, type pastebin get ID scriptName.
  6. Now that the script is downloaded locally, you can run it easily by typing it in (with the above example, just type scriptName). If you need to stop the program, hold down Ctrl + T.
  7. Make sure both scripts are downloaded and running on both computers.

When done it will look something like this:

Run the app

Now that the mobile service is set up and Minecraft is ready to send requests, the last part is to get our app set up and connected to the mobile service. 

  1. Get the source for the app from here and open it in Android Studio.
  2. Download the right libraries from here and drop them in the lib folder. You’ll need to grab both mobileservices-2.0.1-beta.jar as well as notifications-1.0.1.jar, the other dependencies should get brought down by Gradle when you build your project in Android Studio.
  3. The last step is to configure the connection information for your mobile service. Copy the file Secrets.java.example and rename it to Secrets.java. You will then need to copy your mobile service URI and app key from the Azure portal and paste them into that file. You will also need your project ID from the Google APIs Console.

You should now be good to go! Stepping on the pressure plate should cause a push notification to fire off on the phone. Opening and closing the chest should trigger an update to be sent to the service. Add or remove items and then use the Refresh button in the app to see the content update.

This quick example is just the start of what you can do with the awesome capabilities provided by Azure Mobile Service. Excited to see what other cool Minecraft hacks you’ll put together using these tools!

Read More