Skip to content
View aparajita31pandey's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report aparajita31pandey

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 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
aparajita31pandey/README.md

Hi, I'm Aparajita! πŸ‘‹

I'm a backend engineer working with distributed systems. Currently, I'm part of the Uber team, where I focus on designing and constructing a Search Solution using Lucene.

My approach to software development is all about making life easier for the next person who interacts with it. I strive to ensure that my code is well-tested, thoroughly documented, and easily observable. User empathy plays a big role in my API design process, and I prioritize clear documentation as much as coding itself.

These days, I'm primarily working with Golang and Java, though I also have experience with Python. I've delved deep into various data storage solutions, including PostgreSQL, MySQL, Redis, Aerospike, Elasticsearch, Kafka, and a few others. You can reach out to me on mail aparajita31pandey@gmail.com or on Twitter!

Write

I occasionally write about things that spark my curiosity - backend systems, databases and everything technical.

Pinned Loading

  1. OpenSearch OpenSearch Public

    Forked from opensearch-project/OpenSearch

    πŸ”Ž Open source distributed and RESTful search engine.

    Java

  2. security security Public

    Forked from opensearch-project/security

    πŸ” Secure your cluster with TLS, numerous authentication backends, data masking, audit logging as well as role-based access control on indices, documents, and fields

    Java

  3. sql sql Public

    Forked from opensearch-project/sql

    Query your data using familiar SQL or intuitive Piped Processing Language (PPL)

    Java

  4. snakeGame snakeGame Public

    Go 3

  5. This implements REPL that tokenizes ... This implements REPL that tokenizes the given source code and print token.
    1
    package main
    2
    
                  
    3
    import (
    4
    	"bufio"
    5
    	"fmt"
  6. Redis Sorted Set: Skip List Impleme... Redis Sorted Set: Skip List Implemented with span
    1
    import java.util.*;
    2
    
                  
    3
    class SkipListNode {
    4
        int value;
    5
        SkipListNode[] forwards;