Stanislav Terliakov

Full-stack developer: Python, Django, TypeScript, PostgreSQL, AWS

View on GitHub

Hi, I’m Stanislav

I am a full-stack developer with a strong preference for backend work. I enjoy designing robust systems and appreciate having control over the entire stack — from infrastructure to user-facing UI details.

Technology stack I enjoy the most

My Current Role

I’m currently the CTO of Simpleem, where we are building a system that uses the power of machine learning to quantify and classify behavioral traits of video call participants.

Our platform helps sales teams improve performance by analyzing behavior and highlighting the most impactful moments of conversations. HR teams can use Simpleem to streamline candidate assessment, reduce manual screening, and identify candidates who best fit their culture and team dynamics.

We’ve developed a system that can predict deal outcomes with a high degree of reliability and offer actionable insights — powered by a mix of LLM-based engine and in-house heuristics discovered by thorough review of a huge dataset.

A few implementation details

Here are a few aspects of the implementation I love the most (and was personally responsible for):

Outside of Work

In my spare time I enjoy bouldering — a form of rock climbing that focuses on short but challenging routes on low walls. I recently climbed my first 7b/+ route — still proud of this milestone!

I’m also lucky to have a supportive family: my amazing wife, who encourages me through everything, a cheerful medium-sized dog (a mixed-breed rescue we found in Armenia — she won us over instantly!) and two cats who seem to think 4 a.m. is the perfect time to start the day.

I studied at MIPT and was working towards a Bachelor’s degree. I had to leave the programme and relocate in 2022, but the experience deeply shaped my thinking and technical foundation.

My pet projects

Python type checker: mypy

If you’re unfamiliar, mypy is a static type checker for Python that brings optional typing to an inherently dynamic language. I really enjoy the ability to increase the correctness of the code and our own confidence in it without sacrificing flexibility.

Although I’m not the original author, I’ve contributed around 50 PRs ranging from correcting a small omission to hunting down and fixing a critical bug that affected a large number of users.

Developer tooling: mypy-issues

A small helper built with Python and GitHub actions to check mypy changes against the corpus of open project issues. It helps us keep the tracker clean and catch some regressions before the PR gets merged.

I have enjoyed building something that runs entirely via GitHub interface: open an issue, wait for the results to be reported there. Done!

Simple time tracker client: toggl

I’ve been using Toggl to track my work hours until they have deprecated the native Linux app and suggested using a browser extension instead. I’m allergic to browser extensions for everyday tasks, so I built a minimal Rust-based client tailored to my own needs.

Recently they have introduced rather low API rate limits: 30 RPH on a free plan. I had to rewrite the update logic to stay under those limits, but I still enjoy using the tracker.

For distribution, I packaged binary builds via NPM — one for each platform/arch, and one meta-package to rule them all resolve them dynamically. It’s a workaround, but it works!

Terraform module for ECR-based Lambda deployment

Which came first — the chicken or the egg? AWS engineers don’t know either.

If you want to deploy a docker-based Lambda function, you need an image in place. To build an image, you need a pipeline to build that image and update the function which doesn’t exist yet.

I ended up studying the registry specification and publishing a module that uses curl to fetch and push a lightweight alpine image as a placeholder — no Docker installation required.

This project was inspired by this clever StackOverflow answer.

VeChain SDK in Rust: thor-devkit.rs

Funded by the VeChain Foundation, this SDK brings core blockchain utilities to Rust, enabling developers to build dApps and tools with full support for VeChain’s protocols.

While I’m cautious about the hype around crypto, I believe in its long-term potential when used right — especially for decentralized finance, digital identity, and fair creator ecosystems.