Been Done
- Working 8 hours: Unison with CDS Testing
- Workout:
- Running 30 mins
- Keep 40 Mins
- Coding react 1 hours
- English practicing 1 hours: the school of life: how to parent yourself
Thoughts
STEAM 教育
科学 -- “假设-验证”
技术 -- "如何应用"
工程 -- "系统性思考"
艺术 -- "感性化思考"
数学 -- "第一性原理"
学习
学习目标?
- leadership
- Innovation
- Board Thinking
- Global Citizen
个人能力
- Thinking Critically
- Thinking Creativitely
团队能力
- Communication Effectively
- Interaction Effectively
人类和猩猩有区别在于
社交能力
- 解决问题的能力
- 共情能力
- 模仿和同情
计算机思维
- 大和小
- 快和慢
- 多维度和单一维度
- 网络和个体
- 自顶向下还是自底向上
- 全局和局部
- 成本和表现
- 等价性原则 以及 模块化原则
如何拥有计算机思维
- 宏观:找到现实世界和虚拟世界的对应
- 中观:在有限资源的情况下做到全局最优:
- 微观:合理组织和利用资源,凡是留有余地
a. 懂得检索(整理)
b. 事先缓存(准备)
Learned
React
-
Git Submodule:
https://chrisjean.com/git-submodules-adding-using-removing-and-updating/# initialize a submodule git submodule add git@github.com:carmen0208/formula_react.git react/formula_react # update a submodule git submodule init && git submodule update
-
Flowjs
// @flow import React, { Component } from 'react'; import Section from "./RespondToForm/Section"; type SectionType = { title: string }; type FormType = { sections: Array<SectionType> }; type Props = { form: FormType }; export default function RespondToForm(props) { const sections = props.form.sections.map( s => <Section title={s.title} />); return ( <div>{ sections }</div> ); }
-
Enzyme
const subject = shallow(<RespondToForm form={form} />);
English
- The past is getting in the way of a good life in the present
- What this means is, an ability to - comfort ourselves at moments of difficulty - to interpret the troubles that beset us with imagination and kindness - to encourage ourselves in the face of anxiety and loss - and to reassure the more fragile, agitated parts of us by drawing upon our experience and our serene aspects
- beset /bɪ'sɛt/ 困扰;围绕;镶嵌
- kindness /'kaɪndnəs/ 亲切, 仁慈, 好意
- agitated /'ædʒɪtetɪd/ 激动的;焦虑的;表现不安的
- reassure /ˌriə'ʃʊr/ 消除恐惧或疑虑; 恢复信心
- serene /sə'rin/ (sir ring) 平静的;清澈的;晴朗的;安详的
网友评论