January 23, 2023

Likes are out, reactions are in

My friends and I have been using Goblin Mode for over a month now. At first there was no way to interact with others at all. You could update your status and read the ones from your friends. That felt okay but we somehow thought that at least a bit of interaction could be a good addition.

Then I added likes which resulted in an significantly improved experience. People felt a little better connected to their friends. The problem quickly became that likes are a bit one-dimensional. You don’t want to “like” that somebody has a bad day.

So I took the chance and replaced likes with reactions while refactoring the whole thing. Reactions are basically the same list of tags you can add to your status updates but you can now use them to add one as a little piece of communication to somebody else’s status.

On the one hand this enables to react with better fitting communication-nuggets. On the other hand it enables micro-humour by allowing people to search for and react with funny reactions. Stuff like “This is my step count, what’s yours?” is now possible as well.

Based on the two days since this feature was released I’d say that the overall amount of interactions has decreased while the quality has increased. Receiving a reaction is far more valuable than only receiving a generic like.

Next up: Image attachments.

I noticed that my current implementation of… basically everything results in me not being able to create good Firebase security rules for Goblin Mode. So I‘m refactoring… basically everything. What sounds like a pain in the ass is actually a lot of fun. The next iteration will be so much better. Hopefully.

January 8, 2023

Work in progress: Goblin Mode

A lot has happened since I shared these two posts about the project I’m currently working on. I figured it’s time to let you know what has happened in the meantime. Here’s the short version: I learned a lot. Like A LOT. This is my third app ever and it’s the one where a lot of previously vague concepts finally clicked. I’m injecting dependencies, juggle with types and create view models like there’s no tomorrow. It’s so much fun!

What was supposed to be a placeholder icon has grown on me over time

A couple of weeks ago I invited some friends to try out the app and see if the overall idea works. This was a huge moment for me. People signed up for something I programmed. They created literal user accounts saved to a database I connected to an app I coded. Crazy. It got even cooler after that: They started using the app. And somehow they didn’t stop. I’m not sure if they’re only using the App because they want to be nice but it feels like they enjoy sharing one-off status updates with a closed and private group of friends. No endless timeline, no fame, only letting people know what you’re up to.

Let me give you an overview of how the app looks like at the moment.

This is the main view. You see your own current status and how old it is. Below that you’ll see all current status of your friends.

I wrote the code for all of this like three separate times. The first two iterations didn’t care about the amount of database requests at all. They worked but they weren’t scalable. I’m now using Firestore realtime updates and it’s amazing. If a friend updates their status while you’re in the app, the status automatically gets loaded from the server and displayed on top of the stack.

But what happens when a friend hasn’t updated their status since midnight?

SPIDERS!

They become stale. I like the idea of having a predefined tabula rasa moment. Each day starts with a clean slate. If you post something one minute before midnight that status will only be fresh for one minute. Slightly weird, but I kind of like it.

Speaking of likes: I implemented a system to like status. It works well and is fun. I’ll probably replace it with a system to react with a tag, though. Liking feels wrong when a friend posts a status about them being tired, feeling empty or being sad. I want to be able to react to these with “🤡 Clown”.

There are more than 130 tags now. I built an admin area and support for admin accounts into the app and can CRUD tags and tag categories in seconds. New tags and categories show up on user’s devices without the need for an app update. It’s all in the cloud, baby!

I also build a system for tags and tag categories that are behind the paywall. My current idea for monetizing the app would be to put most of the cool tags behind a subscription of some kind. Those server bills need to be paid!

With the ever increasing amount of tags my friends asked for a tag search feature. That has been implemented as well. For those moments when you need to share your shower thought quickly.

And last but not least: I revamped the whole follow/unfollow system I talked about here. It became clear that asynchronous following isn’t the right concept for an app that’s meant for you to share semi-private status updates. Now there’s a whole screen dedicated to see who requests being friends with you. If you accept a request you become friends with the other person and you can both see the status of each other. If you cancel a friendship both ex-friends stop being able to see the respective status. Fair and easy.

I’m toying with the idea of limiting the maximum number of friends each person can have. Just to drive the point of the app home. That didn’t work out very well for Path back in the day but maybe times have changed. Who knows.


That’s it for now. I still don’t know if I’m going to release this to the public at any point. I’m still a novice coder and my implementation of everything related to Firebase has a big potential to suck. I’m generally cool with my code not being the best but in this case it could result in me racking up an enormous Firebase bill. That would not be fun at all.

As I said: Who knows. I might find a way to limit the app features enough to let people try it out without me becoming poor while allowing people to pay to cover the database costs. It sure would be an interesting problem to have.


Do you feel like there’s a Goblin Mode shaped hole in the lives of you and your friends?