#/etc/security/limits.conf
* soft nofile 51200
* hard nofile 51200
ulimit -n 51200
#/etc/sysctl.conf
fs.file-max = 51200
net.core.rmem_max = 67108864
net.core.wmem_max = 67108864
net.core.netdev_max_backlog = 250000
net.core.somaxconn = 4096
net.ipv4.tcp_syncookies = 1
net.ipv4.tcp_tw_reuse = 1
net.ipv4.tcp_tw_recycle = 0
net.ipv4.tcp_fin_timeout = 30
net.ipv4.tcp_keepalive_time = 1200
net.ipv4.ip_local_port_range = 10000 65000
net.ipv4.tcp_max_syn_backlog = 8192
net.ipv4.tcp_max_tw_buckets = 5000
net.ipv4.tcp_fastopen = 3
net.ipv4.tcp_mem = 25600 51200 102400
net.ipv4.tcp_rmem = 4096 87380 67108864
net.ipv4.tcp_wmem = 4096 65536 67108864
net.ipv4.tcp_mtu_probing = 1
net.ipv4.tcp_congestion_control = hybla
sysctl -p
中国人的孝道,无非是专制主义在家庭结构中的映射。它从未承载过真正的爱与亲情,而仅仅重申长辈对晚辈的微观权力。它拒绝家庭成员的人际平等,无视晚辈的人格尊严,进而摧毁主体的独立建构,由此导致服从性和工具性人格的茁壮成长。家庭孝道,是帝国规训其政治顺民的逻辑起点。
等将来儿子长大了,
我要努力做一个,
听话的爸爸,
因为,
未来的世界是他们的!
人们常说父母在哪家在哪,
其实应是子女在哪家在哪,
因为,
未来的世界是他们的!
有句话说
不听老人言吃亏在眼前,
其实不听孩子言吃亏在将来,
因为,
未来的世界是他们的!
Sub Ss()
Dim c As Range
For Each c In ActiveSheet.UsedRange
i = 1
While InStr(i, c, "文字", 0) > 0
i0 = InStr(i, c, "文字", 0)
If i0 > 0 Then c.Characters(i0, 2).Font.Color = vbRed: i = i0 + 2
Wend
Next
End Sub