Featured image of post Weekly Report 2023.25

Weekly Report 2023.25

Can't be right

看见真的有用吗?还是只会徒增烦恼。

# Entertainment

# 琅琊山之行

人文是一种谎言,就连自然也逐渐如此。

# Learning

# SQL join

1
2
3
4
5
6
7
8
9
-- table structure
+----------------+---------+
| Column Name    | Type    |
+----------------+---------+
| machine_id     | int     |
| process_id     | int     |
| activity_type  | enum    | -- ('start', 'end')
| timestamp      | float   |
+----------------+---------+
1
2
3
4
5
6
-- self join to find start, end pair
select s.machine_id, round(avg(e.timestamp-s.timestamp), 3) as processing_time
from Activity s join Activity e on
s.machine_id = e.machine_id and s.process_id = e.process_id and
s.activity_type = 'start' and e.activity_type = 'end'
group by s.machine_id;

# Life

  1. 人们习惯了在端午吃粽子、中秋吃月饼
  2. 习惯何尝不是一种不愿思考的表现
  3. 大家都是第一次活在世上,为什么尊重这个事实,抵制那个事实呢

# Thought

先有集体,才有个体,对吧。

# Quotation

生命在他们眼里是一点点缀,这片殷红映照了伟大进军之路,一切都被赋予自我认可,自我陶醉的所谓意义,他们觉得牺牲在所难免,牺牲成就伟大,尽管他的牺牲与真正的伟大无关,与真正的牺牲无关,但因为媚俗,这种牺牲成为了牺牲。

- 米兰 昆德拉 《无法承受的生命之轻》

# Recommendation

# 中国式成长

这其实是一种残忍,因为这样的一个孩子,四年后就突然成人了,就要自行面对社会的种种了—既然已经为你安排好了所有稳妥的路,那么接下来就是你自己的事了。这就像是禁止了十六年的恋爱,然后第十七年开始突然殷切地希望孩子立即恋爱结婚,我把这种现象叫做成熟的跃迁。前一秒还都是父母做主,后一秒就全是自己的事。

# References

Licensed under CC BY-NC-SA 4.0
Last updated on Jun 25, 2023 11:24 CST
The older I get, the more I realize that most of life is a matter of what we pay attention to, of what we attend to [with focus].
Built with Hugo
Theme Stack designed by Jimmy