首页 > 其他分享 >Reflective journal II

Reflective journal II

时间:2024-04-14 10:34:07浏览次数:21  
标签:her was journal writing II video Reflective my more

Reflective journal

  1. Firstly, I searched for a suitable stencil according to my narrative. I chose the green one because it’s a symbol of energy, corresponding to my friend’s characters. In fact, I felt comfortable at the sight of the vigorous stencil. Secondly, I put her photo in place. The photo was taken when she was demonstrating her views in front of classmates. It used indirect gaze, naturally showing her confident appearance. Long shot expressed the whole environment, revealing her bravery. Thirdly, I modified the size of words to make it more convenient to watch.
  2. I tended to use visual mode in my video. Compared with other modes, I thought visual shock was more emotive. It gave watchers intuitive feelings, allowing them to have a deep thought. It’s a pity that I didn’t use other modes this time in my video. But I will have a try if I get an opportunity. Integrating all modes is a great challenge. I may turn to Internet for help.
  3. Recording the explanation of my ppt was difficult for me. To be honest, I was not good at it. In the process, I always spoke in fractured English.
  4. Initially, I know the importance of speaking. Practice makes perfect. Besides, making a ppt needs patience. Anything should be done in chronological order. What’s more, I reckon insight is a kernel of a good presentation. During the process of thinking, I benefit a lot.
  5. The principal benefit of a video presentation in my mind is more vivid and impressive than traditional writing. Traditional writing spends more time comprehending meanings.
  6. This type of DMC is suitable for us to study because of its convenient communication. I enjoy the form of DMC writing. It makes writing more colorful.
  7. The usage of corpora is beneficial to my English writing.

标签:her,was,journal,writing,II,video,Reflective,my,more
From: https://www.cnblogs.com/345Q/p/18133833

相关文章

  • Reflective Journal Ⅱ
    (1) Theprocessofmakingavideopresentation:First,Ihaveaveryconvenientandpracticalscreenrecordingsoftware,EVscreenrecording.Secondly,IuseaPPTtemplateasabasetoaddalreadywrittentextcontentandsavedpictures.Then,Idesigna......
  • 代码随想录算法训练营第7天 | 哈希表 454.四数相加II 383. 赎金信 15. 三数之和 18.
    leetcode454.四数相加II题目454.四数相加II解题思路实现代码leetcode383.赎金信题目383.赎金信解题思路实现代码leetcode15.三数之和题目15.三数之和解题思路实现代码leetcode454.四数相加II题目18.四数之和解题思路实现代码......
  • Reflective Journal II
    ReflectiveJournalII(1)Firstly,IfoundapointpowertemplateonaPPTwebsite.ThenIputthewrittencompositionintothetemplate.What'smore,Ilookedforrelatedvideosonlinetoaddtothepointpower.(2)Icombinevideowithtextcontent.I......
  • 25天【代码随想录算法训练营34期】第七章 回溯算法part02 ( ● 216.组合总和III ● 17
    **216.组合总和III**classSolution:defcombinationSum3(self,k:int,n:int)->List[List[int]]:result=[]self.backtracking(k,n,1,[],result,n)returnresultdefbacktracking(self,k,n,startingIndex,path,result,......
  • Reflective Journal II
    1.theprogress:FirstIchoseapersonwhohasagreatimpactonme.Next,Imadeaoutlinecontainingseveralmainpointsiwanttoexpress.AfterthatIbegantoreminiscewhathappenedbetweenus.Thenistartedtomakemypptandaddsomeanimationef......
  • aspcore+jenkins+iis+window实现自动化部署
    一、准备工作1、Windowsserver2106操作系统2、Git 链接:https://pan.baidu.com/s/1s_3kKe5GWxJx1twggjk6Qg提取码:mayx3、IIS10确保已安装4、.netcoresdk6 https://download.visualstudio.microsoft.com/download/pr/9cac8293-8......
  • 高等代数(II)
    判别式引入对于一元二次方程\(ax^2+bx+c\)有判别式\(\Delta=b^2-4ac\)如果:\(\Delta=0\)有重根\(\Delta>0\)有两个不同实根\(\Delta<0\)有两个不同复根对于\(f(x)=a_nx^n+\dots+a_0\),不妨设\(a_n=1\),希望构造\(\Delta(a_n,\dots,a_0)\)满足:\(\Delta=0\Leftright......
  • CMC-IIS-WebService發布遇到的問題點
     启动网站调试提示HTTP错误403.14–ForbiddenWeb服务器被配置为不列出此目录的内容。解决方案第一种.在网站的配置文件里添加,第二種IIS設置(不使用)。<system.webServer><directoryBrowseenabled="true"/></system.webServer>  IIS中的一個異常:......
  • 北京大学2024春季高等数学A(II)试题及简评
    总的来说,难度适中,可能第一题会卡一下,是一个极坐标的反向换元,如果想不到硬做还是挺难的,非常遗憾,博主没有瞪眼法瞪出来,最后才想出来但是已经来不及了TAT。另外二、六题都是挖洞法,分别是Stokes和Green的挖洞法,只要细心发现被积函数和积分区域的奇点就可以。第三题的不能使用Gauss......
  • 算法训练营Day08-LeetCode344. 反转字符串 && 541. 反转字符串 II && 151. 反转字符串
    344.反转字符串题目链接:LeetCode344.反转字符串编写一个函数,其作用是将输入的字符串反转过来。输入字符串以字符数组s的形式给出。不要给另外的数组分配额外的空间,你必须原地修改输入数组、使用O(1)的额外空间解决这一问题思路:字符串首尾字符交换即可完成反转。定......