DEV Community

Kelly Andrews
Kelly Andrews

Posted on • Originally published at kellyjandrews.dev on

Reflecting on my time at Vonage

It's my last day at Vonage today - no joke. While hard to completely grasp everything that's happened over the last couple of years, I wanted to try and take a moment and sum up everything since starting in August 2018.

Firebase

One of the more forward-looking platforms used during my tenure was Firebase. I was able to spend a ton of time here learning how to use as much of the functionality that Firebase had to offer. Whether it was SMS translation, or adding two-factor authentication, the tool kit that Firebase gives you is extremely powerful, and always a consideration when I create new projects.

Sentiment Analysis

While easy to implement, Sentiment analysis is hard to get right and is far from perfect. However, as a general guide for intervention, it can do a good job of finding customers that may be more upset and can make that actionable. For call centers, it's a great tool.

Read my comparison - although it's a bit dusty now

Chatbots

Chatbots can be super fun, or really frustrating. While they can provide easy solutions to simple problems, covering all cases can be tricky, and it's easy to miss flows. Couple that with also trying to use speech transcription to match nouns and verbs programmatically, and now it's a disaster.

With the right amount of effort and planning, however, they can be extremely powerful and handle quite a lot of typical use cases. You can always push the call to a human when the script isn't working as a last resort.

You can read the tutorial for that here.

Transcription

I feel like transcription is really well solved in most cases. Listening to audio and transcribing it word for word is the main function of these APIs, and they all do it efficiently and accurately. Don't be afraid to use them.

Read another outdated comparison

Translation

Translation, much like transcription, has been fairly well solved. Every translation API has some kind of lexicon customization to cover industry-specific terms and can cost a lot more than the base service, however, the basic level of translation is really good in general. I plan on using these more in the future as well.

One more ancient review

XState

One of my favorite tools in JavaScript these days is XState. The ability to define how an application should work as a state machine, and use that in any front or back end to control the flow of states - chef's kiss. I found it extremely useful with things like video, as I could create states that matched exactly what was happening with the SDK and API.

It's really a lot of fun to use - I recommend you try it out.

Oclif and CLI Design

I built the Vonage CLI using Oclif, and I've really learned to love using oclif, CLI best practices, CLI history, and the command line itself.

Building a CLI isn't always the easiest thing to do, as it can run in so many environments, but solving these types of problems are fun for me.

Lerna/Monrepo

While building the CLI and an updated SDK, I decided to work in a monorepo structure, using Lerna to manage the publication of the modules. I plan on writing more on how that is used in the future as well. It's a great resource, easy to understand, but hard to get started.

Typescript (sorta)

Last, and well, least, Typescript. I have an appreciation for types now, and while I still feel like I have a long way to go, learning Typescript has been rewarding, if not frustrating. This was one of the harder things to learn for me, but I really am better off for doing it.

Conclusion

Overall - it was a great learning experience. Being able to learn new things as a developer advocate is one of my favorite aspects of the job.

I'm thankful for the opportunities I've had here, and look forward to the future.

Top comments (0)