20171218


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 教育

科学 -- “假设-验证”
技术 -- "如何应用"
工程 -- "系统性思考"
艺术 -- "感性化思考"
数学 -- "第一性原理"

学习

学习目标?

  1. leadership
  2. Innovation
  3. Board Thinking
  4. Global Citizen

个人能力

  1. Thinking Critically
  2. Thinking Creativitely

团队能力

  1. Communication Effectively
  2. Interaction Effectively

人类和猩猩有区别在于

社交能力

  1. 解决问题的能力
  2. 共情能力
  3. 模仿和同情

计算机思维

  1. 大和小
  2. 快和慢
  3. 多维度和单一维度
  4. 网络和个体
  5. 自顶向下还是自底向上
  6. 全局和局部
  7. 成本和表现
  • 等价性原则 以及 模块化原则

如何拥有计算机思维

  1. 宏观:找到现实世界和虚拟世界的对应
  2. 中观:在有限资源的情况下做到全局最优:
  3. 微观:合理组织和利用资源,凡是留有余地
    a. 懂得检索(整理)
    b. 事先缓存(准备)

Learned

React

  • Git Submodule:
    https://chrisjean.com/git-submodules-adding-using-removing-and-updating/

    # initialize a submodule
    git submodule add [email protected]:carmen0208/formula_react.git react/formula_react
    # update a submodule
    git submodule init && git submodule update
    
  • Jest : http://facebook.github.io/jest/

  • Flowjs

    // @flow
    
    import React, { Component } from 'react';
    import Section from "./RespondToForm/Section";
    
    type SectionType = {
      title: string
    };
    type FormType = {
      sections: Array
    };
    
    type Props = {
      form: FormType
    };
    
    export default function RespondToForm(props) {
      const sections = props.form.sections.map( s => 
    ); return (
    { sections }
    ); }
  • Enzyme

    const subject = shallow();
    

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) 平静的;清澈的;晴朗的;安详的

你可能感兴趣的:(20171218)