ChatGPT 是对个人特别是非母语者的巨大生产力提高

ChatGPT 已经非常出名了,我是在去年 11 月开始使用的,用了快 10 个月,真的感觉到在日常生活中,对于非母语者,ChatGPT提供了巨大的帮助。它不仅能够帮助他们更好地理解和掌握语言,还能解决实际生活中的沟通问题。甚至工作中它也能很好的解决你的问题。

这里记录一下个人体会。

写文书

之前我写论文的时候,总结过自己的写论文方法论,毕业工作总结

(1) 如果英语写不出,就写中文 基本上我发现自己经常在写英文的时候卡壳,这个时候其实最好的方法就是用中文代替,快速表达出来。 甚至这个时候用谷歌翻译也可以,因为你需要表达出你的观点而不是修改你的表达,这个在你的论文的审读阶段你可以自己修改但是不需要一开始就很好。每次都吹毛求疵的追求表达其实是舍本逐末,你需要的是集中在突破上。

(2) 如果你发现你用中文都表达不出来,停下来,看你的论文提纲。 很多时候其实你发现你不知道你怎么的论文怎么写其实是你的逻辑体系问题,你失去了表达的逻辑,你不知道怎么顺利地把你的论文要点展现出来,所以第一时间你需要去复习你的提纲。这个时候就是围绕着你的提纲要点硬着头皮写下去。把你想表达的东西都表达出来吧。类似头脑风暴一样。提纲保证了你的逻辑不会差太多,头脑风暴让你快速推进。然后修改的时候再逐步完善。

(3) 如果你连提纲也写不出来,请多看看论文

ChatGPT 解决的就是 “这个时候就是围绕着你的提纲要点硬着头皮写下去。把你想表达的东西都表达出来吧” 的问题。 你只要自己列出提纲,给出简单的例子,甚至是关键词,含有语病的句子,ChatGPT 都能给你写下去。

现在主要组织你写文书的核心是你的提纲,或者说你的内容是什么。

你需要思考需要表达的 topic, 然后列出提纲,输入 ChatGPT,迭代提高!

所以,现在写作质量直线提高。

写 Code

这里我就不提平时用的 Amazon CodeWhisperer 或者 GitHub Copilot 了。他们已经融入了生产力元素了,我说个最近的工作小例子。

最近和 BIE 的人合作,他们需要 Excel report,我就生成 Excel report,其中有个功能,需要不断产生 monthly percentage change,而我并不熟悉 Excel 公式。所以我就尝试自己总结了下需求,然后让 ChatGPT 生成 Excel 公式,

create excel formula to calculate percentage difference to a fixed cell and every 10 rows, change the fixed cell to the same column but 10 rows down.

ChatGPT 的答案

To calculate the percentage difference with respect to a fixed cell and then shift the fixed cell every 10 rows, you can use the INDIRECT() function in Excel along with the ROW() function.

Let’s assume you are working with Column A and you want to start your formula in cell B1.

  1. In cell B1, enter the following formula:
    =(A1 - INDIRECT("A"&INT((ROW(A1)-1)/10)*10+1)) / INDIRECT("A"&INT((ROW(A1)-1)/10)*10+1)
    
  2. Drag this formula down in Column B to fill the cells corresponding to the data in Column A.

Explanation:

  • The ROW() function gives the row number of the current cell.
  • INT((ROW(A1)-1)/10)*10+1 helps in deciding which row’s value in column A to use as the reference. It essentially rounds down to the nearest 10 and then adds 1 to get the first cell of every block of 10.
  • INDIRECT() function is used to reference a cell using its address in text format. We use it here to indirectly reference the fixed cell in each block of 10 rows.

The resulting formula will calculate the percentage difference of each cell in Column A with respect to the first cell of its respective block of 10 rows. After 10 rows, the reference will shift to the next block’s first cell.

完美解决。

总结

读书的时候,有句话叫做,科技是第一生产力。现在通过 ChatGPT 才更加深刻的认识到。真的非常有用,特别是如果写作水平捉急的非母语者, ChatGPT 是巨大的生产力提高!

Written on September 6, 2023