Skip to main content

MOUNTAIN CLIMBING

Rock climbing is the acts which come in the category of adventure. in the category of adventure bugging jumping, rafting,  camping, rock climbing etc, comes. I have tried rock climbing in Uttarakhand, it is the spot in which almost all adventuring things can be done. but today we will talk about the profits of rock climbing and the records that are made by the Mountaineers.

while climbing a mountain your body physically and mentally get interacted with it .mountain climbing is just like a harsh training but its outcomes are very healthy. scientifically it is found that adrenaline -scientifically known as epinephrine-is a hormone that is generated by our body parts, this hormone is secreted when you do this activity.you are in a situation in where you feel the need of defence yourself. this hormone helps your body handle the stress of the situation adrenaline can occur in different types of situation-a worrying situation, an angry situation, fighting situation, an insulting situation or the situation when you are going to do something daring it helps you overcome with this all situations.

what happens when Adrenaline rushes in your body while rock climbing?

when Adrenaline rushes in your body, your body's strength gets increased and able to overcome with all harsh situations. the performance of the working of the brain increased. when you experience an adrenaline rush while rock climbing, you would be extra aware of where you are placing your hands and feet.

Even if you get bruised or injured against the rocks, adrenaline numbs the pain. However, once the adrenaline rush wears off, you feel the pain. in life, these adventures things should exist in our life, so that we can live free and young. 

so, now we will talk about the world most interesting records in climbing rocks!

a man named Alex  Honnold on June 6, 2018, he climbed the mountain in 1:58:07(one hour, fifty-eight minute and seven seconds).he covered 3,000-foot route and broke the record of El Capitan in Yosemite in 2018.
there is a record whose name is "First dual ascent made by a woman on Mount Everest summit within five days" made by an Indian woman named  Anshu Jamsenpa .she is a mountain climber. she makes this record on 21 May 2017. another one isFastest ascent from Everest South Base Camp".
this was also a record made by an Indian man for climbing the mountain. Aman Kumar Sinha completed his record in 20 hours and 24 minutes on October 17,2008.
this was an interesting fact, you have to know that for covering so much distance on mountain how much preparation and determination is required. if we start counting these records we will definitely get more examples. these are the people who have defeated the fear and grabbed the success there are many things that should be learned or get inspired by them that "NO PAIN NO GAIN" a salute to those climbers who motivated us so much.
if you know that while climbing the rocks the function and efficiency of the heart increases, the heart gets stronger, this happens because when your eyes see so much height from the rock the oxygen level in our body decreases so to fulfil this heart gets more active and start pumping the blood at a high rate. one more advantage of this is that when heart will pump the blood at high rate definitely the blood will flow int he nerves at a very high rate so the high pressure of blood removes the blood clots in the nerves I am not saying  that blood pressure at that sense(a type of diseases)the flowing of blood in a well-mannered way. 

Rock climbing, you can it as adventures or a way of internment and of course like a sport. 

let's talk about the all beautiful paces all over the world, in which we can climb a rock.



Comments

Popular posts from this blog

web scraping

want to get started with web_scraping  ! in this blog we will learn how to do web scarping,why to do web scraping,what are the advantages and disadvantages of web scraping and we will answer all the question related to web scraping very deeply in this blog.So let's get started. First you should know some basic things that what is a browser and what are websites.browsers are the machines that read and present the code on the screen which is written in HTML.browsers converts the HTML codes into an interface. for example ,suppose i am writing a code < html > < head > < title > WELCOME < /title > < /head > < body > < h1 > YOU CAN WRITE HERE < /h1 > < /body > < /html > the browser will read the code and will present in front of you like and websites are the pages which are written in many components like HTML,java,python,MySQL and etc. theses pages are readed by the b...

commanding on coding

     COMPETITIVE PROGRAMMING  "Practise makes a man perfect " In today's new era, the one who is in the field of coding and programming (Both are almost the same) wants to get command on coding. every day new things and packages are introduced for the betterment of the software and its user experiences.so, today MAX is here to give you all possible ways to get command on coding. Today we will talk about the five steps that will increase your coding skills from zero levels to advanced level. STEP-1 Consider a code source like books, websites,  online courses and any other stuff from which you are comfortable( I prescribe to use books for better understanding and clear-cut overview of contents .)and then makes another notebook and extract all the syntax of each and every topic. the main moto of doing this is that you will learn the syntax of the programming language, which is ignored by many students, and for writing programmes, they seek for the syntax a...

Performing Analysis of Meteorological Data

 import numpy as np import pandas as pd import matplot.pyplot as plt file_path = "C:/Users/user/Downloads/wetherHistory.csv" file = pd.read_csv(file_path) titles_req = ["Formatted Date","Apparent Temerature(c)","Humidity"] df = files[titles_req] df['Formatted Date'] = pd.to_datetime(df['Formatted Date'],utc=True) df_1 = df.set_index('Formatted Dates') df_1 = df_1.resample('MS').mean() df_1.head() plt.figure(figsize(14,6)) plt.title("Variation in apperent temperature and Humidity with time") plt.plot(df_1) df_april = df_1[df_1.index.month==4] plt.figure(figsize=(14,6)) plt.plot(df_april)