健康な肉体には健康な精神が宿る

健康な肉体には健康な精神が宿る。

という言葉がすごく好きで、勉強や遊びも大切だけれども、トレーニングを取り入れる事でもっと高みを目指していけると考えています。
トレーニングというモノは中途半端だと結果が出ないので、理想にも近づくことが出来ない。理想を追い求め辛くても諦めてしまいそうな自分に鞭を打つ事を教えてくれるモノだと思っています。

なので、トレーニングをこれからも欠かす事なく、健康な肉体と健康な精神で勉強に励んで行こうと思います。

Being physicalcy and mentally healthy makes you feel more powerful.

I love this phrase so much.It's natural that everyone needs to study and play,but I think that work out is more important because work out is a good way to aim higher.

You can't improve your body and also mental without an effort.If you are half-baked,workout let you see neither results nor your ideal.It teaches you how important it is to be patient.

So,I'm going to continue to study with physicalcy and mentally health. 

PS: 橋本さん、いつもいい刺激と影響をありがとうございます。

自分の理想に一歩でも近づくために

https://acthouse.net/

ここのサイトに書いてある記事について。


IT × 英語 × ビジネス → 最強 だと思っています。間違いありません。


この記事に書かれている人のように自由に働けるようなスキルを身につけるためにはどうしたらいいのか。IT × 海外留学 しないといけないのか?を自分の経験から分析したところ。


自分の場合、英語の習得に関して言えば、まだ完璧ではないですが、国内でも留学をしなくとも、海外の人達となんの抵抗もなく英語でのコミュニケーションが取れるまでに成長出来ました。


個人的には、留学は手段であって、絶対的に必要な条件ではないと思っています。確かに、留学にはメリットがあります。例えば、文化に触れられる、友人が増える、語学学習に浸かる事が出来る。もちろん、デメリットは金銭面。金銭面さえ克服してしまえば、すごく魅力的です。

ですが、その留学での語学学習でも熱量の違いで習得に差が出てしまうのも事実。のほほんと学んでいきたい人は、短期間集中型ではなく、長期で留学をした方がいい人だと思います。


努力すれば、国内でも英語圏出身の人達と友達になる事が出来ます。英語が学べます。


なので、今回も記事の人の様なスキルを身につける事も国内でも可能だと感じました。金銭面で迷っている暇があれば、遠くても自己投資に熱量を。

迷っているその時間を勉強に当てていこう、自己投資していこう。そのような IT × 英語 in Japan コミュニティー探しに時間をかけていこうと思います。無ければ、作ればいい。


とりあえず、東京なら何でも出来る気がします。

Something wrong with my tablet.

f:id:crown_666:20170605134911j:plain

予期していなかった再起動または、予期していなかったエラーの発生。Windowsインストールが進まない。Windowsインストールのために”OK”を押して、インストールを再度開始させてください。”OK”を押しても同じ画面が…。PCにも繋がらないから、壊れたのか?


My tablet says that ”The computer restarted unexpectedly or encountered an unexpectedly error.Windows installation cannot proceed.To install windows,click ”OK” to restart the computer,and then restart the installation.” over and over again even though I tried to do that thousand times... Huh? I got stucked into it completely!



def restart_com(self):

 print(”The computer restarted unexpectedly or encountered an unexpectedly error.Windows installation cannot proceed.To install windows,click ”OK” to restart the computer,and then restart the installation.)


if(OK==True):

 return self

else:

 return self

という感じですかね。昨日に引き続き謎が増えました。プログラムでギャグが言えたら面白そう、プログラミングもっと勉強しないと!


 

QRcode Generator 作ってみた。

<使用コード-Code>

import qrcode as qr
import tkinter as tk
import tkinter.filedialog as fd
from PIL import ImageTk
 
base = tk.Tk()
base.title("QRcode Generator")

input_area = tk.Frame(base, relief=tk.RAISED, bd = 2)
image_area = tk.Frame(base, relief=tk.SUNKEN, bd = 2)
 
encode_text = tk.StringVar()
entry = tk.Entry(input_area, textvariable=encode_text).pack(side=tk.LEFT)
qr_label = tk.Label(image_area)
 
def generate():
 qr_label.qr_img=qr.make(encode_text.get())
 img_width, img_height=qr_label.qr_img.size
 qr_label.tk_img=ImageTk.PhotoImage(qr_label.qr_img.size)
 qr_label.config(image=qr_label.tk_img,width=img_width,height=img_height)
 qr_label.pack()
 
encode_button=tk.Button(input_area, text="QRcode!", command=generate).pack(side=tk.LEFT)
input_area.pack(pady=5)
image_area.pack(padx=3, pady=1)
 
def save():
 filename=fd.asksaveasfilename(title = "Save it as", initialfile="qrcode.png")
 if filename and hasattr(qr_label, "qr_img"):
  qr_label.qr_img.save(filename)
 
def exit():
 base.destroy()
 
menubar=tk.Menu(base)
filemenu=tk.Menu(menubar)
menubar.add_cascade(label="File", menu=filemenu)
filemenu.add_command(label="save", command=save)
filemenu.add_separator()
filemenu.add_command(label="exit", command=exit)
base.config(menu=menubar)
base.mainloop()
 
<実行結果-Result>
AttributeError: module 'qrcode' has no attribute 'make'
 
import qrcode as qr の部分で qrcode 使えるようにして、--> qr_label.qr_img=qr.make(encode_text.get()) QRcode 作成しているはずなのだけれども、エラーで返ってくる。全く謎だ...。誰かこの謎が解ける人コメントください。おやすみなさい。。。
 
I'm so sure that I can make QRcode using "import qrcode as qr" ,but it returns fu*knig Errors many times.I have no idea what to do in order to solve this problem.Is there anyone can solve this problem?If yes,please leave your comment below.Good night... I'll absolutely tackle with this annoying thing tomorrow again.