WordPress Nonces: Why We Can’t Have Nice Things
·
WordPress’ implementation of nonces was one of my first encounters with cryptographic protections in software development. It’s too bad WordPress nonces aren’t really nonces in the first place …
·
WordPress’ implementation of nonces was one of my first encounters with cryptographic protections in software development. It’s too bad WordPress nonces aren’t really nonces in the first place …
·
Over the weekend, I encountered a fully-automated phone system similar to the virtual voicemail assistant we’re building through the RingCentral tutorials. I wanted to share my experience so you too can see how powerful such a system can be.
·
We want to send a text message to a manager whenever a voice message is received by our system. In this walkthrough, we do exactly that!
·
Today we learn how to automatically transcribe incoming audio messages into text using Rev.ai. This will allow us to leverage text-based categorization and sentiment analysis tools!
·
This article is part one in a month-long series aimed at learning and exercising the RingCentral APIs in Python as part of their new Game Changers challenge. Feel free to follow along, leave a comment, or even participate in the challenge yourself! The second component we need to start setting up for our virtual voicemail
·
Today we begin setting things up to work through the Virtual Voicemail Assistant tutorials published by RingCentral.
·
I’m learning the RingCentral APIs as part of their Game Changers challenge. My goal is to blog my way through the challenge and their APIs, working to automate my on-the-side security consulting business one step at a time. This means new content from me every day in October 2019. Stay tuned for more!
·
Anyone who knows me in the development community knows how much of a fan I am of efficient APIs. I’ve built payments systems with Stripe. I’ve built bots with Twitter. I’ve built a phone routing system with Twilio. It’s this last experience that’s helped shape my own understand of and affinity for APIs, and I’ve
·
I absolutely love attending tech conferences. They’re great opportunities to reach out to friends in the community, make new connections, and catch the leading edge of what’s going on with the technology I use. Over the past several years, I’ve attended several conferences and met hundreds of people. My favorites, though, are the tech representatives
·
These days, I spend far more time writing and reviewing code in Python than I do PHP. It’s been a refreshing change of pace, and it’s fun to learn the different patterns present in various programming languages. One of the nicer patterns in Python is the Context Manager. It’s a pattern that PHP can learn…