首页 > 其他分享 >Reflective Journal II

Reflective Journal II

时间:2024-04-19 21:57:52浏览次数:16  
标签:my Journal writing II video PPT Reflective presentation more

After I was asked to do a video presentation, I decided who I was going to introduce and what to cover in my presentation at first. Then I began to write the text in the PPT. During the process, I made a few adjustments to make my PPT more aesthetic. Finally, I did a presentation and recorded it.
In my video presentation, I posted a picture of my good friend. A picture can show one's appearance directly. It can also add more various elements to the PPT so that the audience can be attracted. Simultaneously, there are some challenges as well. For instance, my computer skills are poor. Therefore, it seems difficult for me to make a PPT. And I made it slowly. When I did the video presentation, I found I lacked fluency.
Through preparation of this video presentation, I have improved my writing skills and ability of expression to some extent. If we want to do a perfect video presentation, we must be well prepared. Compared with traditional writing, doing a video presentation can convey information in a more vivid way. It can leave a deeper impression on the audience.
Actually, I enjoy this form of DMC writing. I have never heard of it before. It is a novel and unique form for me. I think it will go a long way towards my English learning.

标签:my,Journal,writing,II,video,PPT,Reflective,presentation,more
From: https://www.cnblogs.com/kcy5734/p/18146827

相关文章

  • Reflective Journal ∥
    1.First,Ichoseasuitabletheme,madetheopeningandclosingpages,thenconfirmedthedirectory,anddecidedthecontentofeachPPTpage,whichincludesimages,animations,andvarioustextformatsthatneedtobeset.Aftercompletingit,Irereadi......
  • IIS 执行此操作时出错。 详细信息:web.config 错误,.net core项目
    一、IIS执行此操作时出错。详细信息:web.config错误,.netcore项目   运行报错错误信息提示的很明确:IISWebCore模块问题二、解析:IIS下报错,但是直接启动exe文件可以正常运行。 三、解决方案先安装IIS,然后安装Asp.netCore运行时。 更多:IIS10隐藏https......
  • IIS 部署WEBAPI
    ASP.NETCore不再是由IIS工作进程(w3wp.exe)托管,而是使用自托管Web服务器(Kestrel)运行,IIS则是作为反向代理的角色转发请求到Kestrel不同端口的ASP.NETCore程序中,随后就将接收到的请求推送至中间件管道中去,处理完你的请求和相关业务逻辑之后再将HTTP响应数据重新回写到IIS中,最终转达......
  • Quartus 配置 Nios® II EDS 开发
    安装Quartus按照我之前写的文章安装即可——Quartus入门安装Ubuntu18.04(Linux桌面用户直接跳过该步骤)在官方下载页面可以看到,我们需要安装Ubuntu18.04LTS并启用WSLWSL这里介绍WSL的安装方法,打算使用WSL2的读者请根据需要阅读本文中的参考链接使用管理......
  • 29天【代码随想录算法训练营34期】第七章 回溯算法part05 (491.递增子序列 * 46.全排
    491.递增子序列如果在最前面加一个uset=set(),这个就是给这一层一个usedset,很好用,不错classSolution:deffindSubsequences(self,nums:List[int])->List[List[int]]:result=[]self.backtracking(nums,[],result,0)returnresult......
  • Yii2-url路由配置
    Yii2-url路由配置没做任何处理的情况下,url地址如下http://www.yii2-basic.com/index.php?r=site/about去掉index.php和开启url美化/web/目录下添加.htaccess文件RewriteEngineon#如果是一个目录或者文件,就访问目录或文件RewriteCond%{REQUEST_FILENAME}!-d......
  • 928. 尽量减少恶意软件的传播 II【并查集加暴力删边判断】
    题意不是很清晰:1.比如对于graph=[[1,1,0],[1,1,1],[0,1,1]],initial=[0,1]来说,可以发现结点的链接情况是0-1-2,感染源结点是0和1,若是按之前题目的要求,移除0和1都不会减少最终感染个数,但是应该返回结点0,因为其index小。但是应用此题的条件,就一定要返回结点1,因为移除结点1之......
  • Yii2-安装smarty模板引擎及使用
    Yii2-安装smarty模板引擎及使用github地址:https://github.com/yiisoft/yii2-smarty命令安装:composerrequire--prefer-distyiisoft/yii2-smarty修改web.php配置文件return[//....'components'=>['view'=>['ren......
  • 28天【代码随想录算法训练营34期】第七章 回溯算法 (● 93.复原IP地址 ● 78.子集
    93.复原IP地址classSolution:defrestoreIpAddresses(self,s:str)->List[str]:result=[]self.backtracking(s,[],0,result)returnresultdefbacktracking(self,s,path,index,result):ifindex>=len(s......
  • 洛谷题单指南-数学基础问题-P2651 添加括号III
    原题链接:https://www.luogu.com.cn/problem/P2651题意解读:计算能否在除法a1​/a2​/a3​/.../an​式子中加括号,将一部分数变成分子,使得除法结果是整数。解题思路:在a1​/a2​/a3​/.../an​中,无论怎么加括号,a1一定是分子,a2一定是分母,那么可以判断把a3...an都作为分子,是否能除尽......