June 19th 2017 Week 25th Monday
Everyone is dissatisfied with his own fortune.
人对自己的命运总是感到不满足。
We always want more, even when we have owned enough, or when we have been paid enough.
Actually, I think all these things, money, beauty, knowledge, life, offspring, are never enough.
Dissatisfication, or we can understand it as enterprise or ambition, is always playing an important role in the progress of individual and the whole society.
Once we are contented with the status quo, we may no longer have the abition that can motivate us to get to the next step and to reach higher and farther aims.
Uh, I feel very sleepy today, I even can't force myselft to concentrate my attention on my work.
Can you write down one line of codes, one line is enough?
Now I know why I always live a dog's life, but even a dog may have its days, if I keep on doing such things, surely I can't see my own days.
Then, please think about that am I qualified to complian about life?
One machine can do the work of fifty ordinary men.
No machine can do the work of one extraordinary man.
一台机器能干五十个普通人的活,但一个杰出的人的工作没有机器可以做。
From Elbert Hubbard.
When it comes to this topic, I remembered the recent dispute between Elon Mask and Mark Zuckerberg about the future of artificial intelligence.
Elon Musk is worried about that artificial intelligence could eventually destroy humanity, however, the founder of Facebook, Mark Zuckerbery, said that he is always optimistic about the future, adding that he believes that AI will bring far more benefits than downsides.
Their opinions represent two distinct groups, those saying AI's benefits will outweight its negatives and those saying it could ultimately destroy humanity.
Actually both sides can find enough arguments to support them, and if checking the details of those arguments, you will find all of them can make sense, and probably you can't convince yourself of either of them.
But I think whether it is good or evil depends on our human's choices, it is far away for the AI to develop into a completely autonomous stage.
And for the individual, whether its impacts are positive or negative hinges on whether we can keep pace with its developments.
Ok, just bring an end to today's disscussion, and we will spare some time to talk about this topic later, in some deep insight.
June 19th 2017 Week 25th Monday的更多相关文章
- June 18. 2018, Week 25th. Monday
Health and cheerfulness naturally beget each other. 安康喜乐,相生相成. From Joseph Addison. Good health is a ...
- 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 24th 2017 Week 25th Saturday
Who is able to be egotistical needs to be strong too. 有本事任性的人,也要有本事坚强. What is egotistical? Is it th ...
- June 23rd 2017 Week 25th Friday
Life doesn't get easier, you just get stronger. 生活从未变得轻松,是你在一点一点变得坚强. So in the same way we can get ...
- June 22nd 2017 Week 25th Thursday
Happiness is when the desolated soul meets love. 幸福是孤寂的灵魂遭遇爱的邂逅. When living alone for a long period ...
- June 21st 2017 Week 25th Wednesday
Discontent is the first step in progress. 不知足是前进中的第一步. Several days ago, I wrote down a quote which ...
- June 20th 2017 Week 25th Tuesday
Care and diligence bring luck. 谨慎和勤奋,带来好运气. In my opinion, care and diligence may just gurantee us a ...
- June 18th 2017 Week 25th Sunday
Life was like a box of chocolates, you never know what you're gonna get. 人生就像一盒巧克力,结果往往出人意料. Compare ...
- June 12th 2017 Week 24th Monday
All the splendor in the world is not worth a good friend. 人世间所有的荣华富贵都比不上有一个好朋友. It's great to have a ...
随机推荐
- Git学习系列之Git是什么?
前言 现在主流IDE里,都集成git了. https://git-scm.com/docs 史上最浅显易懂的Git教程! 为什么要编写这个教程?因为我在学习Git的过程中,买过书,也在网上Google ...
- 8086处理器的无条件转移指令——《x86汇编语言:从实模式到保护模式》读书笔记13
本博文是对原书8.3.10的内容的总结. 一.相对短转移 指令格式是: jmp short 标号 标号也可以替换成具体的数值(标号和数值是等价的),例如 jmp short 0x2000 说明: (1 ...
- no jpeg in java.library.path;java.lang.NoClassDefFoundError: Could not initialize class sun.awt.image.codec.JPEGImageEncoderImpl
no jpeg in java.library.path;java.lang.NoClassDefFoundError: Could not initialize class sun.awt.imag ...
- 初学zookeeper--自定义事件监听
zk有四种节点类型: 持久节点,持久顺序节点,临时节点,临时顺序节点. 自定义监听事件时,在节点的创建,修改,删除的方法第一行都需要加入是否监听的一个方法: //开启监听的方法.第二个参数表示是否开启 ...
- SZU 7
A - Megacity sqrtf是个坑 #include <iostream> #include <string> #include <cstring> #in ...
- json_decode($json, true) true什么意思
<?php $json = '{"a":1,"b":2,"c":3,"d":4,"e":5}' ...
- 排序算法Nb三人组-归并排序
归并排序只能对两个已经有序的列表进行合并排序,所以要我们自己创建出两个有序列表.最后在进行合并. def merge2list(li1, li2): li = [] i = 0 j = 0 while ...
- JavaScript 访问对象属性和方法及区别
这篇文章主要介绍了浅析JavaScript访问对象属性和方法及区别的相关资料,仅供参考 属性是一个变量,用来表示一个对象的特征,如颜色.大小.重量等:方法是一个函数,用来表示对象的操作,如奔跑.呼吸. ...
- easyui 删除行的时候 引起的 bug
问题场景 easyui 编辑里 有删除行的功能 文档提供的方法如下 $aplgrid为grid 的容器 ind 为当前行的索引 $aplgrid.datagrid('deleteRow', ind); ...
- XPath路径表达式笔记(转载)
简单说,xpath就是选择XML文件中节点的方法. 所谓节点(node),就是XML文件的最小构成单位,一共分成7种. - element(元素节点)- attribute(属性节点)- text ( ...