Skip to content
View baccaraaa's full-sized avatar
😎
Working from home
😎
Working from home
  • Calabasas

Block or report baccaraaa

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
baccaraaa/README.md

Hey, I'm Vlad

Backend Developer building scalable distributed systems and APIs.

Working with cryptocurrency platforms, fintech, and high-load applications. Author of Vorq -- type-safe distributed task queue for TypeScript.

Tech Stack

Backend       TypeScript, NestJS, Node.js, Python, FastAPI
Databases     PostgreSQL, Redis, MongoDB
Messaging     RabbitMQ, Redis Streams
ORM           Prisma, TypeORM, SQLAlchemy
Frontend      React, Next.js
Infra         Docker, Kubernetes, GitHub Actions

Featured Projects

Vorq -- Distributed Task Queue

Type-safe task queue for TypeScript with compile-time workflow validation.

const pipeline = vorq
  .workflow<{ url: string }>("etl")
  .step("fetch", async (ctx) => {
    return { data: await fetchData(ctx.input.url) };
  })
  .step("transform", async (ctx) => {
    // ctx.results.fetch is fully typed at compile time
    return { rows: normalize(ctx.results.fetch.data) };
  })
  .build();

4 packages on npm | 175 tests | Redis & RabbitMQ | NestJS integration

npm

Task Manager -- REST API

Production-ready task management API on FastAPI with async architecture.

curl -X POST /api/v1/tasks/ -H "Authorization: Bearer <token>" \
  -d '{"title": "Deploy v2", "priority": "high", "project_id": 1}'

FastAPI + PostgreSQL + Redis + Celery | JWT auth | WebSocket | 131 tests

Experience

  • Payment processing systems handling 100k+ daily requests
  • Cryptocurrency trading bots and wallet infrastructure
  • Telegram Mini Apps and bot automation
  • Financial analytics platforms

Contact

Telegram LinkedIn

Pinned Loading

  1. vorq vorq Public

    Distributed task queue for TypeScript with type-safe workflows, pluggable transports (Redis, RabbitMQ), and optional persistence.

    TypeScript 9

  2. TaskManager TaskManager Public

    A comprehensive task management API built with FastAPI, showcasing enterprise-level features and best practices for senior Python developer positions.

    Python 1

  3. anomalyco/opencode anomalyco/opencode Public

    The open source coding agent.

    TypeScript 166k 19.7k