《如何阅读一本书》 笔记
这本书的目的 提供阅读的技巧,以帮助读者在没有外在帮助的情况下,提升自己的理解力。让读者学会求得理解而阅读。 作者关于读书的一些观点: 太多的资讯就如同太少的资讯一样,都是一种对理解力的阻碍。换句话说,现代媒体争议压倒性的泛滥资讯阻碍我们的理解力。(现代的媒体,精心挑选包装各种信息和观点,直接呈献给观众,是的观众根本不需要思考,接受就行了)
这本书的目的 提供阅读的技巧,以帮助读者在没有外在帮助的情况下,提升自己的理解力。让读者学会求得理解而阅读。 作者关于读书的一些观点: 太多的资讯就如同太少的资讯一样,都是一种对理解力的阻碍。换句话说,现代媒体争议压倒性的泛滥资讯阻碍我们的理解力。(现代的媒体,精心挑选包装各种信息和观点,直接呈献给观众,是的观众根本不需要思考,接受就行了)
Story Brief The author (Helen) had her fifteen-year friend Nicola from Sydney staying in her spare room in Melbourne for three weeks. Nicola was there for a Vitamin C Treatment claiming to cure her cancer, while Helen had to care for her. Nicola had never been married and had no children. She was what called Bohemian. She was obsessed with alternative treatments and theories, even they all seemed to be deceptive to Helen. The side effects of the treatment gave Nicola a lot of bad nights but she made herself believed that it was the proof of the cancer being reduced,
Setup Setup semantic-release in your project is pretty easy: npx semantic-release-cli setup then you will be asked about your npm and github credentials In terms of travis CI, it will setup the integration with github and the environment variables.
Spent three nights after work playing the game Kingdom: Classic Stats and finally, I finished the game.
I was looking for a React static HTML solution for my incoming marketing page project. Actually, I was not looking for a static website generator, more just need to generate a html file that contains react rendering result HTML, which is for SEO friendly purpose.
Attended AWS DevDay 2017 Melbourne. This is a summary of what I learned today. Keywords IoT, GreenGrass, offline/local/edge Artificial Intelligence Cloud Developer / embedded developer Serverless
Yes, I just released the first rough version of my English number listening practice APP: English Number Why An English Number App? I m having my NAATI class recently, it is a course that helps you practice to be an interpreter. I’m doing English-Mandarin interpreting. The practice is usually based on a dialogue conducted by an English speaker and LOTH speaker. What I will do is interesting the content from the English speaker to Mandarin and the other way around, one by one.
Recently I upgrade my project from webpack1 to webpack3, one of the main highlight feature for me is Tree Shaking. Depnding on the static structure of ES6 module system, webpack is now able to get rid of unused modules from your build. That sounds very cool, but after I finished my upgrade and rebuilt my project, the decrease of the file sizes did not reflect my expectation. Why? Did I not use it right, or is it actually not working?
I was born in a small town in the middle east of China in 1990. It was a very backward town and parts of it even remains the same for the last past 20 years. It was not big but you could find everything you need.
If you are like me, a python newbie just moved from web front-end world, you must have used Mocha before, the most commonly used test framework made by the genius TJ. skip() and only() are the two most useful features for me among all the tools that Mocha provides. So when I started to write test cases in Python using Unittest, I felt so frustrated, because there’s nothing that can do the same as the skip() and only() did for me. So I am going to teach you how to add these two features to unittest-testing in this article, but