Hello World

2023 年 06 月 11 日

诗歌

聂鲁达【智利】

我简直无以言表,我

瞠目结舌

我头脑发热或羽翼失修

而使灵魂有点蠢动

我一意孤行

去诠释那团火


我记下第一行苍白文字

变态的、空洞无物、纯粹

的痴言乱语、一整个无知者的

终极智慧


而忽然间我瞥见

天堂之锁开启

诸多星辰、离离草木

镶边的幻影

迷一般地

与箭、火焰和花丛

以及寥廓长夜、寰宇浑然一体



软件开发中的问题归根结底是人的问题

需求设计:
    基本上到现在我就没见到过合格的理清疑问、细化细节的需求设计。
    很多人过来一个需求,就几句话,这算什么需求?

低效的沟通:
    有的人只会浪费时间写很长的邮件,却不拎起电话,或者当面来问。
    一件事情可以反复来回好几天,而本来可以只花十多分钟。

不切实际的项目进度安排:
    我发现很多项目经理只会强调早就失去意义的截止日期。
    我们搞工程,如果做出来的是个垃圾产品,死守预设日期有什么意义?

过多的会议:
    很多会,是和工程项目无关的。往往在大公司这种情况比较常见,
    因为个人往往会被摊上很多乱七八糟的事情,越往上越多。

垃圾网络。
    国情,不解释。

猪队友:
    很多问题,归根结底都是人的问题。
    比如:对技术缺乏“工匠精神”,能完成任务就好,从来不考虑其它方面、是否能进一步改进等等。
    对新技术缺乏敏感度,甚至抵触。
    缺乏团队精神,喜欢强调自己的职责范围,不在他所认为的范围内的事情,就不管不问。
    缺乏谦虚,自以为是,没有相互学习的精神。很多讨论,变成站队、甚至面子问题。

宝贝读物

  • <<我的情绪小怪兽>>
    引导宝宝如何理解情绪,为以后更好的控制管理自己的情绪打下基础。 情绪管理很重要,直接影响人际交往,问题解决,自信心等。
  • <<小灯泡情绪管理绘本>>
    来自韩国的"暖心"情绪绘本,为儿童的性情培养提供全面的解决方案,用一段段温情的亲子时光引导孩子. 学会正当释放情绪,培养健康快乐心态.

学习笔记

open edx

编程类开放书籍荟萃

流程图

sudo snap install drawio


匿名网盘
短链接服务

各类程序员学习路线图

Linux log日志占用
# Linux log日志占用
#Linux使用df -h检查磁盘文件,可以看到/run目录下有日志目录/run/log/journal,占用了数G空间。

du --max-depth=1 -h

#在日志目录下有很多历史累积的日志。

#Linux log日志清理
#检查当前journal使用磁盘量

journalctl --disk-usage

# 清理方法可以采用按照日期清理,或者按照允许保留的容量清理,只保存2天的日志,最大500M
journalctl --vacuum-time=2d
journalctl --vacuum-size=500M

#如果要手工删除日志文件,则在删除前需要先轮转一次journal日志
# systemctl kill --kill-who=main --signal=SIGUSR2 systemd-journald.service

要启用日志限制持久化配置,可以修改 /etc/systemd/journald.conf

SystemMaxUse=16M
ForwardToSyslog=no

然后重启

systemctl restart systemd-journald.service

# 检查journal是否运行正常以及日志文件是否完整无损坏
journalctl --verify

Ubuntu 编译源码包

http://blog.sina.com.cn/s/blog_476d8cf30100lnd4.html

$ sudo apt-get source tree

$ sudo apt-get build-dep tree

$ cd tree-1.5.1.2
$ sudo dpkg-buildpackage

#  构建 vlc 打包环境
apt-get update
apt-get install curl -y
curl -o /etc/apt/sources.list http://mirrors.163.com/.help/sources.list.trusty
apt-get update
sudo apt-get build-dep vlc -y
#sudo apt-get source vlc

镜像下载地址

源列表

$ curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
$ curl -o /etc/yum.repos.d/epel-7.repo http://mirrors.aliyun.com/repo/epel-7.repo
$ sudo yum makecache


# centos/fedora 安装epel扩展源 并更换为科大开源镜像
$ sudo yum -y install epel-release
$ sudo sed -e 's!^mirrorlist=!#mirrorlist=!g' \
         -e 's!^#baseurl=!baseurl=!g' \
         -e 's!//download\.fedoraproject\.org/pub!//mirrors.ustc.edu.cn!g' \
         -e 's!http://mirrors\.ustc!https://mirrors.ustc!g' \
         -i /etc/yum.repos.d/epel.repo /etc/yum.repos.d/epel-testing.repo

Fodora 中文社区软件源

Ubuntu 源列表

# ubuntu14.04  163源
$ sudo wget -O /etc/apt/sources.list  http://mirrors.163.com/.help/sources.list.trusty
# sudo curl -o /etc/apt/sources.list http://mirrors.163.com/.help/sources.list.trusty

# ubuntu 14.04 更换阿里源
$ grep "archive.ubuntu.com" /etc/apt/sources.list && \
       sed -i 's/archive.ubuntu.com/mirrors.aliyun.com/' /etc/apt/sources.list

# 科大源
$ sudo sed -i 's/archive.ubuntu.com/mirrors.ustc.edu.cn/g' /etc/apt/sources.list
#  APT工具集使用的默认配置文件是/etc/apt/apt.conf
$ sudo tee /etc/apt/apt.conf <<-'EOF'
Acquire::http::proxy "http://127.0.0.1:8123/";
Acquire::https::proxy "https://127.0.0.1:8123/";
EOF

# 1.使用-o选项
sudo apt-get -o Acquire::http::proxy="http://127.0.0.1:8123/" update

# 2. 使用-c选项

$ sudo tee ~/apt_proxy.conf <<-'EOF'
Acquire::http::proxy "http://127.0.0.1:8123/";
Acquire::https::proxy "https://127.0.0.1:8123/";
EOF
sudo apt-get -c ~/apt_proxy.conf update


# 3. 如果我们设置了环境变量APT_CONFIG,那么APT工具集将使用APT_CONFIG指向的配置文件。
$ export APT_CONFIG=~/apt_proxy.conf
$ sudo apt-get update
apt-get download  <your_package_here> #  Download the binary package into the current directory
####################
apt-get clean
apt-get --download-only install <your_package_here>
cp /var/cache/apt/archives/*.deb <your_directory_here>

待研究

Udpcast


P2P File Transfer
https://github.com/ypingcn/P2PChat-Qt https://github.com/aanrv/P2P-File-Transfer-Client https://www.cnblogs.com/snake-hand/p/3148366.html https://blog.csdn.net/hackertom/article/details/73692902

http://www.isjian.com/

Linux From Scratch

https://linux.cn/lfs/LFS-BOOK-7.7-systemd/index.html

http://www.linuxfromscratch.org/

前端框架(js)
Meteor
BitTorrent
# 制作种子
mktorrent -a http://192.168.8.204:18888/announce -o drbl-live-xfce.iso.torrent /home/jxm/Downloads/drbl-live-xfce.iso
# or
ctorrent -t ~/Downloads/virtualbox-5.1.deb -u http://192.168.8.204:18888/announce -s virtualbox-5.1.deb.torrent

# 启动下载
ctorrent virtualbox-5.1.deb.torrent -s ~/Downloads/virtualbox-5.1.deb
BT Tracker List
https://github.com/ngosang/trackerslist https://newtrackon.com/
bittorrent文件编辑工具
  • BEncode Editor
  • TrackerEditor

邮箱

企业云邮箱各个服务器地址及端口信息如下:

收件服务器地址:

        POP 服务器地址:pop3.mxhichina.com 端口110,SSL 加密端口995
        或
        IMAP 服务器地址:imap.mxhichina.com 端口143,SSL 加密端口993

发件服务器地址:
        SMTP 服务器地址:smtp.mxhichina.com 端口25, SSL 加密端口465

Contents: