20171218

作者: carmenliu | 来源:发表于2017-12-19 09:04 被阅读0次

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 git@github.com: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<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) 平静的;清澈的;晴朗的;安详的

相关文章

  • 2017-12-18

    20171218 朱子读书六法

  • (901)朱巷结束,淮南来了

    20171218 朱巷结束,淮南来了。

  • 20171218

  • 20171218

    Winter is coming 寒冷不期而至,在并没有什么准备的情况下,冬天就已经来了,还记得某年在武汉读书的时...

  • 20171218

    【与萌共长】20171218学习力践行Day69 读海底小纵队,英语打卡,读牛2本

  • 20171218

    写作角度: 结合手稿,思考微信在什么地方的什么功能实现了怎么样的交互,它为什么这么设计(功能&交互),并运用KAN...

  • 20171218

    莲华20171218(D49) 目标:儿女健康成长,快乐学习 1.常灯师父护生群,天星寺建寺群,每日一善群随喜,愿...

  • 20171218

    有些话不必说出口的。 没说完的那些,都了解。 何必戳破所谓温暖与爱的彩色气泡呢? 原本就没希冀什么。 人生短短几十...

  • 20171218

    完成了一天的考核,我们一个大的团队明天即将分道扬镳,虽然不在一起上课但是同学的友谊长存。我们依然都是6期学员的一份...

  • 20171218

    【蹦蹦跳跳皮皮猴】20171218学习力践行d64 今天读我的色彩旅行,洞洞书,手指遥。 大部分时间是粑粑陪着,晒...

网友评论

      本文标题:20171218

      本文链接:https://www.haomeiwen.com/subject/evlpwxtx.html