LoginSignup

This article is a Private article. Only a writer and users who know the URL can access it.
Please change open range to public in publish setting if you want to share this article with other users.

More than 3 years have passed since last update.

youtube-VS-googletrans-2.py

Last updated at Posted at 2021-02-02

2021.2.3.

pip install googletrans==4.0.0-rc1

pip install youtube_transcript_api

usage: youtube
gist.github

youtube-VS-googletrans-2.py
from youtube_transcript_api import YouTubeTranscriptApi
from googletrans import Translator

video_id = 'qviM_GnJbOM' ## youtube video_id
line =[]
line[:] = YouTubeTranscriptApi.get_transcript(video_id,languages=['en'])

text_list = []
for l in line:
    ##print("text: ", l['text'])
    ##print("start:", l['start'])
    ##print("duration:", l['duration'])

    l['text']=l['text'].strip()
    l['text']=l['text'].rstrip('\n')
    l['text']=l['text'].replace('\n',' ')
    text_list.append(l['text'])
##print(line)    
del line
##print(text_list)
print("haywhnk-A.K.A-@dauuricus")
print("- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -")
print("YouTube captions")
print("- - - - - - - - - - - - - - - - - - -  YouTube  - - - - - - - - - - - - - - - - - - -")
print()
print()
line = YouTubeTranscriptApi.list_transcripts(video_id)    

transcript = line.find_transcript(['en'])
##print(transcript.fetch())
for count, dict_obj in enumerate(transcript.fetch()):
    print( count +1, dict_obj['text'] )
print()
print()
print("************************************************************************************")
print()
print("Youtube captions")
print("- - - - - - - - - - - - - - - - - - translated - - - - - - - - - - - - - - - - - - -")
print()
print()
translated = transcript.translate('ja')
for count, dict_obj in enumerate(translated.fetch()):
    print( count+1, dict_obj['text'] )
print()
print("-----------------------------------------------------------------------------------")
print()
print("google translate API")
print("- - - - - - - - - - - - - - - - -  googletrans  - - - - - - - - - - - - - - - - - -")
print()
print()
####line_list = []
####for l in text_list:
####    line_list.append(l.replace('\n',' '))
##text_list[:] = [a for a in text_list if a != ' ']
##text_list[:] = [l.replace('\n',' ') for l in text_list]


text_compo = [] ##2 lines to 1 line
i = 0
txt = ''
for count,l in enumerate(text_list):
    if i == 0:
      txt += l
      i = i + 1
      text_compo.append(txt)
    elif i == 1:
      txt += ' ' +l
      text_compo.pop()
      text_compo.append(txt)
      i = 0
      txt = ''

for count, l in enumerate(text_list):
    print(count+1,l)
print()
print("************************************************************************************")
print()
print("google translate API")
print("- - - - - - - - - - - - - - - - -  translated - - - - - - - - - - - - - - - - - - -")    
print()
print()
translator = Translator()

#for count, l in enumerate(text_list):
#    translated = translator.translate(l, dest='ja')
#    ##print(count+1, l)
#    print(count+1, translated.text)

num = 5
#obj_num = 1

for count, l in enumerate(text_list):
    if count < num:
        translated = translator.translate(l, dest='ja')
        #print(count+1, l)
        print(count+1, translated.text)
    else:
        translated = translator.translate(l, dest='ja')
        print(count+1, translated.text)        
        del translator
        num = num + 5
        #obj_num = obj_num + 1
        #print("")
        #print("--- translator :", obj_num)
        #print("")
        translator = Translator()

del translator
print()
print("------------------------------------------------------------------------------------")
print()
print("google translate API")
print("- - - - - - - - - - - - - - - - - - 2 lines to 1 - - - - - - - - - - - - - - - - - -")    
print()
print()

for count, l in enumerate(text_compo):
    print(count+1,l)
print()
print("************************************************************************************")
print()
print("google translate API")
print("- - - - - - - - - - - - - - - - - - translated - - - - - - - - - - - - - - - - - - -")    
print()
print()
#for count, l in enumerate(text_compo):
#    translated = translator.translate(l, dest='ja')
#    ##print(count+1, l)
#    print(count+1, translated.text)

translator = Translator()
num = 5
#obj_num = 1

for count, l in enumerate(text_compo):
    if count < num:
        translated = translator.translate(l, dest='ja')
        #print(count+1, l)
        print(count+1, translated.text)
    else:
        translated = translator.translate(l, dest='ja')
        print(count+1, translated.text)        
        del translator
        num = num + 5
        #obj_num = obj_num + 1
        #print("")
        #print("--- translator :", obj_num)
        #print("")
        translator = Translator()

del translator
print()
print()
print("************************************************************************************")
print()
print("Thank you.")

Language list

対応言語リスト
'af': 'afrikaans' 'sq': 'albanian' 'am': 'amharic' 'ar': 'arabic'
'hy': 'armenian' 'az': 'azerbaijani' 'eu': 'basque' 'be': 'belarusian'
'bn': 'bengali' 'bs': 'bosnian' 'bg': 'bulgarian' 'ca': 'catalan'
'ceb': 'cebuano' 'ny': 'chichewa' 'zh-cn': 'chinese (simplified)' 'zh-tw': 'chinese (traditional)'
'co': 'corsican' 'hr': 'croatian' 'cs': 'czech' 'da': 'danish'
'nl': 'dutch' 'en': 'english' 'eo': 'esperanto' 'et': 'estonian'
'fi': 'finnish' 'fr': 'french' 'fy': 'frisian' 'gl': 'galician'
'ka': 'georgian' 'de': 'german' 'el': 'greek' 'gu': 'gujarati'
'ht': 'haitian creole' 'ha': 'hausa' 'haw': 'hawaiian' 'iw': 'hebrew'
'he': 'hebrew' 'hi': 'hindi' 'hmn': 'hmong' 'hu': 'hungarian'
'is': 'icelandic' 'ig': 'igbo' 'id': 'indonesian' 'ga': 'irish'
'it': 'italian' 'ja': 'japanese' 'jw': 'javanese' 'kn': 'kannada'
'kk': 'kazakh' 'km': 'khmer' 'ko': 'korean' 'ku': 'kurdish (kurmanji)'
'ky': 'kyrgyz' 'lo': 'lao' 'la': 'latin' 'lv': 'latvian'
'lt': 'lithuanian' 'lb': 'luxembourgish' 'mk': 'macedonian' mg': 'malagasy'
'ms': 'malay' 'ml': 'malayalam' 'mt': 'maltese' 'mi': 'maori'
'mr': 'marathi' 'mn': 'mongolian' 'my': 'myanmar (burmese)' 'ne': 'nepali'
'no': 'norwegian' 'or': 'odia' 'ps': 'pashto' 'fa': 'persian'
'pl': 'polish' 'pt': 'portuguese' 'pa': 'punjabi' 'ro': 'romanian'
'ru': 'russian' 'sm': 'samoan' 'gd': 'scots gaelic' 'sr': 'serbian'
'st': 'sesotho' 'sn': 'shona' 'sd': 'sindhi' 'si': 'sinhala'
'sk': 'slovak' 'sl': 'slovenian' 'so': 'somali' 'es': 'spanish'
'su': 'sundanese' 'sw': 'swahili' 'sv': 'swedish' 'tg': 'tajik'
'ta': 'tamil' 'te': 'telugu' 'th': 'thai' 'tr': 'turkish'
'uk': 'ukrainian' 'ur': 'urdu' 'ug': 'uyghur' 'uz': 'uzbek'
'vi': 'vietnamese' 'cy': 'welsh' 'xh': 'xhosa' 'yi': 'yiddish'
'yo': 'yoruba'a 'zu': 'zulu'

example

video_id = 1i9kcBHX2Nw

Jobs-speech
haywhnk-A.K.A-@dauuricus
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
YouTube captions
- - - - - - - - - - - - - - - - - - -  YouTube  - - - - - - - - - - - - - - - - - - -


1 I am honored to be with you today at your
commencement from one of the finest universities
2 in the world.
3 I never graduated from college.
4 Truth be told, this is the closest I’ve
ever gotten to a college graduation.
5 Today I want to tell you three stories from
my life.
6 That’s it.
7 No big deal.
8 Just three stories.
9 I dropped out of Reed College after the first
6 months, but then stayed around as a drop-in
10 for another 18 months or so before I really
quit.
11 So why did I drop out?
12 It started before I was born.
13 My biological mother was a young, unwed college
graduate student, and she decided to put me
14 up for adoption.
15 She felt very strongly that I should be adopted
by college graduates, so everything was all
16 set for me to be adopted at birth by a lawyer
and his wife.
17 Except that when I popped out they decided
at the last minute that they really wanted
18 a girl.
19 So my parents, who were on a waiting list,
got a call in the middle of the night asking:
20 “We have an unexpected baby boy; do you
want him?”
21 They said: “Of course.”
22 My biological mother later found out that
my mother had never graduated from college
23 and that my father had never graduated from
high school.
24 She refused to sign the final adoption papers.
25 She only relented a few months later when
my parents promised that I would someday go
26 to college.
27 And 17 years later I did go to college.
28 But I naively chose a college that was almost
as expensive as Stanford, and all of my working-class
29 parents’ savings were being spent on my
college tuition.
30 After six months, I couldn’t see the value
in it.
31 I had no idea what I wanted to do with my
life and no idea how college was going to
32 help me figure it out.
33 And here I was spending all of the money my
parents had saved their entire life.
34 So I decided to drop out and trust that it
would all work out OK.
35 It was pretty scary at the time, but looking
back it was one of the best decisions I ever
36 made.
37 The minute I dropped out I could stop taking
the required classes that didn’t interest
38 me, and begin dropping in on the ones that
looked interesting.
39 It wasn’t all romantic.
40 I didn’t have a dorm room, so I slept on
the floor in friends’ rooms, I returned
41 Coke bottles for the 5¢ deposits to buy food
with, and I would walk the 7 miles across
42 town every Sunday night to get one good meal
a week at the Hare Krishna temple.
43 I loved it.
44 And much of what I stumbled into by following
my curiosity and intuition turned out to be
45 priceless later on.
46 Let me give you one example:
47 Reed College at that time offered perhaps
the best calligraphy instruction in the country.
48 Throughout the campus every poster, every
label on every drawer, was beautifully hand
49 calligraphed.
50 Because I had dropped out and didn’t have
to take the normal classes, I decided to take
51 a calligraphy class to learn how to do this.
52 I learned about serif and sans serif typefaces,
about varying the amount of space between
53 different letter combinations, about what
makes great typography great.
54 It was beautiful, historical, artistically
subtle
55 in a way that science can’t capture, and
I found it fascinating.
56 None of this had even a hope of any practical
application in my life.
57 But 10 years later, when we were designing
the first Macintosh computer, it all came
58 back to me.
59 And we designed it all into the Mac.
60 It was the first computer with beautiful typography.
61 If I had never dropped in on that single course
in college, the Mac would have never had multiple
62 typefaces or proportionally spaced fonts.
63 And since Windows just copied the Mac, it’s
likely that no personal computer would have
64 them.
65 If I had never dropped out, I would have never
dropped in on this calligraphy class, and
66 personal computers might not have the wonderful
typography that they do.
67 Of course it was impossible to connect the
dots looking forward when I was in college.
68 But it was very, very clear looking backward
10 years later.
69 Again, you can’t connect the dots looking
forward; you can only connect them looking
70 backward.
71 So you have to trust that the dots will somehow
connect in your future.
72 You have to trust in something — your gut,
destiny, life, karma, whatever.
73 This approach has never let me down, and it
has made all the difference in my life.
74 My second story is about love and loss.
75 I was lucky — I found what I loved to do
early in life.
76 Woz and I started Apple in my parents’ garage
when I was 20.
77 We worked hard, and in 10 years Apple had
grown from just the two of us in a garage
78 into a $2 billion company with over 4,000
employees.
79 We had just released our finest creation — the
Macintosh — a year earlier, and I had just
80 turned 30.
81 And then I got fired.
82 How can you get fired from a company you started?
83 Well, as Apple grew we hired someone who I
thought was very talented to run the company
84 with me, and for the first year or so things
went well.
85 But then our visions of the future began to
diverge and eventually we had a falling out.
86 When we did, our Board of Directors sided
with him.
87 So at 30 I was out.
88 And very publicly out.
89 What had been the focus of my entire adult
life was gone, and it was devastating.
90 I really didn’t know what to do for a few
months.
91 I felt that I had let the previous generation
of entrepreneurs down — that I had dropped
92 the baton as it was being passed to me.
93 I met with David Packard and Bob Noyce and
tried to apologize for screwing up so badly.
94 I was a very public failure, and I even thought
about running away from the valley.
95 But something slowly began to dawn on me — I
still loved what I did.
96 The turn of events at Apple had not changed
that one bit.
97 I had been rejected, but I was still in love.
98 And so I decided to start over.
99 I didn’t see it then, but it turned out
that getting fired from Apple was the best
100 thing that could have ever happened to me.
101 The heaviness of being successful was replaced
by the lightness of being a beginner again,
102 less sure about everything.
103 It freed me to enter one of the most creative
periods of my life.
104 During the next five years, I started a company
named NeXT, another company named Pixar, and
105 fell in love with an amazing woman who would
become my wife.
106 Pixar went on to create the world’s first
computer animated feature film, Toy Story,
107 and is now the most successful animation studio
in the world.
108 In a remarkable turn of events, Apple bought
NeXT, I returned to Apple, and the technology
109 we developed at NeXT is at the heart of Apple’s
current renaissance.
110 And Laurene and I have a wonderful family
together.
111 I’m pretty sure none of this would have
happened if I hadn’t been fired from Apple.
112 It was awful tasting medicine, but I guess
the patient needed it.
113 Sometimes life hits you in the head with a
brick.
114 Don’t lose faith.
115 I’m convinced that the only thing that kept
me going was that I loved what I did.
116 You’ve got to find what you love.
117 And that is as true for your work as it is
for your lovers.
118 Your work is going to fill a large part of
your life, and the only way to be truly satisfied
119 is to do what you believe is great work.
120 And the only way to do great work is to love
what you do.
121 If you haven’t found it yet, keep looking.
122 Don’t settle.
123 As with all matters of the heart, you’ll
know when you find it.
124 And, like any great relationship, it just
gets better and better as the years roll on.
125 So keep looking until you find it.
126 Don’t settle.
127 My third story is about death.
128 When I was 17, I read a quote that went something
like: “If you live each day as if it was
129 your last, someday you’ll most certainly
be right.”
130 It made an impression on me, and since then,
for the past 33 years, I have looked in the
131 mirror every morning and asked myself: “If
today were the last day of my life, would
132 I want to do what I am about to do today?”
133 And whenever the answer has been “No”
for too many days in a row, I know I need
134 to change something.
135 Remembering that I’ll be dead soon is the
most important tool I’ve ever encountered
136 to help me make the big choices in life.
137 Because almost everything — all external
expectations, all pride, all fear of embarrassment
138 or failure — these things just fall away
in the face of death, leaving only what is
139 truly important.
140 Remembering that you are going to die is the
best way I know to avoid the trap of thinking
141 you have something to lose.
142 You are already naked.
143 There is no reason not to follow your heart.
144 About a year ago I was diagnosed with cancer.
145 I had a scan at 7:30 in the morning, and it
clearly showed a tumor on my pancreas.
146 I didn’t even know what a pancreas was.
147 The doctors told me this was almost certainly
a type of cancer that is incurable, and that
148 I should expect to live no longer than three
to six months.
149 My doctor advised me to go home and get my
affairs in order, which is doctor’s code
150 for prepare to die.
151 It means to try to tell your kids everything
you thought you’d have the next 10 years
152 to tell them in just a few months.
153 It means to make sure everything is buttoned
up so that it will be as easy as possible
154 for your family.
155 It means to say your goodbyes.
156 I lived with that diagnosis all day.
157 Later that evening I had a biopsy, where they
stuck an endoscope down my throat, through
158 my stomach and into my intestines, put a needle
into my pancreas and got a few cells from
159 the tumor.
160 I was sedated, but my wife, who was there,
told me that when they viewed the cells under
161 a microscope the doctors started crying because
it turned out to be a very rare form of pancreatic
162 cancer that is curable with surgery.
163 I had the surgery and I’m fine now.
164 This was the closest I’ve been to facing
death, and I hope it’s the closest I get
165 for a few more decades.
166 Having lived through it, I can now say this
to you with a bit more certainty than when
167 death was a useful but purely intellectual
concept:
168 No one wants to die.
169 Even people who want to go to heaven don’t
want to die to get there.
170 And yet death is the destination we all share.
171 No one has ever escaped it.
172 And that is as it should be, because Death
is very
173 likely the single best invention of Life.
174 It is Life’s change agent.
175 It clears out the old to make way for the
new.
176 Right now the new is you, but someday not
too long from now, you will gradually become
177 the old and be cleared away.
178 Sorry to be so dramatic, but it is quite true.
179 Your time is limited, so don’t waste it
living someone else’s life.
180 Don’t be trapped by dogma — which is living
with the results of other people’s thinking.
181 Don’t let the noise of others’ opinions
drown out your own inner voice.
182 And most important, have the courage to follow
your heart and intuition.
183 They somehow already know what you truly want
to become.
184 Everything else is secondary.
185 When I was young, there was an amazing publication
called The Whole Earth Catalog, which was
186 one of the bibles of my generation.
187 It was created by a fellow named Stewart Brand
not far from here in Menlo Park, and he brought
188 it to life with his poetic touch.
189 This was in the late 1960s, before personal
computers and desktop publishing, so it was
190 all made with typewriters, scissors and Polaroid
cameras.
191 It was sort of like Google in paperback form,
35 years before Google came along: It was
192 idealistic, and overflowing with neat tools
and great notions.
193 Stewart and his team put out several issues
of The Whole Earth Catalog, and then when
194 it had run its course, they put out a final
issue.
195 It was the mid-1970s, and I was your age.
196 On the back cover of their final issue was
a photograph of an early morning country road,
197 the kind you might find yourself hitchhiking
on if you were so adventurous.
198 Beneath it were the words: “Stay Hungry.
199 Stay Foolish.”
200 It was their farewell message as they signed
off.
201 Stay Hungry.
202 Stay Foolish.
203 And I have always wished that for myself.
204 And now, as you graduate to begin anew, I
wish that for you.
205 Stay Hungry.
206 Stay Foolish.
207 Thank you all very much.


************************************************************************************

Youtube captions
- - - - - - - - - - - - - - - - - - translated - - - - - - - - - - - - - - - - - - -


1 最高の大学の1つからのあなたの開始で今日あなたと一緒にいることを光栄に思います
2 世界中。
3 私は大学を卒業したことがありません。
4 正直なところ、これは私がこれまでに大学を卒業するのに最も近いものです。
5 今日は私の人生の3つの話をしたいと思います。
6 それでおしまい。
7 大きな問題ではない。
8 たった3つの物語。
9 私は最初の6か月後にリード大学を中退しましたが、その後はドロップインとして滞在しました。
10 私が本当にやめる前に、さらに18ヶ月かそこらの間。
11 それで、なぜ私は中退したのですか?
12 それは私が生まれる前に始まりました。
13 私の実の母親は若い未婚の大学大学院生でした、そして彼女は私を置くことに決めました
14 採用に向けて。
15 彼女は私が大卒者に採用されるべきだと強く感じていたので、すべてがすべてでした
16 私が出生時に弁護士と彼の妻に養子縁組されるように設定しました。
17 私が飛び出したとき、彼らは土壇場で彼らが本当に欲しかったと決めたことを除いて
18 女の子。
19 それで、順番待ちリストに載っていた私の両親は、真夜中に次のように尋ねる電話を受けました。
20  「思いがけない男の子がいます。彼が欲しいですか?」
21 彼らは言った:「もちろん。」
22 私の実の母は後に私の母が大学を卒業したことがないことを知りました
23 父は高校を卒業したことがなかった。
24 彼女は最終的な養子縁組の書類に署名することを拒否した。
25 私の両親がいつか行くと約束したとき、彼女はほんの数ヶ月後に容赦しました
26 大学へ。
27 そして17年後、私は大学に行きました。
28 しかし、私はスタンフォードとほぼ同じくらい高価な大学と私の労働者階級のすべてを素朴に選びました
29 両親の貯金は私の大学の授業料に費やされていました。
30 半年後、私はその価値を見ることができませんでした。
31 自分の人生で何をしたいのか、大学がどうなるのかわからなかった
32 私がそれを理解するのを手伝ってください。
33 そしてここで私は両親が一生救ったお金のすべてを費やしていました。
34 それで、私は脱落して、それがすべてうまくいくと信じることに決めました。
35 当時はかなり怖かったですが、振り返ってみると、これまでで最高の決断の1つでした。
36 製。
37 脱落した瞬間、興味のない必要なクラスの受講をやめることができました
38 私、そして面白そうなものに立ち寄り始めます。
39 それはすべてロマンチックではありませんでした。
40 寮の部屋がなかったので、友達の部屋の床で寝て帰りました
41 食べ物を買うための5セントの預金用のコーラボトル、そして私は7マイルを横切って歩くでしょう
42 毎週日曜日の夜、ハレクリシュナ寺院で週に1回おいしい食事をとる町。
43 私はそれが好きだった。
44 そして、好奇心と直感に従って私が偶然見つけたものの多くは、
45 後で貴重です。
46 一例を挙げましょう。
47 当時のリード大学は、おそらく国内で最高の書道指導を提供していました。
48 キャンパス全体で、すべてのポスター、すべての引き出しのすべてのラベルが美しく手元にありました
49 書道。
50 脱落して通常の授業を受ける必要がなかったので、受講することにしました
51 これを行う方法を学ぶための書道のクラス。
52 セリフ書体とサンセリフ書体について、間のスペースの量を変えることについて学びました
53 さまざまな文字の組み合わせ、優れたタイポグラフィを優れたものにする理由について。
54 それは美しく、歴史的で、芸術的に微妙でした
55 科学では捉えきれない方法で、私はそれが魅力的だと感じました。
56 これのどれも私の人生で実用的なアプリケーションの希望さえ持っていませんでした。
57 しかし、10年後、最初のMacintoshコンピュータを設計していたとき、すべてが実現しました。
58 私に戻って。
59 そして、それをすべてMacに組み込みました。
60 それは美しいタイポグラフィを備えた最初のコンピューターでした。
61 もし私が大学でその単一のコースに立ち寄ったことがなかったら、Macには複数のコースがなかっただろう。
62 書体または比例間隔のフォント。
63 また、WindowsがMacをコピーしたばかりなので、パソコンにはない可能性があります。
64 それら。
65 一度も脱落していなかったら、この書道の授業に立ち寄ったことはなかっただろうし、
66 パーソナルコンピュータは、彼らが持っているような素晴らしいタイポグラフィを持っていないかもしれま せん。
67 もちろん、大学時代は楽しみにして点をつなぐことはできませんでした。
68 しかし、10年後の振り返りは非常に明確でした。
69 繰り返しますが、楽しみにしてドットを接続することはできません。見ているだけで接続できます
70 後方。
71 したがって、ドットが将来何らかの形で接続されることを信頼する必要があります。
72 あなたは何かを信頼しなければなりません—あなたの腸、運命、人生、カルマ、何でも。
73 このアプローチは私をがっかりさせることはなく、私の人生にすべての違いをもたらしました。
74 私の2番目の話は愛と喪失についてです。
75 私は幸運でした—人生の早い段階で自分が好きなことを見つけました。
76 ウォズと私は20歳のときに両親のガレージでアップルを始めました。
77 私たちは一生懸命働き、10年でAppleはガレージで私たち2人だけから成長しました
78 4,000人以上の従業員を抱える20億ドルの企業になりました。
79 最高の作品であるMacintoshを1年前にリリースしたばかりで、
80  30歳になりました。
81 そして、私は解雇されました。
82 始めた会社からどうやって解雇されますか?
83 さて、Appleが成長するにつれて、私たちは会社を経営するのに非常に才能があると思った人を雇いました
84 私と一緒に、そして最初の1年かそこらの間、物事はうまくいきました。
85 しかし、その後、私たちの将来のビジョンは発散し始め、最終的に私たちは脱落しました。
86 私たちがそうしたとき、私たちの取締役会は彼の味方でした。
87 それで30歳で私は外出しました。
88 そして非常に公に。
89 私の大人の人生の焦点であったものはなくなり、それは壊滅的でした。
90 私は本当に数ヶ月間何をすべきかわからなかった。
91 私は前世代の起業家を失望させたと感じました—私は落ちました
92 それが私に渡されていたときのバトン。
93 私はデビッド・パッカードとボブ・ノイスに会い、ひどく失敗したことを謝罪しようとしました。
94 私は非常に大衆的な失敗でした、そして私は谷から逃げることさえ考えました。
95 しかし、何かがゆっくりと私に夜明けを始めました—私はまだ自分がしたことを愛していました。
96  Appleでの出来事の順番は、その1ビットを変えていませんでした。
97 私は拒絶されましたが、それでも私は恋をしていました。
98 そして、最初からやり直すことにしました。
99 その時は見ませんでしたが、Appleから解雇されたのが最高だったことがわかりました
100 私に起こったかもしれないこと。
101 成功することの重さは、再び初心者であることの軽さに置き換えられました、
102 すべてについて確信が持てない。
103 それは私が私の人生で最も創造的な期間の1つに入るのを自由にしました。
104 次の5年間で、私はNeXTという名前の会社、Pixarという名前の別の会社を始めました。
105 私の妻になる素晴らしい女性と恋に落ちました。
106 ピクサーはさらに、世界初のコンピューターアニメーション長編映画「トイストーリー」を作成しました。
107 そして今、世界で最も成功したアニメーションスタジオです。
108 驚くべき出来事の中で、AppleはNeXTを購入し、私はAppleに戻り、テクノロジーは
109 NeXTで開発したのは、Appleの現在のルネッサンスの中心です。
110 そして、ローリーンと私には素晴らしい家族がいます。
111 私がAppleから解雇されていなかったら、これは何も起こらなかっただろうと私はかなり確信している。
112 それはひどい味の薬でした、しかし私は患者がそれを必要としていたと思います。
113 時々人生はレンガで頭の中であなたを襲います。
114 信仰を失わないでください。
115 私を動かし続けた唯一のことは、私がしたことを愛したことだと確信しています。
116 あなたはあなたが好きなものを見つける必要があります。
117 そして、それはあなたの恋人にとってもあなたの仕事にも当てはまります。
118 あなたの仕事はあなたの人生の大部分を占めるでしょう、そして本当に満足する唯一の方法
119 あなたが素晴らしい仕事だと信じていることをすることです。
120 そして、素晴らしい仕事をする唯一の方法は、あなたがしていることを愛することです。
121 まだ見つけていない場合は、探し続けてください。
122 落ち着かないでください。
123 心のすべての事柄と同様に、あなたはそれをいつ見つけるかを知るでしょう。
124 そして、他の素晴らしい関係のように、それは年が経つにつれてますます良くなります。
125 だからあなたがそれを見つけるまで探し続けてください。
126 落ち着かないでください。
127 私の3番目の話は死についてです。
128 私が17歳のとき、次のような引用を読みました。
129 あなたの最後の、いつかあなたは間違いなく正しいでしょう。」
130 それは私に印象を与えました、そしてそれ以来、私は過去33年間、
131 毎朝鏡に映って、自分に問いかけました。「今日が私の人生の最後の日だったら、
132 今日やろうとしていることをやりたいの?」
133 そして、答えが何日も続けて「いいえ」であったときはいつでも、私は私が必要であることを知っています
134 何かを変えるために。
135 私がすぐに死ぬことを思い出すことは私が今まで出会った中で最も重要なツールです
136 私が人生で大きな選択をするのを助けるために。
137 なぜなら、ほとんどすべて—すべての外部の期待、すべてのプライド、すべての恥ずかしさへの恐れ
138 または失敗—これらのものは死に直面してただ落ちて、何であるかだけを残します
139 本当に重要です。
140 あなたが死ぬことを覚えていることは、思考の罠を避けるために私が知っている最良の方法です
141 失うものがあります。
142 あなたはすでに裸です。
143 あなたの心に従わない理由はありません。
144 約1年前に私は癌と診断されました。
145 午前7時30分にスキャンを行ったところ、膵臓に腫瘍がはっきりと見られました。
146 私は膵臓が何であるかさえ知りませんでした。
147 医者は、これはほぼ間違いなく不治の癌の一種であり、
148 私は3ヶ月から6ヶ月以内に生きることを期待すべきです。
149 私の医者は私に家に帰って私の事柄を整理するようにアドバイスしました、それは医者のコードです
150 死ぬ準備をするために。
151 それはあなたが次の10年を持っているとあなたが思ったすべてをあなたの子供に伝えようとすることを意味します
152 ほんの数ヶ月で彼らに伝えるために。
153 それはそれができるだけ簡単になるようにすべてがボタンで留められていることを確認することを意味します
154 あなたの家族のために。
155 それはあなたの別れを言うことを意味します。
156 私はその診断で一日中生きました。
157 その夜遅く、私は生検を受けました、そこで彼らは私の喉に内視鏡を突き刺しました
158 私の胃と腸に針を刺し、膵臓からいくつかの細胞を取り出しました
159 腫瘍。
160 私は鎮静されましたが、そこにいた妻は、彼らが下の細胞を見たときに私に言った
161 非常にまれな形態の膵臓であることが判明したため、医師が泣き始めた顕微鏡
162 手術で治癒するがん。
163 私は手術を受け、今は元気です。
164 これは私が死に直面するのに最も近いものでした、そして私が得る最も近いものであることを願っています
165 さらに数十年の間。
166 それを生き抜いた今、私はあなたにこれをいつよりも少し確実に言うことができます
167 死は有用でしたが、純粋に知的概念でした。
168 誰も死にたくない。
169 天国に行きたい人でさえ、そこに行くために死にたくないのです。
170 それでも、死は私たち全員が共有する目的地です。
171 誰もそれを逃れたことがありません。
172 そして、それはあるべき姿です。なぜなら、死は非常に
173 おそらく生命の唯一の最高の発明。
174 ライフのチェンジエージェントです。
175 それは新しいものに道を譲るために古いものを一掃します。
176 今のところ新しいのはあなたですが、いつか今からそれほど長くはないので、あなたは徐々になります
177 古いものと片付けられます。
178 劇的に申し訳ありませんが、それはかなり真実です。
179 あなたの時間は限られているので、他人の人生を生きてそれを無駄にしないでください。
180 他の人々の思考の結果とともに生きている教義にとらわれないでください。
181 他人の意見のノイズがあなた自身の内なる声をかき消してはいけません。
182 そして最も重要なことは、あなたの心と直感に従う勇気を持っていることです。
183 彼らはどういうわけかあなたが本当になりたいものをすでに知っています。
184 他のすべては二次的です。
185 私が若い頃、全地球カタログと呼ばれる素晴らしい出版物がありました。
186 私の世代の聖書の一つ。
187 ここメンロパークからそう遠くないところにあるスチュアートブランドという名前の仲間によって作成され、彼は持ってきました
188 彼の詩的なタッチでそれを生き生きとさせます。
189 これは1960年代後半、パソコンやデスクトップパブリッシングの前だったので、
190 すべてタイプライター、はさみ、ポラロイドカメラで作られています。
191 それは、グーグルが登場する35年前のペーパーバック形式のグーグルのようなものでした。
192 理想主義的で、きちんとしたツールと素晴らしい概念で溢れています。
193 スチュワートと彼のチームは、全地球カタログのいくつかの問題を出しました。
194 それはそのコースを実行しました、彼らは最終的な問題を出しました。
195 それは1970年代半ばで、私はあなたの年齢でした。
196 最終号の裏表紙には早朝の田舎道の写真がありましたが、
197 あなたがとても冒険的だったなら、あなたがヒッチハイクしていることに気付くかもしれない種類。
198 その下には、「お腹を空かせてください。
199 愚かでいなさい。"
200 彼らがサインオフしたとき、それは彼らの別れのメッセージでした。
201 空腹のまま。
202 愚かでいなさい。
203 そして、私はいつも自分自身のためにそれを望んでいました。
204 そして今、あなたが卒業して新たに始めるとき、私はあなたのためにそれを望みます。
205 空腹のまま。
206 愚かでいなさい。
207 どうもありがとうございました。

-----------------------------------------------------------------------------------



1 I am honored to be with you today at your commencement from one of the finest universities
2 in the world.
3 I never graduated from college.
4 Truth be told, this is the closest I’ve ever gotten to a college graduation.
5 Today I want to tell you three stories from my life.
6 That’s it.
7 No big deal.
8 Just three stories.
9 I dropped out of Reed College after the first 6 months, but then stayed around as a drop-in
10 for another 18 months or so before I really quit.
11 So why did I drop out?
12 It started before I was born.
13 My biological mother was a young, unwed college graduate student, and she decided to put me
14 up for adoption.
15 She felt very strongly that I should be adopted by college graduates, so everything was all
16 set for me to be adopted at birth by a lawyer and his wife.
17 Except that when I popped out they decided at the last minute that they really wanted
18 a girl.
19 So my parents, who were on a waiting list, got a call in the middle of the night asking:
20 “We have an unexpected baby boy; do you want him?”
21 They said: “Of course.”
22 My biological mother later found out that my mother had never graduated from college
23 and that my father had never graduated from high school.
24 She refused to sign the final adoption papers.
25 She only relented a few months later when my parents promised that I would someday go
26 to college.
27 And 17 years later I did go to college.
28 But I naively chose a college that was almost as expensive as Stanford, and all of my working-class
29 parents’ savings were being spent on my college tuition.
30 After six months, I couldn’t see the value in it.
31 I had no idea what I wanted to do with my life and no idea how college was going to
32 help me figure it out.
33 And here I was spending all of the money my parents had saved their entire life.
34 So I decided to drop out and trust that it would all work out OK.
35 It was pretty scary at the time, but looking back it was one of the best decisions I ever
36 made.
37 The minute I dropped out I could stop taking the required classes that didn’t interest
38 me, and begin dropping in on the ones that looked interesting.
39 It wasn’t all romantic.
40 I didn’t have a dorm room, so I slept on the floor in friends’ rooms, I returned
41 Coke bottles for the 5¢ deposits to buy food with, and I would walk the 7 miles across
42 town every Sunday night to get one good meal a week at the Hare Krishna temple.
43 I loved it.
44 And much of what I stumbled into by following my curiosity and intuition turned out to be
45 priceless later on.
46 Let me give you one example:
47 Reed College at that time offered perhaps the best calligraphy instruction in the country.
48 Throughout the campus every poster, every label on every drawer, was beautifully hand
49 calligraphed.
50 Because I had dropped out and didn’t have to take the normal classes, I decided to take
51 a calligraphy class to learn how to do this.
52 I learned about serif and sans serif typefaces, about varying the amount of space between
53 different letter combinations, about what makes great typography great.
54 It was beautiful, historical, artistically subtle
55 in a way that science can’t capture, and I found it fascinating.
56 None of this had even a hope of any practical application in my life.
57 But 10 years later, when we were designing the first Macintosh computer, it all came
58 back to me.
59 And we designed it all into the Mac.
60 It was the first computer with beautiful typography.
61 If I had never dropped in on that single course in college, the Mac would have never had multiple62 typefaces or proportionally spaced fonts.
63 And since Windows just copied the Mac, it’s likely that no personal computer would have
64 them.
65 If I had never dropped out, I would have never dropped in on this calligraphy class, and
66 personal computers might not have the wonderful typography that they do.
67 Of course it was impossible to connect the dots looking forward when I was in college.
68 But it was very, very clear looking backward 10 years later.
69 Again, you can’t connect the dots looking forward; you can only connect them looking
70 backward.
71 So you have to trust that the dots will somehow connect in your future.
72 You have to trust in something — your gut, destiny, life, karma, whatever.
73 This approach has never let me down, and it has made all the difference in my life.
74 My second story is about love and loss.
75 I was lucky — I found what I loved to do early in life.
76 Woz and I started Apple in my parents’ garage when I was 20.
77 We worked hard, and in 10 years Apple had grown from just the two of us in a garage
78 into a $2 billion company with over 4,000 employees.
79 We had just released our finest creation — the Macintosh — a year earlier, and I had just
80 turned 30.
81 And then I got fired.
82 How can you get fired from a company you started?
83 Well, as Apple grew we hired someone who I thought was very talented to run the company
84 with me, and for the first year or so things went well.
85 But then our visions of the future began to diverge and eventually we had a falling out.
86 When we did, our Board of Directors sided with him.
87 So at 30 I was out.
88 And very publicly out.
89 What had been the focus of my entire adult life was gone, and it was devastating.
90 I really didn’t know what to do for a few months.
91 I felt that I had let the previous generation of entrepreneurs down — that I had dropped
92 the baton as it was being passed to me.
93 I met with David Packard and Bob Noyce and tried to apologize for screwing up so badly.
94 I was a very public failure, and I even thought about running away from the valley.
95 But something slowly began to dawn on me — I still loved what I did.
96 The turn of events at Apple had not changed that one bit.
97 I had been rejected, but I was still in love.
98 And so I decided to start over.
99 I didn’t see it then, but it turned out that getting fired from Apple was the best
100 thing that could have ever happened to me.
101 The heaviness of being successful was replaced by the lightness of being a beginner again,
102 less sure about everything.
103 It freed me to enter one of the most creative periods of my life.
104 During the next five years, I started a company named NeXT, another company named Pixar, and
105 fell in love with an amazing woman who would become my wife.
106 Pixar went on to create the world’s first computer animated feature film, Toy Story,
107 and is now the most successful animation studio in the world.
108 In a remarkable turn of events, Apple bought NeXT, I returned to Apple, and the technology
109 we developed at NeXT is at the heart of Apple’s current renaissance.
110 And Laurene and I have a wonderful family together.
111 I’m pretty sure none of this would have happened if I hadn’t been fired from Apple.
112 It was awful tasting medicine, but I guess the patient needed it.
113 Sometimes life hits you in the head with a brick.
114 Don’t lose faith.
115 I’m convinced that the only thing that kept me going was that I loved what I did.
116 You’ve got to find what you love.
117 And that is as true for your work as it is for your lovers.
118 Your work is going to fill a large part of your life, and the only way to be truly satisfied
119 is to do what you believe is great work.
120 And the only way to do great work is to love what you do.
121 If you haven’t found it yet, keep looking.
122 Don’t settle.
123 As with all matters of the heart, you’ll know when you find it.
124 And, like any great relationship, it just gets better and better as the years roll on.
125 So keep looking until you find it.
126 Don’t settle.
127 My third story is about death.
128 When I was 17, I read a quote that went something like: “If you live each day as if it was
129 your last, someday you’ll most certainly be right.”
130 It made an impression on me, and since then, for the past 33 years, I have looked in the
131 mirror every morning and asked myself: “If today were the last day of my life, would
132 I want to do what I am about to do today?”
133 And whenever the answer has been “No” for too many days in a row, I know I need
134 to change something.
135 Remembering that I’ll be dead soon is the most important tool I’ve ever encountered
136 to help me make the big choices in life.
137 Because almost everything — all external expectations, all pride, all fear of embarrassment
138 or failure — these things just fall away in the face of death, leaving only what is
139 truly important.
140 Remembering that you are going to die is the best way I know to avoid the trap of thinking
141 you have something to lose.
142 You are already naked.
143 There is no reason not to follow your heart.
144 About a year ago I was diagnosed with cancer.
145 I had a scan at 7:30 in the morning, and it clearly showed a tumor on my pancreas.
146 I didn’t even know what a pancreas was.
147 The doctors told me this was almost certainly a type of cancer that is incurable, and that
148 I should expect to live no longer than three to six months.
149 My doctor advised me to go home and get my affairs in order, which is doctor’s code
150 for prepare to die.
151 It means to try to tell your kids everything you thought you’d have the next 10 years
152 to tell them in just a few months.
153 It means to make sure everything is buttoned up so that it will be as easy as possible
154 for your family.
155 It means to say your goodbyes.
156 I lived with that diagnosis all day.
157 Later that evening I had a biopsy, where they stuck an endoscope down my throat, through
158 my stomach and into my intestines, put a needle into my pancreas and got a few cells from
159 the tumor.
160 I was sedated, but my wife, who was there, told me that when they viewed the cells under
161 a microscope the doctors started crying because it turned out to be a very rare form of pancreatic
162 cancer that is curable with surgery.
163 I had the surgery and I’m fine now.
164 This was the closest I’ve been to facing death, and I hope it’s the closest I get
165 for a few more decades.
166 Having lived through it, I can now say this to you with a bit more certainty than when
167 death was a useful but purely intellectual concept:
168 No one wants to die.
169 Even people who want to go to heaven don’t want to die to get there.
170 And yet death is the destination we all share.
171 No one has ever escaped it.
172 And that is as it should be, because Death is very
173 likely the single best invention of Life.
174 It is Life’s change agent.
175 It clears out the old to make way for the new.
176 Right now the new is you, but someday not too long from now, you will gradually become
177 the old and be cleared away.
178 Sorry to be so dramatic, but it is quite true.
179 Your time is limited, so don’t waste it living someone else’s life.
180 Don’t be trapped by dogma — which is living with the results of other people’s thinking.
181 Don’t let the noise of others’ opinions drown out your own inner voice.
182 And most important, have the courage to follow your heart and intuition.
183 They somehow already know what you truly want to become.
184 Everything else is secondary.
185 When I was young, there was an amazing publication called The Whole Earth Catalog, which was
186 one of the bibles of my generation.
187 It was created by a fellow named Stewart Brand not far from here in Menlo Park, and he brought
188 it to life with his poetic touch.
189 This was in the late 1960s, before personal computers and desktop publishing, so it was
190 all made with typewriters, scissors and Polaroid cameras.
191 It was sort of like Google in paperback form, 35 years before Google came along: It was
192 idealistic, and overflowing with neat tools and great notions.
193 Stewart and his team put out several issues of The Whole Earth Catalog, and then when
194 it had run its course, they put out a final issue.
195 It was the mid-1970s, and I was your age.
196 On the back cover of their final issue was a photograph of an early morning country road,
197 the kind you might find yourself hitchhiking on if you were so adventurous.
198 Beneath it were the words: “Stay Hungry.
199 Stay Foolish.”
200 It was their farewell message as they signed off.
201 Stay Hungry.
202 Stay Foolish.
203 And I have always wished that for myself.
204 And now, as you graduate to begin anew, I wish that for you.
205 Stay Hungry.
206 Stay Foolish.
207 Thank you all very much.

************************************************************************************

google translate API
- - - - - - - - - - - - - - - - -  translated - - - - - - - - - - - - - - - - - - -


1 最高の大学の1つからのあなたの開始で今日あなたと一緒にいることを光栄に思います
2 世界中。
3 私は大学を卒業したことがありません。
4 正直なところ、これは私が大学を卒業するのにこれまでで最も近いものです。
5 今日は私の人生の3つの話をしたいと思います。
6 それでおしまい。
7 大きな問題ではない。
8 たった3つの物語。
9 私は最初の6か月後にリード大学を中退しましたが、その後はドロップインとして滞在しました。
10 私が本当にやめる前に、さらに18ヶ月かそこらの間。
11 それで、なぜ私は中退したのですか?
12 それは私が生まれる前に始まりました。
13 私の実の母親は若い未婚の大学大学院生でした、そして彼女は私を置くことに決めました
14 採用に向けて。
15 彼女は私が大卒者に採用されるべきだと強く感じていたので、すべてがすべてでした
16 私が出生時に弁護士と彼の妻に養子縁組されるように設定しました。
17 私が飛び出したとき、彼らは土壇場で彼らが本当に欲しかったと決めたことを除いて
18 女の子。
19 それで、順番待ちリストに載っていた私の両親は、真夜中に次のように尋ねる電話を受けました。
20 「思いがけない男の子がいます。彼が欲しいですか?」
21 彼らは言った:「もちろん。」
22 私の実の母は後に私の母が大学を卒業したことがないことを知りました
23 父は高校を卒業したことがなかった。
24 彼女は最終的な養子縁組の書類に署名することを拒否した。
25 私の両親がいつか行くと約束したとき、彼女はほんの数ヶ月後に容赦しました
26 大学へ。
27 そして17年後、私は大学に行きました。
28 しかし、私はスタンフォードとほぼ同じくらい高価な大学と私の労働者階級のすべてを素朴に選びました
29 両親の貯金は私の大学の授業料に費やされていました。
30 6か月後、その価値はわかりませんでした。
31 自分の人生で何をしたいのか、大学がどうなるのかわからなかった
32 私がそれを理解するのを手伝ってください。
33 そしてここで私は両親が一生救ったお金のすべてを費やしていました。
34 それで、私は脱落して、それがすべてうまくいくと信じることに決めました。
35 当時はかなり怖かったですが、振り返ってみると、これまでで最高の決断の1つでした。
36 製。
37 脱落した瞬間、興味のない必要なクラスの受講をやめることができました
38 私、そして面白そうなものに立ち寄り始めます。
39 すべてがロマンチックというわけではありませんでした。
40 寮の部屋がなかったので、友達の部屋の床で寝て帰りました
41 食べ物を買うための5セントの預金用のコーラボトル、そして私は7マイルを横切って歩くでしょう
42 毎週日曜日の夜、ハレクリシュナ寺院で週に1回おいしい食事をとる町。
43 私はそれが好きだった。
44 そして、好奇心と直感に従って私が偶然見つけたものの多くは、
45 後で貴重です。
46 一例を挙げましょう。
47 当時のリード大学は、おそらく国内で最高の書道指導を提供していました。
48 キャンパス全体で、すべてのポスター、すべての引き出しのすべてのラベルが美しく手元にありました
49 書道。
50 脱落して通常の授業を受ける必要がなかったので、受講することにしました
51 これを行う方法を学ぶための書道のクラス。
52 セリフ書体とサンセリフ書体について、間のスペースの量を変えることについて学びました
53 さまざまな文字の組み合わせ、優れたタイポグラフィを優れたものにする理由について。
54 それは美しく、歴史的で、芸術的に微妙でした
55 科学では捉えられない方法で、私はそれが魅力的だと感じました。
56 これのどれも私の人生で実用的なアプリケーションの希望さえ持っていませんでした。
57 しかし、10年後、最初のMacintoshコンピュータを設計していたとき、すべてが実現しました。
58 私に戻って。
59 そして、それをすべてMacに組み込みました。
60 それは美しいタイポグラフィを備えた最初のコンピューターでした。
61 もし私が大学でその単一のコースに立ち寄ったことがなかったら、Macには複数のコースがなかっただろう。
62 書体または比例間隔のフォント。
63 また、WindowsがMacをコピーしたばかりなので、パソコンにはない可能性があります。
64 それら。
65 一度も脱落していなかったら、この書道の授業に立ち寄ったことはなかっただろうし、
66 パーソナルコンピュータは、彼らが持っているような素晴らしいタイポグラフィを持っていないかもしれま せん。
67 もちろん、大学時代は楽しみにして点をつなぐことはできませんでした。
68 しかし、10年後の振り返りは非常に明確でした。
69 繰り返しますが、楽しみにして点をつなぐことはできません。見ているだけで接続できます
70 後方。
71 したがって、ドットが将来何らかの形で接続されることを信頼する必要があります。
72 あなたは何かを信頼しなければなりません—あなたの腸、運命、人生、カルマ、何でも。
73 このアプローチは私をがっかりさせることはなく、私の人生にすべての違いをもたらしました。
74 私の2番目の話は愛と喪失についてです。
75 私は幸運でした—人生の早い段階で自分が好きなことを見つけました。
76 ウォズと私は20歳のときに両親のガレージでアップルを始めました。
77 私たちは一生懸命働き、10年でAppleはガレージで私たち2人だけから成長しました
78 4,000人以上の従業員を抱える20億ドルの企業になりました。
79 最高の作品であるMacintoshを1年前にリリースしたばかりで、
80 30歳になりました。
81 そして、私は解雇されました。
82 始めた会社からどうやって解雇されますか?
83 さて、Appleが成長するにつれて、私たちは会社を経営するのに非常に才能があると思った人を雇いました
84 私と一緒に、そして最初の1年かそこらの間、物事はうまくいきました。
85 しかし、その後、私たちの将来のビジョンは発散し始め、最終的に私たちは脱落しました。
86 私たちがそうしたとき、私たちの取締役会は彼の味方でした。
87 それで30歳で私は外出しました。
88 そして非常に公に。
89 私の大人の人生の焦点であったものはなくなり、それは壊滅的でした。
90 数ヶ月間、どうしたらいいのか本当にわかりませんでした。
91 私は前世代の起業家を失望させたと感じました—私は落ちました
92 それが私に渡されていたときのバトン。
93 私はデビッド・パッカードとボブ・ノイスに会い、ひどく失敗したことを謝罪しようとしました。
94 私は非常に大衆的な失敗でした、そして私は谷から逃げることさえ考えました。
95 しかし、何かがゆっくりと私に夜明けを始めました—私はまだ自分がしたことを愛していました。
96 Appleでの出来事の順番は、その1ビットを変えていませんでした。
97 私は拒絶されましたが、それでも私は恋をしていました。
98 そして、最初からやり直すことにしました。
99 その時は見ませんでしたが、Appleから解雇されたのが最高だったことがわかりました
100 私に起こったかもしれないこと。
101 成功することの重さは、再び初心者であることの軽さに置き換えられました、
102 すべてについて確信が持てない。
103 それは私が私の人生で最も創造的な期間の1つに入るのを自由にしました。
104 次の5年間で、私はNeXTという名前の会社、Pixarという名前の別の会社を始めました。
105 私の妻になる素晴らしい女性と恋に落ちました。
106 ピクサーはさらに、世界初のコンピューターアニメーション長編映画「トイストーリー」を作成しました。
107 そして今、世界で最も成功したアニメーションスタジオです。
108 驚くべき出来事の中で、AppleはNeXTを購入し、私はAppleに戻り、テクノロジーは
109 NeXTで開発したのは、Appleの現在のルネッサンスの中心です。
110 そして、ローリーンと私には素晴らしい家族がいます。
111 私がAppleから解雇されていなかったら、これは何も起こらなかっただろうと確信しています。
112 それはひどい味の薬でした、しかし私は患者がそれを必要としていたと思います。
113 時々人生はレンガで頭の中であなたを襲います。
114 信仰を失ってはいけません。
115 私を動かし続けた唯一のことは、自分がしたことを愛したことだと確信しています。
116 好きなものを見つける必要があります。
117 そして、それはあなたの恋人にとってもあなたの仕事にも当てはまります。
118 あなたの仕事はあなたの人生の大部分を占めるでしょう、そして本当に満足する唯一の方法
119 あなたが素晴らしい仕事だと信じていることをすることです。
120 そして、素晴らしい仕事をする唯一の方法は、あなたがしていることを愛することです。
121 まだ見つけていない場合は、探し続けてください。
122 落ち着かないで。
123 心のすべての事柄と同様に、あなたはそれをいつ見つけるかを知るでしょう。
124 そして、他の素晴らしい関係のように、それは年が経つにつれてますます良くなります。
125 だからあなたがそれを見つけるまで探し続けてください。
126 落ち着かないで。
127 私の3番目の話は死についてです。
128 私が17歳のとき、次のような引用を読みました。
129 あなたの最後の、いつかあなたは間違いなく正しいでしょう。」
130 それは私に印象を与えました、そしてそれ以来、私は過去33年間、
131 毎朝鏡に映って、自分に問いかけました。「今日が私の人生の最後の日だったら、
132 今日やろうとしていることをやりたいの?」
133 そして、答えが何日も続けて「いいえ」であったときはいつでも、私は私が必要であることを知っています
134 何かを変えるために。
135 私がすぐに死ぬことを思い出すことは、私が今まで出会った中で最も重要なツールです
136 私が人生で大きな選択をするのを助けるために。
137 なぜなら、ほとんどすべて—すべての外部の期待、すべてのプライド、すべての恥ずかしさへの恐れ
138 または失敗—これらのものは死に直面してただ落ちて、何であるかだけを残します
139 本当に重要です。
140 あなたが死ぬことを覚えていることは、思考の罠を避けるために私が知っている最良の方法です
141 失うものがあります。
142 あなたはすでに裸です。
143 あなたの心に従わない理由はありません。
144 約1年前に私は癌と診断されました。
145 午前7時30分にスキャンを行ったところ、膵臓に腫瘍がはっきりと見られました。
146 私は膵臓が何であるかさえ知りませんでした。
147 医者は、これはほぼ間違いなく不治の癌の一種であり、
148 私は3ヶ月から6ヶ月以内に生きることを期待すべきです。
149 私の医者は私に家に帰って私の事柄を整理するようにアドバイスしました、それは医者のコードです
150 死ぬ準備をするために。
151 これは、今後10年間であると思っていたすべてのことを子供に伝えようとすることを意味します
152 ほんの数ヶ月で彼らに伝えるために。
153 それはそれができるだけ簡単になるようにすべてがボタンで留められていることを確認することを意味します
154 あなたの家族のために。
155 それはあなたの別れを言うことを意味します。
156 私はその診断で一日中生きました。
157 その夜遅くに私は生検を受けました、そこで彼らは私の喉に内視鏡を突き刺しました
158 私の胃と腸に針を刺し、膵臓からいくつかの細胞を取り出しました
159 腫瘍。
160 私は鎮静されましたが、そこにいた妻は、彼らが下の細胞を見たときに私に言った
161 非常にまれな形態の膵臓であることが判明したため、医師が泣き始めた顕微鏡
162 手術で治癒するがん。
163 私は手術を受けましたが、今は元気です。
164 これは私が死に直面するのに最も近いものでした、そしてそれが私が得る最も近いものであることを願っています
165 さらに数十年の間。
166 それを生き抜いた今、私はあなたにこれをいつよりも少し確実に言うことができます
167 死は有用でしたが、純粋に知的概念でした。
168 誰も死にたくない。
169 天国に行きたい人でさえ、そこに行くために死にたくないのです。
170 それでも、死は私たち全員が共有する目的地です。
171 誰もそれを逃れたことがありません。
172 そして、それはあるべき姿です。なぜなら、死は非常に
173 おそらく生命の唯一の最高の発明。
174 それは人生の変化のエージェントです。
175 それは新しいものに道を譲るために古いものを一掃します。
176 今のところ新しいのはあなたですが、いつか今からそれほど長くはないので、あなたは徐々に
177 古いものと片付けられます。
178 劇的に申し訳ありませんが、それはかなり真実です。
179 あなたの時間は限られているので、他人の人生を生きて無駄にしないでください。
180 他の人の思考の結果とともに生きている教義にとらわれないでください。
181 他人の意見のノイズがあなた自身の内なる声をかき消してはいけません。
182 そして最も重要なことは、あなたの心と直感に従う勇気を持っていることです。
183 彼らはどういうわけかあなたが本当になりたいものをすでに知っています。
184 他のすべては二次的です。
185 私が若い頃、全地球カタログと呼ばれる素晴らしい出版物がありました。
186 私の世代の聖書の一つ。
187 ここメンロパークからそう遠くないところにあるスチュアートブランドという名前の仲間によって作成され、彼は持ってきました
188 彼の詩的なタッチでそれを生き生きとさせます。
189 これは1960年代後半、パソコンやデスクトップパブリッシングの前だったので、
190 すべてタイプライター、はさみ、ポラロイドカメラで作られています。
191 それは、グーグルが登場する35年前のペーパーバック形式のグーグルのようなものでした。
192 理想主義的で、きちんとしたツールと素晴らしい概念で溢れています。
193 スチュワートと彼のチームは、全地球カタログのいくつかの問題を出しました。
194 それはそのコースを実行しました、彼らは最終的な問題を出しました。
195 それは1970年代半ばで、私はあなたの年齢でした。
196 最終号の裏表紙には早朝の田舎道の写真がありましたが、
197 あなたがとても冒険的だったなら、あなたがヒッチハイクしていることに気付くかもしれない種類。
198 その下には、「お腹を空かせてください。
199 愚かでいなさい。"
200 彼らがサインオフしたとき、それは彼らの別れのメッセージでした。
201 空腹のまま。
202 愚かでいなさい。
203 そして、私はいつも自分自身のためにそれを望んでいました。
204 そして今、あなたが卒業して新たに始めるとき、私はあなたのためにそれを望みます。
205 空腹のまま。
206 愚かでいなさい。
207 どうもありがとうございました。

------------------------------------------------------------------------------------

google translate API
- - - - - - - - - - - - - - - - - - 2 lines to 1 - - - - - - - - - - - - - - - - - -


1 I am honored to be with you today at your commencement from one of the finest universities in the world.
2 I never graduated from college. Truth be told, this is the closest I’ve ever gotten to a college graduation.
3 Today I want to tell you three stories from my life. That’s it.
4 No big deal. Just three stories.
5 I dropped out of Reed College after the first 6 months, but then stayed around as a drop-in for another 18 months or so before I really quit.
6 So why did I drop out? It started before I was born.
7 My biological mother was a young, unwed college graduate student, and she decided to put me up for adoption.
8 She felt very strongly that I should be adopted by college graduates, so everything was all set for me to be adopted at birth by a lawyer and his wife.
9 Except that when I popped out they decided at the last minute that they really wanted a girl.
10 So my parents, who were on a waiting list, got a call in the middle of the night asking: “We have an unexpected baby boy; do you want him?”
11 They said: “Of course.” My biological mother later found out that my mother had never graduated from college
12 and that my father had never graduated from high school. She refused to sign the final adoption papers.
13 She only relented a few months later when my parents promised that I would someday go to college.14 And 17 years later I did go to college. But I naively chose a college that was almost as expensive as Stanford, and all of my working-class
15 parents’ savings were being spent on my college tuition. After six months, I couldn’t see the value in it.
16 I had no idea what I wanted to do with my life and no idea how college was going to help me figure it out.
17 And here I was spending all of the money my parents had saved their entire life. So I decided to drop out and trust that it would all work out OK.
18 It was pretty scary at the time, but looking back it was one of the best decisions I ever made.
19 The minute I dropped out I could stop taking the required classes that didn’t interest me, and begin dropping in on the ones that looked interesting.
20 It wasn’t all romantic. I didn’t have a dorm room, so I slept on the floor in friends’ rooms, I returned
21 Coke bottles for the 5¢ deposits to buy food with, and I would walk the 7 miles across town every Sunday night to get one good meal a week at the Hare Krishna temple.
22 I loved it. And much of what I stumbled into by following my curiosity and intuition turned out to be
23 priceless later on. Let me give you one example:
24 Reed College at that time offered perhaps the best calligraphy instruction in the country. Throughout the campus every poster, every label on every drawer, was beautifully hand
25 calligraphed. Because I had dropped out and didn’t have to take the normal classes, I decided to take
26 a calligraphy class to learn how to do this. I learned about serif and sans serif typefaces, about varying the amount of space between
27 different letter combinations, about what makes great typography great. It was beautiful, historical, artistically subtle
28 in a way that science can’t capture, and I found it fascinating. None of this had even a hope of any practical application in my life.
29 But 10 years later, when we were designing the first Macintosh computer, it all came back to me.
30 And we designed it all into the Mac. It was the first computer with beautiful typography.
31 If I had never dropped in on that single course in college, the Mac would have never had multiple typefaces or proportionally spaced fonts.
32 And since Windows just copied the Mac, it’s likely that no personal computer would have them.
33 If I had never dropped out, I would have never dropped in on this calligraphy class, and personal computers might not have the wonderful typography that they do.
34 Of course it was impossible to connect the dots looking forward when I was in college. But it was very, very clear looking backward 10 years later.
35 Again, you can’t connect the dots looking forward; you can only connect them looking backward.
36 So you have to trust that the dots will somehow connect in your future. You have to trust in something — your gut, destiny, life, karma, whatever.
37 This approach has never let me down, and it has made all the difference in my life. My second story is about love and loss.
38 I was lucky — I found what I loved to do early in life. Woz and I started Apple in my parents’ garage when I was 20.
39 We worked hard, and in 10 years Apple had grown from just the two of us in a garage into a $2 billion company with over 4,000 employees.
40 We had just released our finest creation — the Macintosh — a year earlier, and I had just turned 30.
41 And then I got fired. How can you get fired from a company you started?
42 Well, as Apple grew we hired someone who I thought was very talented to run the company with me, and for the first year or so things went well.
43 But then our visions of the future began to diverge and eventually we had a falling out. When we did, our Board of Directors sided with him.
44 So at 30 I was out. And very publicly out.
45 What had been the focus of my entire adult life was gone, and it was devastating. I really didn’t know what to do for a few months.
46 I felt that I had let the previous generation of entrepreneurs down — that I had dropped the baton as it was being passed to me.
47 I met with David Packard and Bob Noyce and tried to apologize for screwing up so badly. I was a very public failure, and I even thought about running away from the valley.
48 But something slowly began to dawn on me — I still loved what I did. The turn of events at Apple had not changed that one bit.
49 I had been rejected, but I was still in love. And so I decided to start over.
50 I didn’t see it then, but it turned out that getting fired from Apple was the best thing that could have ever happened to me.
51 The heaviness of being successful was replaced by the lightness of being a beginner again, less sure about everything.
52 It freed me to enter one of the most creative periods of my life. During the next five years, I started a company named NeXT, another company named Pixar, and
53 fell in love with an amazing woman who would become my wife. Pixar went on to create the world’s first computer animated feature film, Toy Story,
54 and is now the most successful animation studio in the world. In a remarkable turn of events, Apple bought NeXT, I returned to Apple, and the technology
55 we developed at NeXT is at the heart of Apple’s current renaissance. And Laurene and I have a wonderful family together.
56 I’m pretty sure none of this would have happened if I hadn’t been fired from Apple. It was awful tasting medicine, but I guess the patient needed it.
57 Sometimes life hits you in the head with a brick. Don’t lose faith.
58 I’m convinced that the only thing that kept me going was that I loved what I did. You’ve got to find what you love.
59 And that is as true for your work as it is for your lovers. Your work is going to fill a large part of your life, and the only way to be truly satisfied
60 is to do what you believe is great work. And the only way to do great work is to love what you do.
61 If you haven’t found it yet, keep looking. Don’t settle.
62 As with all matters of the heart, you’ll know when you find it. And, like any great relationship, it just gets better and better as the years roll on.
63 So keep looking until you find it. Don’t settle.
64 My third story is about death. When I was 17, I read a quote that went something like: “If you live each day as if it was
65 your last, someday you’ll most certainly be right.” It made an impression on me, and since then, for the past 33 years, I have looked in the
66 mirror every morning and asked myself: “If today were the last day of my life, would I want to do what I am about to do today?”
67 And whenever the answer has been “No” for too many days in a row, I know I need to change something.
68 Remembering that I’ll be dead soon is the most important tool I’ve ever encountered to help me make the big choices in life.
69 Because almost everything — all external expectations, all pride, all fear of embarrassment or failure — these things just fall away in the face of death, leaving only what is
70 truly important. Remembering that you are going to die is the best way I know to avoid the trap of thinking
71 you have something to lose. You are already naked.
72 There is no reason not to follow your heart. About a year ago I was diagnosed with cancer.
73 I had a scan at 7:30 in the morning, and it clearly showed a tumor on my pancreas. I didn’t even know what a pancreas was.
74 The doctors told me this was almost certainly a type of cancer that is incurable, and that I should expect to live no longer than three to six months.
75 My doctor advised me to go home and get my affairs in order, which is doctor’s code for prepare to die.
76 It means to try to tell your kids everything you thought you’d have the next 10 years to tell them in just a few months.
77 It means to make sure everything is buttoned up so that it will be as easy as possible for your family.
78 It means to say your goodbyes. I lived with that diagnosis all day.
79 Later that evening I had a biopsy, where they stuck an endoscope down my throat, through my stomach and into my intestines, put a needle into my pancreas and got a few cells from
80 the tumor. I was sedated, but my wife, who was there, told me that when they viewed the cells under
81 a microscope the doctors started crying because it turned out to be a very rare form of pancreatic cancer that is curable with surgery.
82 I had the surgery and I’m fine now. This was the closest I’ve been to facing death, and I hope it’s the closest I get
83 for a few more decades. Having lived through it, I can now say this to you with a bit more certainty than when
84 death was a useful but purely intellectual concept: No one wants to die.
85 Even people who want to go to heaven don’t want to die to get there. And yet death is the destination we all share.
86 No one has ever escaped it. And that is as it should be, because Death is very
87 likely the single best invention of Life. It is Life’s change agent.
88 It clears out the old to make way for the new. Right now the new is you, but someday not too long from now, you will gradually become
89 the old and be cleared away. Sorry to be so dramatic, but it is quite true.
90 Your time is limited, so don’t waste it living someone else’s life. Don’t be trapped by dogma — which is living with the results of other people’s thinking.
91 Don’t let the noise of others’ opinions drown out your own inner voice. And most important, have the courage to follow your heart and intuition.
92 They somehow already know what you truly want to become. Everything else is secondary.
93 When I was young, there was an amazing publication called The Whole Earth Catalog, which was one of the bibles of my generation.
94 It was created by a fellow named Stewart Brand not far from here in Menlo Park, and he brought it to life with his poetic touch.
95 This was in the late 1960s, before personal computers and desktop publishing, so it was all made with typewriters, scissors and Polaroid cameras.
96 It was sort of like Google in paperback form, 35 years before Google came along: It was idealistic, and overflowing with neat tools and great notions.
97 Stewart and his team put out several issues of The Whole Earth Catalog, and then when it had run its course, they put out a final issue.
98 It was the mid-1970s, and I was your age. On the back cover of their final issue was a photograph of an early morning country road,
99 the kind you might find yourself hitchhiking on if you were so adventurous. Beneath it were the words: “Stay Hungry.
100 Stay Foolish.” It was their farewell message as they signed off.
101 Stay Hungry. Stay Foolish.
102 And I have always wished that for myself. And now, as you graduate to begin anew, I wish that for you.
103 Stay Hungry. Stay Foolish.
104 Thank you all very much.

************************************************************************************

google translate API
- - - - - - - - - - - - - - - - - - translated - - - - - - - - - - - - - - - - - - -


1 本日、世界で最も優れた大学の1つからの卒業式でお会いできることを光栄に思います。
2 私は大学を卒業したことがありません。正直なところ、これは私が大学を卒業するのにこれまでで最も近いものです。
3 今日は私の人生の3つの話をしたいと思います。それでおしまい。
4 大きな問題ではない。たった3つの物語。
5 私は最初の6か月後にリード大学を中退しましたが、その後、実際に辞める前に、さらに18か月ほどドロップ インとして滞在しました。
6 それで、なぜ私は中退したのですか?それは私が生まれる前に始まりました。
7 私の実の母親は若い、未婚の大学大学院生でした、そして彼女は私を養子縁組に出すことに決めました。
8 彼女は私が大卒者に養子縁組されるべきだと強く感じていたので、私が出生時に弁護士と彼の妻に養子縁組されるようにすべてが準備されました。
9 私が飛び出したときを除いて、彼らは土壇場で彼らが本当に女の子が欲しいと決めました。
10 それで、順番待ちリストに載っていた私の両親は、真夜中に電話をかけて、次のように尋ねました。彼が欲 しいですか?」
11 彼らは言った:「もちろん。」私の実の母は後に私の母が大学を卒業したことがないことを知りました
12 父は高校を卒業したことがなかった。彼女は最終的な養子縁組の書類に署名することを拒否した。
13 私の両親がいつか大学に行くと約束したとき、彼女はほんの数ヶ月後に容赦しました。
14 そして17年後、私は大学に行きました。しかし、私はスタンフォードとほぼ同じくらい高価な大学と私の労 働者階級のすべてを素朴に選びました
15 両親の貯金は私の大学の授業料に費やされていました。6か月後、その価値はわかりませんでした。
16 私は自分の人生で何をしたいのか、そして大学がそれを理解するのをどのように助けてくれるのか分かりま せんでした。
17 そしてここで私は両親が一生救ったお金のすべてを費やしていました。それで、私は脱落して、それがすべ てうまくいくと信じることに決めました。
18 当時はかなり怖かったですが、振り返ってみると、これまでで最高の決断でした。
19 脱落した瞬間、興味のない必要なクラスを受講するのをやめ、面白そうなクラスに立ち寄り始めることがで きました。
20 すべてがロマンチックというわけではありませんでした。寮の部屋がなかったので、友達の部屋の床で寝て 帰りました
21 食べ物を買うための5セントの預金用のコーラボトル。私は毎週日曜日の夜に町を7マイル歩いて、ハレクリ シュナ寺院で週に1回おいしい食事を取りました。
22 私はそれが好きだった。そして、好奇心と直感に従って私が偶然見つけたものの多くは、
23 後で貴重です。一例を挙げましょう。
24 当時のリード大学は、おそらく国内で最高の書道指導を提供していました。キャンパス全体で、すべてのポ スター、すべての引き出しのすべてのラベルが美しく手元にありました
25 書道。脱落して通常の授業を受ける必要がなかったので、受講することにしました
26 これを行う方法を学ぶための書道のクラス。セリフ書体とサンセリフ書体について、間のスペースの量を変 えることについて学びました
27 さまざまな文字の組み合わせ、優れたタイポグラフィを優れたものにする理由について。それは美しく、歴 史的で、芸術的に微妙でした
28 科学では捉えられない方法で、私はそれが魅力的だと感じました。これのどれも私の人生で実用的なアプリ ケーションの希望さえ持っていませんでした。
29 しかし、10年後、私たちが最初のMacintoshコンピュータを設計していたとき、それはすべて私に戻ってきました。
30 そして、それをすべてMacに組み込みました。それは美しいタイポグラフィを備えた最初のコンピューターでした。
31 私が大学でその単一のコースに立ち寄ったことがなければ、Macには複数の書体や比例した間隔のフォントがなかったでしょう。
32 また、WindowsはMacをコピーしたばかりなので、パソコンにはMacがない可能性があります。
33 一度も脱落していなかったら、この書道の授業に立ち寄ることはなかったでしょうし、パソコンには素晴ら しいタイポグラフィがないかもしれません。
34 もちろん、大学時代は楽しみにして点をつなぐことはできませんでした。しかし、10年後の振り返りは非常 に明確でした。
35 繰り返しますが、楽しみにして点をつなぐことはできません。後ろ向きでしか接続できません。
36 したがって、ドットが将来何らかの形で接続されることを信頼する必要があります。あなたは何かを信頼し なければなりません—あなたの腸、運命、人生、カルマ、何でも。
37 このアプローチは私をがっかりさせることはなく、私の人生にすべての違いをもたらしました。私の2番目の話は愛と喪失についてです。
38 私は幸運でした—人生の早い段階で自分が好きなことを見つけました。ウォズと私は20歳のときに両親のガレージでアップルを始めました。
39 私たちは一生懸命働き、10年でAppleはガレージにいる2人だけから、4,000人以上の従業員を抱える20億ドルの会社に成長しました。
40 私たちは1年前に最高の作品であるMacintoshをリリースしたばかりで、ちょうど30歳になりました。
41 そして、私は解雇されました。始めた会社からどうやって解雇されますか?
42 さて、Appleが成長するにつれて、私は私と一緒に会社を経営するのに非常に才能があると思う人を雇いました、そして最初の1年かそこらの間はうまくいきました。
43 しかし、その後、私たちの将来のビジョンは発散し始め、最終的に私たちは脱落しました。私たちがそうし たとき、私たちの取締役会は彼の味方でした。
44 それで30歳で私は外出しました。そして非常に公に。
45 私の大人の人生の焦点であったものはなくなり、それは壊滅的でした。数ヶ月間、どうしたらいいのか本当 にわかりませんでした。
46 私は前世代の起業家を失望させたと感じました—それが私に渡されたときに私はバトンを落としたのです。
47 私はデビッド・パッカードとボブ・ノイスに会い、ひどく失敗したことを謝罪しようとしました。私は非常 に大衆的な失敗でした、そして私は谷から逃げることさえ考えました。
48 しかし、何かがゆっくりと私に夜明けを始めました—私はまだ自分がしたことを愛していました。Appleでの 出来事の順番は、その1ビットを変えていませんでした。
49 私は拒絶されましたが、それでも私は恋をしていました。そして、最初からやり直すことにしました。
50 その時は見ていませんでしたが、Appleから解雇されたのは、これまでに起こったことのない最高のことでした。
51 成功することの重さは、すべてについて確信が持てない、再び初心者であることの軽さに置き換えられまし た。
52 それは私が私の人生で最も創造的な期間の1つに入るのを自由にしました。次の5年間で、私はNeXTという名 前の会社、Pixarという名前の別の会社を始めました。
53 私の妻になる素晴らしい女性と恋に落ちました。ピクサーはさらに、世界初のコンピューターアニメーショ ン長編映画「トイストーリー」を作成しました。
54 そして今、世界で最も成功したアニメーションスタジオです。驚くべき出来事の中で、AppleはNeXTを購入し、私はAppleに戻り、テクノロジーは
55 NeXTで開発したのは、Appleの現在のルネッサンスの中心です。そして、ローリーンと私には素晴らしい家族がいます。
56 私がAppleから解雇されていなかったら、これは何も起こらなかっただろうと確信しています。それはひどい味の薬でした、しかし私は患者がそれを必要としていたと思います。
57 時々人生はレンガで頭の中であなたを襲います。信仰を失ってはいけません。
58 私を動かし続けた唯一のことは、自分がしたことを愛したことだと確信しています。好きなものを見つける 必要があります。
59 そして、それはあなたの恋人にとってもあなたの仕事にも当てはまります。あなたの仕事はあなたの人生の 大部分を占めるでしょう、そして本当に満足する唯一の方法
60 あなたが素晴らしい仕事だと信じていることをすることです。そして、素晴らしい仕事をする唯一の方法は 、あなたがしていることを愛することです。
61 まだ見つけていない場合は、探し続けてください。落ち着かないで。
62 心のすべての事柄と同様に、あなたはそれをいつ見つけるかを知るでしょう。そして、他の素晴らしい関係 のように、それは年が経つにつれてますます良くなります。
63 だからあなたがそれを見つけるまで探し続けてください。落ち着かないで。
64 私の3番目の話は死についてです。私が17歳のとき、次のような引用を読みました。
65 あなたの最後の、いつかあなたは間違いなく正しいでしょう。」それは私に印象を与えました、そしてそれ 以来、私は過去33年間、
66 毎朝鏡に映って、「今日が私の人生の最後の日だったら、今日やろうとしていることをやりたいですか?」 と自問しました。
67 そして、答えが何日も続けて「いいえ」であったときはいつでも、私は何かを変える必要があることを知っ ています。
68 私がすぐに死ぬことを思い出すことは、私が人生で大きな選択をするのを助けるために私が今まで出会った 中で最も重要なツールです。
69 ほとんどすべて-すべての外部の期待、すべてのプライド、すべての恥ずかしさや失敗の恐れ-これらのもの は死に直面してただ消え去り、
70 本当に重要です。あなたが死ぬことを覚えていることは、思考の罠を避けるために私が知っている最良の方 法です
71 失うものがあります。あなたはすでに裸です。
72 あなたの心に従わない理由はありません。約1年前に私は癌と診断されました。
73 午前7時30分にスキャンを行ったところ、膵臓に腫瘍がはっきりと見られました。私は膵臓が何であるかさえ知りませんでした。
74 医者は、これはほぼ間違いなく不治の癌の一種であり、私は3〜6か月以内に生きることを期待すべきだと私 に言いました。
75 私の医者は私に家に帰って私の事柄を整理するようにアドバイスしました。それは死ぬ準備をするための医 者のコードです。
76 これは、子供たちに、今後10年間で、ほんの数か月で伝えることができると思っていることをすべて伝えよ うとすることを意味します。
77 それはあなたの家族にとってそれができるだけ簡単になるようにすべてがボタンで留められていることを確 認することを意味します。
78 それはあなたの別れを言うことを意味します。私はその診断で一日中生きました。
79 その夜遅く、私は生検を受けました。そこでは、内視鏡を喉に突き刺し、胃から腸に突き刺し、膵臓に針を 刺し、そこからいくつかの細胞を採取しました。
80 腫瘍。私は鎮静されましたが、そこにいた妻は、彼らが下の細胞を見たときに私に言った
81 顕微鏡は、手術で治癒する非常にまれな形態の膵臓癌であることが判明したため、医師が泣き始めました。
82 私は手術を受けましたが、今は元気です。これは私が死に直面するのに最も近いものでした、そしてそれが 私が得る最も近いものであることを願っています
83 さらに数十年の間。それを生き抜いた今、私はあなたにこれをいつよりも少し確実に言うことができます
84 死は有用でしたが、純粋に知的概念でした。誰も死にたくないのです。
85 天国に行きたい人でさえ、そこに行くために死にたくないのです。それでも、死は私たち全員が共有する目 的地です。
86 誰もそれを逃れたことがありません。そして、それはあるべき姿です。なぜなら、死は非常に
87 おそらく生命の唯一の最高の発明。それは人生の変化のエージェントです。
88 それは新しいものに道を譲るために古いものを一掃します。今のところ新しいのはあなたですが、いつか今 からそれほど長くはないので、あなたは徐々に
89 古いものと片付けられます。劇的に申し訳ありませんが、それはかなり真実です。
90 あなたの時間は限られているので、他人の人生を生きて無駄にしないでください。他の人の思考の結果とと もに生きている教義にとらわれないでください。
91 他人の意見のノイズがあなた自身の内なる声をかき消してはいけません。そして最も重要なことは、あなた の心と直感に従う勇気を持っていることです。
92 彼らはどういうわけかあなたが本当になりたいものをすでに知っています。他のすべては二次的です。
93 私が若い頃、私の世代の聖書の1つである全地球カタログと呼ばれる素晴らしい出版物がありました。
94 ここメンロパークからそう遠くないところにあるスチュアート・ブランドという名前の仲間によって作成さ れ、彼は詩的なタッチでそれを生き生きとさせました。
95 これは1960年代後半、パソコンやデスクトップパブリッシングの前だったので、すべてタイプライター、は さみ、ポラロイドカメラで作られていました。
96 それは、グーグルが登場する35年前のペーパーバック形式のグーグルのようなものでした。それは理想主義 的で、きちんとしたツールと素晴らしい概念で溢れていました。
97 スチュワートと彼のチームは、全地球カタログのいくつかの号を発行し、それがコースを実行したときに、 最終号を発行しました。
98 それは1970年代半ばで、私はあなたの年齢でした。最終号の裏表紙には早朝の田舎道の写真がありましたが 、
99 あなたがとても冒険的だったなら、あなたがヒッチハイクしていることに気付くかもしれない種類。その下 には、「お腹を空かせてください。
100 愚かでいなさい。"彼らがサインオフしたとき、それは彼らの別れのメッセージでした。
101 空腹のまま。愚かでいなさい。
102 そして、私はいつも自分自身のためにそれを望んでいました。そして今、あなたが卒業して新たに始めるとき、私はあなたのためにそれを望みます。
103 空腹のまま。愚かでいなさい。
104 どうもありがとうございました。


************************************************************************************

Thank you.

[Program finished]

0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up