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

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

Palaash Atri

Currently part of the SDET-QA team for Azul Zing (Platform Prime) and CNVM.

Previously, Engineer at L&T Technology Services, working as a Backend Engineer for Halliburton on DecisionSpace (DS365.ai) Platform team, building Java SDKs, microservices and Kubernetes automation, validation and deployment tools using Python.

I speak C++, Java, JavaScript & Python 3.

I prefer Windows, but I work on macOS and Linux. The only Linux distro I prefer working on is Arch btw.

You can find me on LinkedIn at: https://www.linkedin.com/in/palaasha/

From: 01 May 2024 - To: 08 May 2024

YAML         54 mins         █████████▓░░░░░░░░░░░░░░░   38.69 %
Python       47 mins         ████████▒░░░░░░░░░░░░░░░░   33.73 %
PowerShell   24 mins         ████▒░░░░░░░░░░░░░░░░░░░░   17.21 %
Other        7 mins          █▒░░░░░░░░░░░░░░░░░░░░░░░   05.17 %
Batchfile    5 mins          █░░░░░░░░░░░░░░░░░░░░░░░░   03.73 %

Pinned

  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.