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 ...
随机推荐
- Nginx 安装--图片服务器搭建
1. nginx 需要依赖以下模块: gzip模块需要 zlib 库 rewrite模块需要 pcre 库 ssl 功能需要openssl库 1.1.安装pcre 1. 获取pcre ...
- MVC Control 接收post请求的json数据
[HttpPost] public string QueryInvoice() { string stream; using (var sr = new StreamReader(Request.In ...
- shell 括号的区别
$() 用于命令交换 里面会会执行命令,如果你写其他的: 会直接报错的 ` ` 也是用于命令交换的哦 和$() 的操作是一样的 ${ } 用于变量替换 每次调用环境的时候是需要带一个${ } 但是 ...
- oracle 笔记---(七)__角色
一,角色介绍 角色就是相关权限的命令集合,使用角色的主要目的就是为了简化权限的管理,假定有用户a,b,c为了让他们都拥有权限:连接数据库和在scott.emp表上select,insert,updat ...
- 数据库保存session
一般情况下,php.ini里的session.save_handler默认是file,也就是用文件来保存session,这种方式有几个缺点: 1.如果单靠session自己的垃圾回收机制,时间久了,保 ...
- 清除浮动clear-left-right-both-none效果
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content ...
- matlab实现M/M/1排队系统
Matlab实现. 分为主函数 MyLine 和被调用函数 Func. 主函数 MyLine 实现在 Func 函数的基础上实现序贯法, 将平均等待队长作为每次模拟的 X,求出置信区间.Func 函数 ...
- HDU 5289——Assignment——————【RMQ+优化求解】
Assignment Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Total ...
- 表单提交前的confirm验证提示
今天要做一个修改提交前的提示,点击修改按钮进行提示,然后根据confirm的结果来决定是否提交;发现平时很常见的一个功能,自己不会.所以只能去晚上找资料了; 举例如下: <form action ...
- git本地创建新分支并推送到远程仓库
1,在当前项目目录,从已有的分支创建新的分支(如从master分支),创建一个dev分支 git checkout -b dev 2,创建完可以查看一下,分支已经切换到dev git branch * ...