Other articles


  1. Tailored Conversations: Adapting Communication Styles for Effective Interaction

    In a world where people communicate in diverse ways, understanding and adapting our communication style is essential. Recognizing our primary style and modifying it to suit the preferences of those we’re interacting with can greatly enhance our conversations. Let’s explore four distinct communication styles and how we can …

    read more
  2. Importance of Mentoring

    "Give a man a fish, and you feed him for a day. Teach a man to fish, and you feed him for a lifetime."

    The difference between a mentor and a coach

    A coach helps individuals or groups improve specific skills or achieve particular results. A career coach helps someone …

    read more
  3. Network Traffic Project Work Log

    Currently I am working on a project to collect port traffic data from a few network devices. These are the interesting areas of that project

    • .env file to store credentials.
    • Read port data from a csv file and store in a list.
    • SSH to the devices and collect traffic data …
    read more
  4. Retrying Iteration of a Loop if it gets failed

    In this post I am going to explain a code block which I used for retrying iteration of a loop if it gets failed.

    This is the code

    def get_port_list_traffic(port_list, connnection_handler):
        port_traffic_data_list = []
        # variables for adding total traffic
        total_in_traffic = 0
        total_out_traffic = 0
        for port in port_list:
            retries = 0
            max_retries = 5 …
    read more

links

social