1. 程式人生 > >2018-12-3-今日總結

2018-12-3-今日總結

gre 新的 pop logs 存在 rar 發現 ges The

技術分享圖片

1. 今日概述

星期一, 2018年12月3日
發現自己存在一個缺點,就是規劃與執行之間存在代溝,簡言之,就是執行力不行。沒有分清主次關系,有一種抓住了芝麻的感覺,西瓜並沒有。
技術分享圖片

2. 英語計劃

2.1 學術詞匯

resolve
address
abstract
assign
aggregate
isolate
socialize
dissociate
associate
activate

2.2 聽力詞匯

population
have trouble with
assignment
due
hold
library
borrow
spend time on
medical
compassionate

properly
as long as
reference
submit
journal
article
in the list
expect
deal with
methodology
relevant
essential
bother
graph
bar
photocopy
indicate
disturb
quieter
proximity
refer to
property
fix
tenant
attractive
neighborhood

2.3 口語練習

【英語口語練習系列-C26-廣告-人際關系-辨別物體-如果】

3. 學術科研

文獻1:Corrosion damage tolerance methodology for C/KC-135 fuselage structure

文獻1主要講解了腐蝕損傷容限方法
文獻2:Corrosion Sensor Development for Condition-Based Maintenance of Aircraft
文獻2主要講解了腐蝕傳感器的發展,這有利於腐蝕損傷的狀態監測。

4. 編程能力

4.1 面向對象

python中一切皆對象

x = 28
type(x)

y = 28.9
type(y)

def f(x):
    return x + 1
type(f)

import math
type(math)

ls = [1, 2, 3, 4]
type(ls)

綜上:數字、浮點數、函數、模塊、列表均屬對象

4.2 文件操作

文件的作用是儲存信息與信息交互的作用,文件分為文本文件和二進制文件。Python中內置了文件對象,采用open()函數打開,其結果為返回一個可以叠代的文件對象

5. 有趣兒

5.1 日常生活

技術分享圖片

5.2 閑聊

好像自己要開始新的計劃了,規範自己的學習任務。
beauty images

5.3 HTML和css學習網站

https://developer.mozilla.org/en-US/docs/Web/HTML/Element/picture

6. 反思與總結

經過這段時間的日記記錄,主要有一下幾點:

  1. 需要抽空翻看自己的日常總結一次提醒自己需要改善自己
  2. 需要認清自己的錯誤之處
  3. 需要及時改進自己的日常生活
  4. 需要花更少的時間,學習更多的新知識

2018-12-3-今日總結