Skip to content
View palaashatri's full-sized avatar
:shipit:
I may be slow to respond.
:shipit:
I may be slow to respond.

Highlights

  • Pro

Block or report palaashatri

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
palaashatri/README.md
> $ whoami

# Palaash Atri
- [Current]
    - Quality Engineer - I at Azul, for Azul Platform Prime (Zing JDK and OptHub Cloud-Native Compiler)
- [Previous]
    - Engineer at L&T Technology Services :
        Backend Engineer for Halliburton on DecisionSpace (DS365.ai) Platform team,
        building Java SDKs, microservices and Kubernetes automation,
        validation and deployment tools using Python

- [Tools]
    - macOS, Arch Linux
    - Visual Studio Code
    - C++, Java, Python3

- [Links]
    - [LinkedIn] : https://linkedin.com/in/palaasha 
From: 26 December 2024 - To: 02 January 2025

Bash    28 hrs 56 mins  ███████████████░░░░░░░░░░   60.01 %
Other   19 hrs 3 mins   ██████████░░░░░░░░░░░░░░░   39.54 %
Java    13 mins         ░░░░░░░░░░░░░░░░░░░░░░░░░   00.45 %

Pinned Loading

  1. Install Hyper-V on Windows 10/11 Hom... Install Hyper-V on Windows 10/11 Home. Run as Administrator.
    1
    @REM Simple batch script to download and install Hyper-V manager on devices running Windows 10/11 Home, 
    2
    @REM so that you can run both Docker and a full-fledged, hardware-accelerated, virtualized OS alongwith Windows on this Type-1 hypervisor
    3
    
                  
    4
    @REM How to run?
    5
    @REM Open a conhost as administrator (in PowerShell, use "Start-Process cmd.exe -Verb runAs"), and then 
  2. My Windows Environment My Windows Environment
    1
    # echo everything
    2
    $VerbosePreference = "Continue"
    3
    
                  
    4
    # escalate to administrator and install winget
    5
    
                  
  3. A theoretical overview of current st... A theoretical overview of current state of GCs
    1
    # Garbage Collectors
    2
    > from ["Really Understanding Garbage Collection - Gil Tene"](https://youtu.be/ocUx-QUJMfo)
    3
    4
    ## Introduction on GC in JVM, and how its different from memory operations in C++
    5
    - GC is extremely efficient, more efficient than `malloc()`, costs less CPU if done right.