The Rocks, Pebbles, and Sand in a Jar Story

Within time management in the workplace, we can look at the sand as email, instant messages from team members, other “pings”, calls, etc. Pebbles are tasks that have slight, but manageable, consequences if we don’t do them. Big rocks are the things that can have serious negative consequences if we don’t do them.

Take a moment to consider your to-do list and whether you are making enough time for your big rocks.

Forget

People will forget what you said, people will forget what you did, but they will never forget the way that you made them feel.

Top 8 Irregular Verbs

Here is the story:
Sorry I was absent yesterday. I had a problem with my car. I did everything I could! But in the end, I just went to a garage. The mechanic said he wanted to see my car. He saw it immediately and laughed. It took me a minute to understand why. But then I got what was so funny. I could see that problem was easy to solve. I just needed to fill up the gas tank!

The irregular verbs:

  • WAS/WARE
  • HAD
  • DID
  • WENT
  • SAID
  • SAW
  • TOOK
  • GOT
  • COULD

Answer these questions:

  • When did you take your last vacation?
    We took our last vacation on Jan 4, 2018.
  • Where did you go?
    We went to Singapore.
  • How long did it take you to get there?
    It took us to get there more than 6 hours.
  • Did you see anything interesting?
    Yes, we did.
  • What else did you do there?
    We had a big dinner with my friends.
  • Were you in a hotel?
    Yes, we were.
  • What did your partner or kids say about the trip?
    They said it is worth.
  • Did you have a good time?
    Yes, we did.

Build Your Professional ePortfolio in English (Week 2 & Week 3)

Writing Clear Captions

  1. Here is or This is as the first words.
  2. a presentation, a speech, a project, a product, a service.
  3. Here are, these are.
  4. client + location + time
    1. client: for + client
    2. company, organization, person(s)
  5. social network, use symbols like @ and #

Writing Longer Descriptions of Your Work

Essential characteristics are simply qualities that you can observe by feeling or seeing your product.

  1. Choosing descriptive adjectives rather than general words.
  2. Longer descriptions of your work should also include an explanation and your client.
  3. Finally, the last sentence of your description should express positive feelings about your work.

Write about Your Education

2 Essential Parts in Your Resume:

  • Your Education
  • Your Work Experience

Education Section

  • Your degree(s)
  • Your school name
  • Duration of program

Degrees

  • an associate’s degree
    • 2 years
    • Train students with technical skills
    • Normally does not include research
  • a bachelor’s degree
    • Undergraduate degree
    • 4-5 years of college or university studies
    • Academic + technical experience
  • a master’s degree
    • 1-2 years
    • Bachelor’s Degree must be completed
    • Specialization and research focused
    • graduate degree
  • a doctorate degree
    • 3+ years
    • Highest degree

where did you receive your education?

  1. Name of univ/college
  2. City & country
  3. period of time of your education

Write about Your Work Experience

  • job Titles
  • the organization
  • duration of your employment.
  • more detailed list with the tasks

level of experience

  • intern/trainee
  • entry level/junior
  • senior
  • principal
  • lead

Adding specific tasks/accomplishments

  • Starting with an action verb shows what you’ve completed.
  • Show how much impact you had
  • You’ve made big changes for company

这张图片有什么意义

不知道什么时候发现了一张蜗牛的图片,当时感觉挺有深意的,至少我的理解是不管前方路途有多遥远,请一直在路上,不要放弃。

enter image description here

于是就拿来做微信的头像,有几个人问我,这个是什么意思,我说你猜猜看…

突然有一天,我心血来潮,就使用Google Images查了一下。得出的结果和我想的差不多,有点开心,哈哈。

enter image description here

坚持,梦想里你就会越来越近。

Build Your Professional ePortfolio in English (Week 1)

Creating an Effective Headline

Headline:4 Steps

  1. JOB TITLE
    job titles normally take the endings below.

    • -int
    • -ant
    • -er
    • -ist
  2. ACTION VERB
  3. OBJECT of action verb
  4. PURPOSE of action

Writing Your Summary of Capabilities

Your summary should consist of three parts:

  1. an introduction of you
    • what you do?
    • what your goal is right now?
    • your unique qualities
  2. your accomplishments or things you did
    two to three sentences that include details of what you did and completed.

    • the client: for + person(s)
    • the place: in + city/country
    • the time: in + year
  3. your skills
    which is to include a sentence with any other additional skills.

安装Angular CLI

参考官方安装文档 https://angular.io/docs/ts/latest/cli-quickstart.html

Mosh的课程 Angular 2 Tutorial for Beginners- Learn Angular 2 from Scratch,然后根据他课程中讲的那样学着开发自己的第一个Angular应用,在搭建环境的时候,遇到了如下诸多问题。最后经过多次尝试,终于在Chrome里看到app works!,很有成就感。

首先安装Node.js,这一步很顺利,因为是Windows平台下,直接点下一步,默认安装即可。

安装Node.js之后,打开命令提示符(CMD),查看node

node -v

和npm

npm -v

的版本号。如果node版本低于6.9.x或npm版本低于3.x.x,安装Angular CLI的时候就会出错。node 6.9.x或npm 3.x.x版本及更高版本则不会。

enter image description here

然后安装typescript,因为Angular CLI是用Typescript写的,所以必须先安装它

npm install -g typescript

,然再安装Angular CLI。

enter image description here

接下来开始安装Angular CLI

npm install -g @angular/cli

,就出现问题了,如下图所示:

enter image description here

这个原因是因为从GitHub下载node-sass的时候,由于网络原因导致下载超时,所以就不能再继续安装了。解决方案是直接从它提示的地址手动下载 win32-x64-48_binding.node 文件,放到本地磁盘中,然后再设定sass文件的路径

npm config set sass_binary_path "D:\Data\win32-x64-48_binding.node"

,继续安装吧。

然后,又遇到了一个问题,需要安装Python环境。我看提示信息里有Python27字样,所以就下载Python v2.7安装,然后又可以继续了。

enter image description here

接下来的安装就非常顺利了,稍等片刻,安装完成如下图所示:

enter image description here

创建第一个Angular项目

ng new my-app

enter image description here

跑起来试一下咯

ng serve --open

enter image description here

app works!

enter image description here

总结一下

  • 请一定先安装typescript。
  • Python要安装v2.7的,v3.x.x有可能不支持。
  • Mosh的课程里安装Angular CLI的命令 npm install -g angular-cli 是旧的安装方式,请按照官方文档里的命令 npm install -g @angular/cli 安装Angular CLI。如果有安装错误的,请先执行 npm uninstall -g angular-cli ,然后再执行 npm cache clean 来彻底清除以旧方式安装的文件,最后再重新以正确的方式安装。

另外有小技巧送上
如果自己的网络比较慢,安装Angular CLI时比较慢,建议将需要下载的文件的路径设置为阿里的镜像,这样速度会快很多,如下:

npm config set registry https://registry.npm.taobao.org
npm config set sass_binary_site https://npm.taobao.org/mirrors/node-sass/

对不起,我回来了!

很久没有更新了,2017年的第一篇,是应该说明一下。

2016年12月8日,这一天,我的人生中又多了一些经历,我们的小明被别人撞了,谢天谢地,妻儿和我都安然无恙。接下来的两周都在处理这件事,同时兼顾把工作做好,心理压力有点儿大。本打算继续学习 Improve English Communication Skills 中的第三课,由于这件事的发生,我就先停了。

两周过后,我们决定去香港看看。原因一是之前答应过妻子要带她去转的,小家伙也正好放寒假了。另一原因的确是压力有点大,自己也想放松一下心情。这次旅行前后也用了将近两周时间,回来差不多就是春节了。

由于香港之旅也耽误不少工作时间,工作没有完成的很好,春节还是带着不开心度过的,也影响到家人的心情了,对不起他们。

春节过后,初九就出发去北京了,没有在家过元宵节。去DHL现场安装已经开发好的证照类培训记录管理模块,在北京也待了将近两周,完成了任务之后就回来了。

这是我回来后的第三周才开始写的。回来的这三周,除了正常的工作时间外,我会尽力安排多一些时间陪妻儿、陪爸妈、陪爷奶。跟他们在一起的同时我也没有停止反思,为什么上述这段时间过得如此糟糕。生活没有了激情,心中没有了梦想,整天浑浑噩噩,不知道自己在做什么。

问题出在哪里了?归根结蒂是:自己太懒惰

我还有梦想,知道这不是我想要的生活,所以我要改变,找回自己。接下来,先给自己定一些目标吧,5.1之前完成。

  • 完成 Improve English Communication Skills 所有课程,获取证书不是目的,自己进步才是最重要的;
  • Hybrid模式开发一个Mobile App,目的学习React Native, lonic, Cordova;
  • 读完《怪诞行为学1,2》、《白夜行》。

加油!