TED2:Where will you be able to live in 20 years


coastal n.沿海的 incredibly adv.极其,非常(比very好) capable adj.实干的,有能力的 abundant adj.大量的 bring...in... 携带... wash...away 冲刷... the ebbs and flows 潮起潮落,起伏变化 ev

Python进阶

Python 

类与对象 关键字self:指向对象实例本身,像this指针 #简单类的实现 class Phone: def open(self): print("手机开机了") def off(self): print("手机关机了") def photo(

TED 1


call out 呼喊 a lot of==lots of 许多,大量,用于修饰名词(可数和不可数均可) this could be the best day ever ever表示胜过其他日子。这也许是最棒的日子 and yet 然而,可是 as yet 到目前为止,迄今为止(常用于否定) is

Linux


描述路径层级关系使用/ 例:/root/user/local/hello.txt 第一个斜杠表示顶级目录根,其余表示层级关系 基础命令 格式:command [-options] [parameter] 命令本身 命令选项 命令参数 A 通过某个方式指向 谁 ls命令 用于列出目录下的内容

2.4/2.5学习笔记


MySQL: 开启MySQL:在cmd管理员模式下输入 net start mysql80 客户端连接:在命令行窗口中输入mysql -u root -p 关系型数据库:RDBMS(简言之:通过表来控制数据的数据库) 概念:建立在关系模型基础上,由多张相互连接的二维表组成的数据库 特点:使用表存储数

2.3 牛客寒假算法基础训练营第一场


26寒假营第一场.pdf A:2.4 B: 思路或者想法: 已知小红的卡牌排列,想要得到小苯的卡牌排列 在最高分数的情况下得到有多少种排列方式 猜测题型:组合数学,单调队列,单调栈,优先队列,贪心? 样例 4 1 8 7 2 3 6 4 5 如果我们将小的数字放到前面,比如1 2 7 8 那么小红将

2.1


Unity Speed Down小游戏 添加背景,使背景运动,添加尖刺 背景图X:Y比例为9:16 背景动画设计代码: using System.Collections; using System.Collections.Generic; using UnityEngine; public cla

1.29 笔记


Unity Unit 2 InvokeRepeating(string method,float time,float repeatRate)方法:以一定的时间间隔执行某函数 返回值为空,是MonoBehaviour类方法 通常放于Start()方法中 参数:函数名,第一次执行时间,每次执行的时间间

1.28 Unity笔记


Unit1 Position 三维坐标 Rotation 旋转角度 Scale 不同方向上的缩放 using System.Collections; using System.Collections.Generic; using UnityEngine; public class PlayerCo

Hello,World!


第一篇博客,也不知道写点什么好 就先写一句最经典的吧 #include<iostream> using namespace std; int main(){ cout<<"Hello,World!"<<endl; return 0; } Hello,World!