English writing practice 2025-5/11

After graduating from university and working for several years, I developed the mindset that a job should be related to one’s interests. People would want to quit the job because of because it becomes boring.

I have to write purchase proposal documents and review electrical power system design drawings at the start of my workday. Next, I communicate with other sections to schedule engineering processes and coordinate work interfaces with different departments. The most important is I forecast material requirements and prepare those items/components in the warehouse before the project starts. Recently, I am tired of my daily duties and have thought about studying for a degree in quantum information philosophy.

Although I would like to study abroad and get a PhD, I still have to ask my family for advice and receive their support. It is important that I have a consensus with my family.

類神經學習筆記(一)

 def km_to_mile(km):     return km / 1.609  # 真實轉換值 # 初始設定 km = float(input("請輸入公里數:")) true_mile = km_to_mile(km) factor = 0.5  #...