Skip to main content

The story of Hiroo Onoda and Norio Suzuki .

Well the story begins with Hiroo Onodo.
A Japanese  Army Intelligence officer who fought in world war II. 
On 23 December 1944 he was sent to Lubang Island  in the Philippines with orders which stated that under no conditions he should surrender or take his own life.
But after few months The United States detonated two nuclear weapons over the Japanese cities of Hiroshima and Nagasaki on August 6 and 9, 1945 which  ended the World War II as Japanese surrenders.The Philippines forces distributed leaflet announcing that Japan has surrender in Oct 1945,However he and his companion distrusted the leaflet thinking that it was a allied propaganda.As they continue to carry out guerrilla  activities and shootouts with the forces .In 1952 letters and family pictures were dropped from aircraft  urging them to surrender,but they concluded that it was a trick. In 1972 his companion Kozuka was killed by local police. Onoda was now alone. After 2 years  On Feb 20,1974 , Onoda met a Japanese man Norio Suzuki and then after orders from his senior was relived from his duty after 30 years.He was then a popular person in Japan.
(He also released an autobiography, No Surrender: My Thirty-Year War, shortly after his return, detailing his life as a guerrilla fighter in a war that was long over)
Norio Suzuki?
He was a Japanese explorer and adventurer. He studied economics but then dropped out and decided to explore the world. Four year he wander Asia, Africa  and Middle east and then returned to Japan in 1972. As in 1972  Japanese Media reported Kozuka was killed and his body then was surrender to Japan and after that there where many search efforts to find  Hiroo Onodo which ended in a failure.
Norio Suzuki then decided to search for the officer.
He expressed his decision in this way: He wanted to search for "Lieutenant Onoda, a panda, and the Abominable Snowman(Yeti), in that order".This was kind of crazy life goals of  Norio Suzuki .
Suzuki found Onoda after four days of searching and later they both become friends.
After finding Onoda, Suzuki quickly found a wild panda, and claimed to have spotted a yeti from a distance by July 1975, hiking in the Dhaulagiri range of the Himalayas. He married in 1976 but did not give up his quest.
Suzuki died in November 1986 in an avalanche while searching for the yeti. His remains were discovered a year later and returned to his family.
Hope you like the story of these two devoted people.
There were people earlier having such dedication towards there goals nowadays we hardly find such thing. It is always good to have a goal set in your mind may it be anything but you must work on it everyday. It will always pay you back with high intensity.

WRITTEN BY:
Saurabh Joshi

Comments

  1. There has to be a book about this, I refuse to believe no one has made a book on this story yet

    ReplyDelete
    Replies
    1. A great movie can be made out of this real story

      Delete

Post a Comment

Popular posts from this blog

Globant part 1

 1)call,apply,bind example? Ans: a. call Method: The call method is used to call a function with a given this value and arguments provided individually. Javascript code: function greet(name) {   console.log(`Hello, ${name}! I am ${this.role}.`); } const person = {   role: 'developer' }; greet.call(person, 'Alice'); // Output: Hello, Alice! I am developer. In this example, call invokes the greet function with person as the this value and passes 'Alice' as an argument. b. apply Method: The apply method is similar to call, but it accepts arguments as an array. Javascript code: function introduce(language1, language2) {   console.log(`I can code in ${language1} and ${language2}. I am ${this.name}.`); } const coder = {   name: 'Bob' }; introduce.apply(coder, ['JavaScript', 'Python']); // Output: I can code in JavaScript and Python. I am Bob. Here, apply is used to invoke introduce with coder as this and an array ['JavaScript', 'Pyt...

Node.js: Extract text from image using Tesseract.

In this article, we will see how to extract text from images using Tesseract . So let's start with this use-case, Suppose you have 300 screenshot images in your mobile which has an email attribute that you need for some reason like growing your network or for email marketing. To get an email from all these images manually into CSV or excel will take a lot of time. So now we will check how to automate this thing. First, you need to install Tesseract OCR( An optical character recognition engine ) pre-built binary package for a particular OS. I have tested it for Windows 10. For Windows 10, you can install  it from here. For other OS you make check  this link. So once you install Tesseract from windows setup, you also need to set path variable probably, 'C:\Program Files\Tesseract-OCR' to access it from any location. Then you need to install textract library from npm. To read the path of these 300 images we can select all images and can rename it to som...

CSS INTERVIEW QUESTIONS SET 2

  You make also like this CSS interview question set 1. Let's begin with set 2, 5)What is the difference between opacity 0 vs display none vs visibility hidden? Property           | occupies space | consumes clicks | +--------------------+----------------+-----------------+ | opacity: 0         |        yes      |        yes       | +--------------------+----------------+-----------------+ | visibility: hidden |        yes       |        no        | +--------------------+----------------+-----------------+ | display: none      |        no       |        no        | When we say it consumes click, that means it also consumes other pointer-events like onmousedown,onmousemove, etc. In e...