pilaniya@home:~$

  • Go Scheduler Part I

    Process Process contains common resources that may be allocated by any process. These resources include but are not limited to a memory address space, handles to files, devices, and threads. Process will have various attributes like Process ID Process State Process Priority Program Counter General purpose register List of open...

  • Array Slice And Map In Golang

    Array Array Internals and fundamentals An array in Go is a fixed-length data type that contains a contiguous block of elements of the same type. Arrays are valuable data structures because the memory is allocated sequentially. Having memory in a contiguous form can help to keep the memory you use...

  • Auth

    DockerHub Profile: https://hub.docker.com/repository/docker/pilaniya1337/authservice GitHub Profile:https://github.com/mukeshpilaniya/auth MakeFile Start the application make up Stop the application make stop Build docker images form source code make docker-build RestAPI call endpoints 1. Create User Endpoint url:- http://localhost:8081/api/v1/create_user Request Type-POST method Example: Request:- http://localhost:8081/api/v1/create_user { "first_name": "mukesh", "last_name": "pilaniya", "email": "test@gmail.com", "password": "pilaniya" } Response:-...

  • Open Source Contributions

    Open Source Contribution List Checkmarx/kics 1.1 https://github.com/Checkmarx/kics/pull/3422 1.2 https://github.com/Checkmarx/kics/issues/3412 Canvasbird/canvasboard 2.1 https://github.com/Canvasbird/canvasboard/issues/350

  • Cp Competitive programming time Complexity

    Hello all, when you doing competitive programming or solving any coding questions on coding platform like leetcode, hackerearth or hackerrank then sometime you might be faced TLE error, while submitting your code on online judges. So today, I will talk about how you can train your mind before solving any...