import Button from "@/_components/Button";
import { ReactElement } from "react";
const experience: WorkplaceEntry[] =
[
{
place: "Nordcloud, Saint-Petersburg, RU",
title: "Software Engineer",
summary: "Working on MightyCall cloud call center product",
year: "2021",
description: <>
Implementing new features and fixing bugs in large-scale distributed VoIP system with ASP.NET and Angular
- Completed 2 week onboarding in 3 days.
- Found and fixed a critical issue in system's build process, improving performance by 40%
>
},
{
place: "Quantorium, Saint-Petersburg, RU",
title: "System administrator",
summary: "Administration of school's IT infrastructure",
year: "2021",
description:
- Integrated Microsoft Azure and M365 services which reduced overall workload of the staff by 30%.
- Implemented Azure Intune services for management of 100+ school devices.
- Integrated modern interactive solutions into education process during COVID-19 pandemic.
- Implemented storage inventory system which helped to track 100% of school's inventory.
},
{
place: "A-rial, Saint-Petersburg, RU",
title: "Software Engineer",
summary: "Legacy software support and DevOps",
year: "2023",
description: <>
Supporting legacy WLAN controller system, as well as maintaining company's IT infrastructure
Stack: .NET, React, Golang, Vue, Mongo
- Built company's IT infrastructure from scratch (email, cloud, git, etc.)
- Found and fixed several critical bugs in one of the projects which allowed the company to receive next round of investments.
- Designed and implemented web interface for wireless routers using React
- Lead critical QA field tests for WLAN controller product.
>
},
{
place: "A-rial, Saint-Petersburg, RU",
title: "Lead Software Engineer",
summary: "Working on software for RF Analyzer hardware",
year: "2024",
description: <>
Creating, desiging and implementing RF analyzer software, as well as participating in hardware design.
Stack: ASP.NET (RESTFul API), React, Linux
- Implemented both frontend and backend as modular components with ASP.NET and React.
- Wrote abstraction layers for managing Wi-Fi and SDR hardware in C#.
- Set up a complete CI/CD pipeline with GitHub Actions.
>
},
{
place: "A-rial, Saint-Petersburg, RU",
title: "Lead System Architect",
summary: "Working on WLAN Controller system",
year: "2025",
description: <>
Designing and implementing large-scale distributed WLAN controller system
Stack: React, ASP.NET (RESTFul API), MongoDB, Postges (EF Core), RabbitMQ (MassTransit), MQTT, Docker.
- Designed an architecture of a new event-driven microservice-based system to replace legacy monolith from scratch (HLD + LLD).
- Wrote a comprehensive techref for each of 16 components.
- Solo implemented the whole system from start to finish in just 3 months.
- Designed and wrote an agent service with .NET NativeAOT to operate OpenWRT routers.
>
},
{
place: "Your company",
title: "Here",
summary: "Working on new and exciting projects",
description:
},
];
export default experience;
export type WorkplaceEntry =
{
year?: string;
place?: string;
title: string;
summary?: string;
description?: ReactElement;
};