Skip to content
View kubarskii's full-sized avatar
β˜€οΈ
Working from home
β˜€οΈ
Working from home
  • EPAM Systems
  • Russia, Saint-Petersburg/Turkey, Antalya

Organizations

@Inquir-search

Block or report kubarskii

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse
kubarskii/README.md

πŸ‘‹ Hi, I'm Aleksandr Kubarskii

Welcome to my GitHub profile! I'm a senior software engineer with a passion for building robust, scalable solutions and exploring innovative tech. Here you'll find a variety of projects spanning from web development to game development, as well as a few experimental ventures in machine learning and search technology.


πŸ› οΈ Technologies and Tools

  • Languages: JavaScript, TypeScript, Node.js, Python
  • Frameworks: Express, React, Ant Design, JSONForms
  • DevOps: Docker, Kubernetes, MicroK8s, Helm, Rancher
  • Cloud Services: AWS, especially with OpenSearch (search infrastructure)
  • Database: PostgreSQL, MySQL, MongoDB, Redis
  • Miscellaneous: Puppeteer, DataWeave, Inquir (custom search engine solution)

πŸ” Highlighted Projects

1. Inquir - Search as a Service

  • A scalable, powerful search-as-a-service platform. Inquir enables companies to create and fine-tune search engines by combining various data sources, incorporating RAG (retrieval-augmented generation) chatbots, and more.
  • Features: Custom pipelines, stop-word removal, thesaurus support, and multi-source indexing (e.g., Salesforce).

2. Collectathon Game (In Development)

  • A first-person perspective (FPP) collectathon game focusing on exploration and achievement collection.
  • Tech Stack: Unity or Unreal Engine (specify if relevant), custom scripts for game mechanics.

3. SaaS Platform with Dynamic Container Deployment

  • Platform allows users to dynamically add containers, managed by Kubernetes with direct URLs for access.
  • Tech Stack: Kubernetes, MicroK8s, Helm.

4. Inquir Connectors

  • Connectors for integrating Inquir with external platforms (e.g., Salesforce) to index data effectively.
  • Tech Stack: Node.js, data integration libraries.

πŸ“ˆ Current Focus and Interests

  • Game Development: Creating interactive FPP collectathon games.
  • Search Technology: Expanding the capabilities of Inquir and improving inquir.org's SEO.
  • DevOps: Exploring Kubernetes and containerized environments with tools like Rancher and Helm.
  • Continuous Learning: Studying project management and optimizing workload vs. performance in various teams.

πŸ“« How to Reach Me


🌱 Currently Learning

  • Advanced Kubernetes: Building and managing complex, distributed systems with Kubernetes.
  • SEO: Optimizing inquir.org for search engines.
  • Game Design: Developing engaging mechanics and storytelling in game development.

πŸ“Š GitHub Stats

Your GitHub stats


Thanks for stopping by! Feel free to explore the repositories, open issues, or reach out for collaboration. Let's create something amazing together! πŸš€

Pinned Loading

  1. PSX-emu-JS PSX-emu-JS Public

    JavaScript 1

  2. blockchain-todo blockchain-todo Public

    JavaScript 1

  3. redux architecture implementation ex... redux architecture implementation example
    1
    class Observer {
    2
        #initialValue;
    3
        #subscriptions = [];
    4
    
                  
    5
        constructor(initialValue) {
  4. Trampoline example Trampoline example
    1
    function sum(n, s = 0) {
    2
        return (n) ? () => sum(n - 1, s + n) : s
    3
    }
    4
    
                  
    5
    function trampoline(fn) {