Azure to AWS Migration
Led the migration of legacy applications from Azure to AWS, implementing containerization and infrastructure as code practices that reduced operational costs.
Hi, I'm
|
Building cloud-native solutions and leading modernization efforts. Interested in high-leverage roles at the intersection of product and engineering.
data class Engineer(
val name: String,
val location: String,
val stack: List<String>
)
val christian = Engineer(
name = "Christian Oleson",
location = "Austin, TX",
stack = listOf(
"Kotlin", "C#",
"TypeScript", "AWS"
)
) public record Engineer(
string Name,
string Location,
List<string> Stack
);
var christian = new Engineer(
Name: "Christian Oleson",
Location: "Austin, TX",
Stack: new[] {
"C#", "Kotlin",
"TypeScript", "AWS"
}
); interface Engineer {
name: string;
location: string;
stack: string[];
}
const christian: Engineer = {
name: "Christian Oleson",
location: "Austin, TX",
stack: [
"TypeScript", "C#",
"Kotlin", "AWS"
]
}; public record Engineer(
String name,
String location,
List<String> stack
) {}
var christian = new Engineer(
"Christian Oleson",
"Austin, TX",
List.of(
"Java", "Kotlin",
"C#", "AWS"
)
); const engineer = {
name: "Christian Oleson",
location: "Austin, TX",
stack: [
"JavaScript",
"TypeScript",
"C#",
"AWS"
]
};
export default engineer; CREATE TABLE Engineer (
Name NVARCHAR(100),
Location NVARCHAR(100),
Stack NVARCHAR(MAX)
);
INSERT INTO Engineer
VALUES (
'Christian Oleson',
'Austin, TX',
'SQL, C#, Kotlin, AWS'
); Designing and implementing scalable solutions on AWS with infrastructure as code, containerization, and serverless patterns.
Migrating legacy systems to modern architectures. Azure to AWS migrations, .NET Framework to .NET Core, and beyond.
Collaborating with stakeholders, mentoring team members, and translating business needs into technical solutions.
| YEAR | TEAM | POS | WAR |
|---|---|---|---|
| 2023- | IL | SR | 9.2 |
| 2021 | IL | MID | 6.4 |
| 2019 | IL | SWE | 4.1 |
| 2017 | IL | JR | 2.0 |
Found and fixed an 8-year-old bug that was killing worker processes during peak enrollment, achieving 5x throughput and 62% infrastructure savings.
Led the migration of legacy applications from Azure to AWS, implementing containerization and infrastructure as code practices that reduced operational costs.
Supported migrating multiple applications from .NET Framework to .NET Core, modernizing the stack and unifying authentication with Okta.