Why Serverless Architectures Matter

Why Serverless Architectures Matter

Unlocking the true potential of serverless architecture! Explore key drivers, benefits, and why it's more than just a label. From automatic scaling to cost efficiency, delve into the world of serverless for seamless app development.

There are many predictions from market analyst firms on the size of the global serverless architecture market and how fast it will grow. The numbers range from $18B to $21.99B in the next few years with the compound annual growth rate (CAGR) in the double digits. But is serverless only a fancy name for products like AWS Lambda and Azure Functions?

Event-Driven Architectures - Putting Jazz Into Apps

Event-Driven Architectures - Putting Jazz Into Apps

Discover the rhythm of Event-Driven Architecture (EDA)! Unveil the power of events, APIs, and brokers in crafting resilient microservices. Learn why statelessness matters and delve into the jazz-like harmony of building apps.

The CTO of a company I have worked for used to say that services should be loosely coupled but tightly integrated. I didn’t realize until a lot later how true that statement is as you’re building out microservices. How those microservices communicate with each other has also changed quite a bit. More often than not, they send messages using asynchronous protocols. As an industry, we decided that this new way of building apps should be called “Event-Driven Architecture (EDA).”

Trusting Your Ingredients @DevOpsDays Columbus

Trusting Your Ingredients @DevOpsDays Columbus

Shift your perspective on security in the realm of development. In this eye-opening piece, discover the parallel responsibilities between a developer's role in app security and a chef's task in creating the perfect cheesecake. Explore how both domains share challenges in managing ingredients, preparations, and recipes, emphasizing the importance of a secure kitchen and codebase.

As a developer, I always thought that security, like documentation, would be done by someone else. While that might have been true in the past, in today’s world that model no longer works. As a developer you’re responsible for the security of your app. Security in this case should be seen in the broadest sense of the word, ranging from licenses to software packages. A chef creating cheesecake has similar challenges. The ingredients of a cheesecake are similar to the software packages a developer uses. The preparation is similar to the DevOps pipeline, and recipe is similar to the licenses for developers. Messing up any of those means you have a messy kitchen, or a data breach!

How to send CloudFormation events to Wavefront using AWS Lambda

How to send CloudFormation events to Wavefront using AWS Lambda

Supercharge your AWS CloudFormation deployments! Set up SNS events to capture CloudFormation events, and with AWS Lambda, seamlessly feed them into Wavefront for intuitive visualization. Enhance observability, troubleshoot faster, and ensure smooth Friday deployments. 🚀 #AWS #CloudFormation #Wavefront

Imagine this, it’s 5pm on a Friday afternoon and while you really want to go enjoy the weekend, you also need to deploy a new version of your app to production. Using AWS CloudFormation (CF), you add a new instance to your fleet of EC2 instances to run your app.

GopherCon 2019 - Trusting Your Ingredients

GopherCon 2019 - Trusting Your Ingredients

Explore the unexpected parallels between building Go apps and baking cheesecakes in this delightful GopherCon 2019 lightning session. Discover the essential ingredients, supplier trust, and the significance of transparency in both coding and culinary arts.

Trusting Your Ingredients - What Building Go Apps And Cheesecake Have In Common.

In this lightning session at GopherCon 2019, I got the chance to talk about two things I love. Cheesecake and Golang! As a developer, I’ve written code and built apps, and I realized that building apps and creating a cheesecake have a lot in common. In both cases you need to have the right ingredients, you need to trust your suppliers and have transparency in your production process. In this talk, we’ll look at how you can, and why you should, know what is in the app you deploy.

Docker Meetup Group Atlanta - Trusting Your Ingredients

Docker Meetup Group Atlanta - Trusting Your Ingredients

Discover the surprising parallels between app development and baking a cheesecake! Explore the importance of ingredients, supplier trust, and transparency in the production process. Insights from a recent talk in Atlanta.

As a developer, I’ve written code and built apps, and I realized that building apps and creating a cheesecake have a lot in common. In both cases you need to have the right ingredients, you need to trust your suppliers and have transparency in your production process. I got to go to Atlanta and meet with the Docker Meetup Group there, where we got to talk about In this talk, how you can, and why you should, know what is in the app you deploy.

How to Get Webhooks Into Your System Using Solace PubSub+ Cloud

How to Get Webhooks Into Your System Using Solace PubSub+ Cloud

Break down firewall barriers with Solace PubSub+ Cloud! Learn how to effortlessly forward webhooks to internal systems without exposing them to the internet. Enhance your data integration strategy now! #Solace #Webhooks #DataIntegration

In some cases you might want to get some data from cloud based systems to an environment that doesn’t expose APIs or ports to the outside world. Using webhooks makes that a little easier, but you still need a system that accepts webhooks and is able to get them across your firewall. That is exactly where Solace PubSub+ Cloud comes in! I’ve built a small webhook forwarder app, that gets data from Solace and sends it onwards without having any of my systems exposed to the Internet.

Trusting Your Ingredients - What Building Software And Cheesecake Have In Common

Trusting Your Ingredients - What Building Software And Cheesecake Have In Common

Embark on a security journey at the Twistlock Cloud-Native Security Day, where the parallels between cheesecake creation and app building unfold. Delve into the developer's pivotal role in app security, spanning licenses to software packages. Explore insights on integrating security early in DevSecOps and discover the reciprocal lessons chefs and devs share in the pursuit of a secure kitchen and codebase.

At the Twistlock Cloud-Native Security Day, a co-located event at KubeCon 2019, I got to talk about what cheesecake and building apps have in common. As a developer you’re responsible for the security of your app. Security in this case should be seen in the broadest sense of the word, ranging from licenses to software packages. A chef creating cheesecake has similar challenges. The ingredients of a cheesecake are similar to the software packages a developer uses. The preparation is similar to the DevOps pipeline, and recipe is similar to the licenses for developers. Messing up any of those means you have a messy kitchen, or a data breach! In this talk we’ll look at:

  • Why do we care about licenses?
  • How does Sec get into the early stages of DevSecOps?
  • What can chefs and devs learn from each other?
DockerCon 2019 - Persistence Is Futile (Or Is It?)

DockerCon 2019 - Persistence Is Futile (Or Is It?)

Dive into the world of Docker volumes at DockerCon 2019! Learn how to seamlessly manage data and configuration for your applications. Unleash the power of reusability in this step-by-step guide.

As we talk to developers we frequently hear the same thing about Docker containers. They’re amazing for managing software, but my app also needs data and configuration. We store those on Docker volumes and we want to reuse those. Now what?