June 12th 2017 Week 24th Monday
All the splendor in the world is not worth a good friend.
人世间所有的荣华富贵都比不上有一个好朋友。
It's great to have a good friend, but I think it's greater and more splendid to have a considerable amout of wealth.
Because wealth can bring us much more people to meet and then we have more chances to make friends.
From the other interesting perspective, I mean to say, that, wealth and friends may can transfrom into each other if used in an effective way.
Having a lot of good friends means that you have a broad network which may provide you some helpful information about enriching your wealth.
And when communicating with different people, we not only can learn new things, we can also have the invaluable opportunity to broad our business.
But how to broad our network?
I think the first thing is to expand and deepen our knowledge, and the second thing is to accomplish something that can attract people, and the third it to communicate with people in an effective way.
Simplicity is the peak of civilization.
极简是文明的极致。
From Jessie Sampter.
Simplicity is always better than complexity, especially in scientifical and technical world.
Thinking about many common things in our daily life, like books, computers, cell phones, when they were initially invented, the structrue and the manufacture process of them were very complex, only those professionals could master the skills of using or manufacturing them.
However, as time passed away, the technology had been improved, and the final goals might be to make the procedure simpler and easier so that most people can learn how to use or manufacture them only with a short period of training.
As a programmer, I think the most skilled ones may be who can solve the problems using the simplest and shortest codes.
Have you ever read the codes that you thought as bad-structured?
They could solve the problems as well, but if you want to make some changes to them, you may find it is difficult to make the codes clear.
So, always try to simple our codes, once we have successfully solved the problems using our codes, we should try to think about how to make the data-structure and program-structure clearer and more effective.
Don't measure your work by the lines of your codes, but by the quality of your codes.
June 12th 2017 Week 24th Monday的更多相关文章
- June 11. 2018 Week 24th, Monday
Love is the beauty of the soul. 爱是灵魂之美. From Saint Augustine. The complete version of this quote goe ...
- June 26th 2017 Week 26th Monday
I am a little tempted, but so afraid to look in your eyes. 我对你有一点动心,却如此害怕看你的眼睛. Now that you are tem ...
- June 19th 2017 Week 25th Monday
Everyone is dissatisfied with his own fortune. 人对自己的命运总是感到不满足. We always want more, even when we hav ...
- June 17th 2017 Week 24th Saturday
Absence sharpens love, presence strengthens it. 相聚爱益切,离别情更深. There is almost no such love that can i ...
- June 16th 2017 Week 24th Friday
Progress is the activity of today and the assurance of tomorrow. 进步是今天的活动,明天的保证. The best preparatio ...
- June 15th 2017 Week 24th Thursday
Whatever is worth doing is worth doing well. 任何值得做的,就把它做好. Whatever is worth doing is worth doing we ...
- June 14th 2017 Week 24th Wednesday
Love looks not with the eyes, but with the mind. 爱,不在眼里,而在心中. Staring in her eyes and you will find ...
- June 13th 2017 Week 24th Tuesday
There are no regrets in life, just lessons. 人生中没有后悔,只有教训. Some people can learn from their past mist ...
- June 11th 2017 Week 24th Sunday
I hope I can find the one who is afraid of losing me. 我希望找到一个担心失去我的人. When I was young, sometimes I ...
随机推荐
- 2019.3.26 SQL语句(进阶3)
表的联查 员工表与部门表 员工表:id,姓名,年龄,部门id 部门表:部门id,部门名,部门成立时间,部门领导,部门职责.... 表和表之间的关系 一对一 一对多 多对多 创建联查 创建表 先创建被依 ...
- python 函数的递归
递归:简单来说就是自己调用自己 这里我们又要举个例子来说明递归能做的事情. 例一: 现在你们问我,alex老师多大了?我说我不告诉你,但alex比 egon 大两岁. 你想知道alex多大,你是不是还 ...
- web app与app的区别,即html5与app的区别
公司准备要做一个项目,是p2p配资的app.在网上问了一些人后,发现有的是直接有html5做好后,用软件封装的.之前我学过app的开发,当时Android版本的,知道开发Android app时写的代 ...
- jackson工具类有动态属性过虑功能
在业务应用中经常会有指定属性序列化json的需求,C#中这个功能很容易就可以解决:使用lambda重新构造一下匿名对象就可以了.一行代码搞定.java是这样解决的. public JsonMapper ...
- poi生成excel报表合并列
功能任务 poi导出excel统计报表,有合并列的. 根据结构生成层级. 目标 1输入一个linkshashmap LinkedHashMap<String, Object> fieldM ...
- 单一指责原则(Single Responsibility Principle) SRP
using System; using System.Collections.Generic; using System.Text; namespace SingleResponsibilityPri ...
- Fastjson解析多级泛型的几种方式—使用class文件来解析多级泛型
Fastjson解析多级泛型 前言 现在网上大多数是使用TypeReference 方式来解析JSON数据,这里我提供另外一种方式来解析,使用类文件进行解析,两种方式我都会给出实际代码 实例 Type ...
- JS正则表达式一些基本使用、验证、匹配、正则匹配时一个变量
js验证首位必须是字母 var str = "asfg"; /^[a-zA-Z].*/.test(str);//true是,false否 匹配所有空格 var str=" ...
- Jenkins+Postman+Newma+Xmysql之API全自动化测试
第一章 前期准备:各种安装配置介绍 ①Postman安装及使用 ②Newman 安装及使用 ③Xmysql 安装及使用 ④Jenkins安装及配置 1.postman 安装及使用 1.1.postma ...
- 实现JFileChooser的多种文件类型限制(设置过滤器)
使用时直接调用方法. // 多类型时使用 public void FileFilter(JFileChooser F) { String[][] fileNames = { { ".java ...