Menu
Sign In Search Podcasts Charts People & Topics Add Podcast API Pricing

Kurt Mackey

👤 Person
712 total appearances

Appearances Over Time

Podcast Appearances

The Changelog: Software Development, Open Source
The democratization of spreadsheets (News)

You probably only need three of them, but you just gotta figure out which ones and how to string them together For like a Phoenix app on AWS, you're going to end up needing a VPC, which they'll give you by default these days. You need to know what a VPC is. You need probably either a Fargate or their Kubernetes setup to run the actual application. You need RDS.

The Changelog: Software Development, Open Source
The democratization of spreadsheets (News)

You probably only need three of them, but you just gotta figure out which ones and how to string them together For like a Phoenix app on AWS, you're going to end up needing a VPC, which they'll give you by default these days. You need to know what a VPC is. You need probably either a Fargate or their Kubernetes setup to run the actual application. You need RDS.

The Changelog: Software Development, Open Source
The democratization of spreadsheets (News)

You need an Elastic Load Balancer or an Application Load Balancer running in front of it. And on the other end of that, you've got the Heroku effect, which is like you can get a Rails app running. And this is like 2000. Amy was really excited about this. You can get a Rails app running really fast as long as it's Rails and as long as it uses Postgres.

The Changelog: Software Development, Open Source
The democratization of spreadsheets (News)

You need an Elastic Load Balancer or an Application Load Balancer running in front of it. And on the other end of that, you've got the Heroku effect, which is like you can get a Rails app running. And this is like 2000. Amy was really excited about this. You can get a Rails app running really fast as long as it's Rails and as long as it uses Postgres.

The Changelog: Software Development, Open Source
The democratization of spreadsheets (News)

And as soon as you need to do something else, you're like back in the AWS quagmire.

The Changelog: Software Development, Open Source
The democratization of spreadsheets (News)

And as soon as you need to do something else, you're like back in the AWS quagmire.

The Changelog: Software Development, Open Source
Elasticsearch is open source, again (Interview)

Right. I think it's valuable to understand the magic behind the cloud because you can build better features for users, basically, if you understand that. You can do a lot of stuff, particularly now that people are doing LLM stuff, but you can do a lot of stuff if you get that and can be creative with it.

The Changelog: Software Development, Open Source
Elasticsearch is open source, again (Interview)

Right. I think it's valuable to understand the magic behind the cloud because you can build better features for users, basically, if you understand that. You can do a lot of stuff, particularly now that people are doing LLM stuff, but you can do a lot of stuff if you get that and can be creative with it.

The Changelog: Software Development, Open Source
Elasticsearch is open source, again (Interview)

In some ways, it means these all came from somewhere. Like there was a simpler time before clouds where we'd get a server at Rackshack and we'd SSH or Telnet into it even and put files somewhere and run the web servers ourselves to serve them up to users. Clouds are not magic on top of that.

The Changelog: Software Development, Open Source
Elasticsearch is open source, again (Interview)

In some ways, it means these all came from somewhere. Like there was a simpler time before clouds where we'd get a server at Rackshack and we'd SSH or Telnet into it even and put files somewhere and run the web servers ourselves to serve them up to users. Clouds are not magic on top of that.

The Changelog: Software Development, Open Source
Elasticsearch is open source, again (Interview)

They're just more complicated ways of doing those same things in a way that meets the needs of a lot of people instead of just one. One of the things I think that people miss out on, and a lot of this is actually because AWS and GCP have created such big black box abstractions. Like Lambda is really black boxy. You can't like pick apart Lambda and see how it works from the outside.

The Changelog: Software Development, Open Source
Elasticsearch is open source, again (Interview)

They're just more complicated ways of doing those same things in a way that meets the needs of a lot of people instead of just one. One of the things I think that people miss out on, and a lot of this is actually because AWS and GCP have created such big black box abstractions. Like Lambda is really black boxy. You can't like pick apart Lambda and see how it works from the outside.

The Changelog: Software Development, Open Source
Elasticsearch is open source, again (Interview)

You have to sort of just use what's there. But the reality is like Lambda is not all that complicated. It's just a modern way to launch little VMs and serve some requests from them and let them like kind of pause and resume and free up like physical compute time.

The Changelog: Software Development, Open Source
Elasticsearch is open source, again (Interview)

You have to sort of just use what's there. But the reality is like Lambda is not all that complicated. It's just a modern way to launch little VMs and serve some requests from them and let them like kind of pause and resume and free up like physical compute time.

The Changelog: Software Development, Open Source
Elasticsearch is open source, again (Interview)

The interesting thing about understanding how clouds work is it lets you build kind of features for your users you never would expect it. And our canonical version of this for us is that like when we looked at how we wanted to isolate user code, we decided to just expose this machines concept, which is a much lower level abstraction of Lambda that you could use to build Lambda on top of.

The Changelog: Software Development, Open Source
Elasticsearch is open source, again (Interview)

The interesting thing about understanding how clouds work is it lets you build kind of features for your users you never would expect it. And our canonical version of this for us is that like when we looked at how we wanted to isolate user code, we decided to just expose this machines concept, which is a much lower level abstraction of Lambda that you could use to build Lambda on top of.

The Changelog: Software Development, Open Source
Elasticsearch is open source, again (Interview)

And what machines are is just these VMs. that are designed to start really fast or designed to stop and then restart really fast or designed to suspend sort of like your laptop does when it closes and resume really fast when you tell them to. And what we found is that giving people those primitives actually, there's like new apps being built that couldn't be built before.

The Changelog: Software Development, Open Source
Elasticsearch is open source, again (Interview)

And what machines are is just these VMs. that are designed to start really fast or designed to stop and then restart really fast or designed to suspend sort of like your laptop does when it closes and resume really fast when you tell them to. And what we found is that giving people those primitives actually, there's like new apps being built that couldn't be built before.

The Changelog: Software Development, Open Source
Elasticsearch is open source, again (Interview)

Specifically because we went so low level and made such a minimal abstraction on top of generally like Linux kernel features. A lot of our platform is actually just exposing a nice UX around Linux kernel features, which I think is kind of interesting. But like you still need to understand what they're doing to get the most use out of them.

The Changelog: Software Development, Open Source
Elasticsearch is open source, again (Interview)

Specifically because we went so low level and made such a minimal abstraction on top of generally like Linux kernel features. A lot of our platform is actually just exposing a nice UX around Linux kernel features, which I think is kind of interesting. But like you still need to understand what they're doing to get the most use out of them.