Skip to main content

Long trip over a bike

My younger cousin brother is crazy about bikes. Few weeks back he told me about his plan to visit his hometown. I said "Ok! What's the big deal?". Then he told me "over a bike". Since he is staying in Gurgaon while his hometown is Madhubani, which is around 1250 km from Gurgaon. So after listening this I was like "Oh My God! Are you sure?".

He was quite determined, so I asked about how he'll be going to execute this. But as I guessed he had no plan. Though his excitement was visible over Facebook, as he was asking for suggestions on his wall. Since nobody else has ever did this before, he wouldn't got much suggestion though everyone wished him luck.

Finally he included his friend in his trip. And I sighed as two can better care themselves.

As per their plan, in fact, no-plan they were gone over a trip and to my expectation they finished it well. As he called me about his exciting journey of 2 days. Though I knew they'll do it even though their was some fear like "What if ... ". So it was a big relief to listen the news of reaching safely.

Today I got his complete journey route with the exact time of arrival and departure. I thought it would be good to put it in a blog for reference.

So let's see how did he managed to achieve it.

He has TVS Apache bike.
So finally, 2 people and 1 bike. Quite fair!
They started their journey from Gurgaon at 1:00 pm, by filling Rs.600/- petrol in it.

At 5:00 pm they reached Mathura (140km). The bike was punctured there.
At 6:30 pm he reached Agra (200km). They did their bike servicing over there.

At 8:00 pm they left Agra and after filled petrol of Rs.600/-. Tank full!
At 8:30 pm they reached Tundla.
At 9:30 pm they reached Firozabad.
At 11:10 pm they had dinner at some dhaba in between.
At 3:45 am they reached Itawa.
At 4:45 am they reached Araiya.
At 8:15 am they reached Kanpur. They stayed there.
At 12:00 pm they reached Lucknow. Distance from Kanpur to Lucknow is 70km.
At 6:50 pm they reached Ayodhya. They bathed at Saryu ghat.
At 8:40 pm they reached Haraisa. They had to change their bike tube.
At 10:00 pm they reached dhaba in mid-way. They had dinner there.
At 11:30 pm they left that dhaba.

Until there they had traveled 800 km and reached some basti.
At 1:45 am they reached Gorakhpur (880 km). They stayed for 2 hours.

After 985 km they entered Bihar via Gopalganj.
At 9:00 am they reached Motihari (1080 km).
At 10:15 am they reached Kanti (1135km).
At 10:40 am they reached Muzaffarpur.
At 12:30 am they reached Darbhanga (1208km).
At 2:15 pm they reached MADHUBANI, their destination.

The total distance was 1248 km.
The total petrol cost Rs.1800/-.

Well, I personally think that it would be quite useful blue-print for others.
Anyway, I would like to have comments specially from the riders of long journeys.
So don't forget to put your comments or link of your blog of similar expedition.

Comments

  1. precaution:once tyre puncture,then change the tube,otherwise puncture will occur more frequently.

    ReplyDelete

Post a Comment

Popular posts from this blog

Unlock protected blocks in Siemens SIMATIC Step 7

Recently I'd been called by Hindalco's Fabrication Plant division to unlock the protected blocks in Siemens SIMATIC Step 7. They were in need to unlock those blocks since an year because of 1 million Rupees of loss per month. They want to re-program those blocks but it was locked by the man who'd done the setup. From the people working in that department, I came to know that they were trying to call that man (someone from Italy) right here but he's not coming. Actually, what he'd done was that he'd locked some of the blocks and deleted the source file. And Siemens didn't provide any feature to unlock. Department people also told me that even the people working in Siemens don't know how to do it. Being a software engineer I know that any thing can be reverse engineered. So I took up the challenge. How did I unlocked the blocks? The first thing I'd done was searched about this software at Google and read about what is this software all about. Aft...

Launching a Jupyter Notebook with TensorFlow using Docker

This article will walk you through setting up a Jupyter Notebook environment with TensorFlow pre-installed using Docker. Docker allows you to run isolated containerized applications, providing a consistent environment regardless of your underlying operating system. Prerequisites: Docker: Ensure you have Docker installed and running on your system. You can download and install it from the official Docker website ( https://www.docker.com/ ). Steps: Start Docker: Open your Docker application (Docker Desktop for Windows/macOS or the command line if using Linux). Run the Jupyter Notebook container: For macOS/Linux: Open your terminal application and run the following command: docker run -it --rm -p 8888:8888 -v "${PWD}":/home/jovyan/work jupyter/tensorflow-notebook For Windows: Open your Command Prompt application and run the following command: docker run -it --rm -p 8888:8888 -v "%CD%":/home/jovyan/work jupyter/tensorflow-notebook Explanation of the command flags: -...

JS: The complete code example of Crypto.js (DES)

For one of the project I was trying to use crypto.js but I found that the Quick-start Guide have some deficiency in terms of library usage. So I am writing it here as a useful note for memory recap. <script src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/tripledes.js"></script> <script> var encrypted = CryptoJS.DES.encrypt("The secret message", "secret_key"); var e_msg = encrypted.toString(); console.log(e_msg); var decrypted = CryptoJS.DES.decrypt(e_msg, "secret_key"); var d_msg = decrypted.toString(CryptoJS.enc.Utf8); console.log(d_msg); </script>