Alice Zhao

Poke

Albert Einstein once said time is an illusion. I'll tell you what, time sure feels real when you need to launch a product within 30 days!

This month, I'm excited to release Poke to the Apple App Store! It's the first product my partner and I've created on our quest to build 12 products in 12 months.

Here's a recap and lessons I learned along the way.

👷‍♀️ What did we build?

Check out the demo!

🔨 How did we build it?

Frontend

Expo: A free and open source framework for making universal React applications

Fast development: We didn't need to do any native mobile coding using Swift or Java. In the end, we did have to use Xcode to launch to the Apple store but Expo gave us all the tools and APIs to quickly build and deploy our React Native app.

React Native: Written in JavaScript, rendered with native code, a framework to develop mobile apps

Developer productivity: I loved being able to take advantage of all the productivity features in React Native. Everything from hot reloading to composable core components, it all made it easier to iterate fast using syntax I was already familiar with.

Flipper: Extensible mobile app debugger

Easy to use: Which developer writes perfect code? Not me. I was able to test my assumptions and view errors with Flipper's log viewer, React dev tools and network inspector.

Backend

Nest JS: A progressive Node.js framework for building scalable server-side applications

Flexible yet rigid: Nest's opinionated structure, code generators, and CLI saved us a lot of time in setting up our APIs. Yet it was flexible enough for us to integrate with our custom auth provider and create unique decorators.

Supabase: The open source Firebase alternative

Up and running in no time: I never imagined that I can set up auth and a database with a few lines of code. Supabase is not perfect, but it was so easy to get a relational Postgres database running and auth that generated JWT tokens.

Twilio: Communication APIs for SMS, Voice, Video

Good documentation: Poke would not be possible without Twilio. Their documentation gave me great examples to integrate with their API to text users reminders and also hooks up with Supabase for text-based auth!

💡 Challenges & Lessons Learned

Building in Public is scary but fun!

Building in public makes me feel very self conscious. Not only am I struggling to solve a bug on my own but people are watching me as I do it. Every Sunday at 12 pm PST, my partner and I stream on Twitch, alternating who codes each time.

During one of the streams where I was coding, 78 people viewed me stumble my way through building a screen to create reminders and 2 hours later fist pumping the air when it worked. Although I was hesitant to code in public as a beginner, I learned to have fun and meet a supportive community along the way!

Copying Code !== Cheating

I found a great YouTube tutorial that walked through how to build your first React Native app. As I followed along, I suddenly felt shame in copying some of the code in the video. Am I really practicing to become a good engineer if I don't write original code? Am I taking shortcuts by taking someone else's code?

At the end of the day, I'm incredibly grateful for the plethora of online resources to enable developers to be successful. Yes, I've copied code from tutorials and gotten answers from StackOverflow, but I'm also building and learning along the way. So maybe copying code is not cheating, it is part of learning!

Do to Learn

There are so many buzzwords in technical documentation that I can read something 100 times and still not understand. Take for example a simple term we've all heard of:

API: application programming interface that is a set of protocols that adhere to HTTP and REST standards for building and integrating application software.

If you were me, you would be thinking - what the hell is an interface? How does a protocol work? What is the difference between REST and HTTP? What does an application software look like?

What I learned is that you have to do to learn. You have to throw yourself to the unknown and face the problems head on to actually understand the tools and concepts. Coding is not something you learn in a textbook or watch in a tutorial. Coding is something you learn by hacking and getting out of your comfort zone. Trying all these new tools building Poke this month has helped me grow a ton!

Check out 12product's Github for all our open source code and our website to follow along. You might get a sneak peak into our February product!