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.

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
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!

Challenges

Since early this year, I have discovered the joy of solving coding challenges with a strong community presense.

If you know about any challenge that I should try, please write to me!

Write

I've realized that writing really helps me grasp things better and makes everything clearer. So, after scrolling through loads of blogs over the years, I've finally jumped in and started writing for them myself.

Oh, and by the way, Check out my very first Uber Engineering blog on Lucene Migration! ๐Ÿ“ Dive into the details and let me know your thoughts. https://www.uber.com/en-IN/blog/lucene-version-upgrade/ It's gonna be awesome! Stay tuned for more!

Pinned Loading

  1. opensearch-project/sql opensearch-project/sql Public

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

    Java 116 134

  2. 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;
  3. snakeGame snakeGame Public

    Go 3

  4. 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"
  5. LeetCodeContest LeetCodeContest Public

    Habit

    Java

  6. Simple Load Balancer which uses Roun... Simple Load Balancer which uses RoundRobin algorithm to send requests into set of backends .
    1
    package main
    2
    
                  
    3
    import (
    4
    	"fmt"
    5
    	"io"