Skip to content
View ramank775's full-sized avatar
πŸ‘‹
πŸ‘‹
Block or Report

Block or report ramank775

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

Hi there πŸ‘‹, I am Raman !!

Raman | Twitter Raman | LinkedIn Raman | Telegram

I am sr. software engineer. I really enjoy working on designing and developing backend system and can work on the any end.

  • πŸ”­ I'm currently working on an open source personal chat messager Vartalap.
  • πŸ‘― I'm looking to collaborate on developement of open sources alternatives of daily used closed source systems.
  • πŸ“« You can reachout to me on: @ramank775.
  • πŸ’¬ Ask me about - Vartalap 😊😊 or anything you feeling like asking me.
  • πŸ˜„ Pronouns: He/Him
  • ⚑ Fun fact: I love trekking although I am afraid of height.

My GitHub stats

Github stats

Pinned

  1. chat-server chat-server Public

    A chat server based on the microservice architecture to ensure high availability, high throughput, horizontal scalability

    JavaScript 25 7

  2. vartalap vartalap Public

    Open source personal messaging application.

    Dart 12 4

  3. SafetyAppDiscussion SafetyAppDiscussion Public

    This Repo for the initiative to bring people to contribute voluntarily, to help the person in need nearby

  4. Get a process in python by name and ... Get a process in python by name and port number
    1
    import psutil
    2
    
                  
    3
    
                  
    4
    def get_process_by_name_port(process_name, port):
    5
        processes = [proc for proc in psutil.process_iter() if proc.name()
  5. Script to get the process listening ... Script to get the process listening to a port number
    1
    import psutil
    2
    
                  
    3
    def get_process_by_port(port):
    4
        for p in psutil.process_iter():
    5
            for c in p.connections():
  6. webrtc_example webrtc_example Public

    Basic WebRTC Implementation

    HTML 1