文章

顯示從 6月, 2024 起發佈的文章

漫谈猩猩

很久之前我去过动物园,见到了一只罕见的苏门答腊猩猩。满身红毛,脸颀长,厚唇。不老,很年轻,看起来机灵又愚蠢。她正在吃果子,果汁流了满手。现在已经想不出她怎么看笼子外的眼神,总归是好奇的打量和试探。或许她是被掳进动物园或救进来的,我看不出她是否向往外界。她只呆呆地吃,那个肥大的、 满是果肉的、浑圆的果子。 一只猴子啃东西吃,这是自然本性。我们在外面看,自然的猴子吃自然的果子。她脸上满是毛,从皮肤的每个毛孔中溢出来。身旁的游客都是年轻的家庭和情侣,他们都很干净整洁,我看不到毛。猴子的毛长,几乎像个野人。人的毛短,却不像个野猴子。 我怔怔地站在太阳下,猴子懒洋洋地继续啃下一个果子,身边有蜜蜂被果汁吸引飞来去。隔离人和猴子的栅栏不高。世界在所有的果子堆下变小,又变小,小到只有栅栏之内。我怪想笑,笑猩猩能在太阳底下吃果子,还想笑一群人站在太阳下看猩猩吃果子。突然乱七八糟的声音就炸起来了,乱哄哄融成一团。不知道吹了什么风,马上下起大雨。游人作鸟兽散,猩猩没动弹,继续啃果子吃。我蛮想跑开去避雨,但猩猩没怎么动弹,我也不敢动。和这个猩猩僵持吧,可她有果子吃,我没有,不免心情难受。 猩猩卧在地上继续啃,我在雨里看猩猩。雨灌进我的衣服,湿透了我的身子。可这猩猩怎么就不难受呢?虫子也不飞了,有股寂静在流。我站不久,雨实在太大,雨滴打得我凄惶。我实在承受不住,但猩猩还在啃果子吃,一口两口地吃,看不出幸福和痛苦地吃。吃得我疑惑,吃得我难受。我难熬下去,不得不离开。离开时风雨雷电一齐到来,像是为我送行。快离开时我回头看了眼猩猩,她还在吃呢,她的眼睛遥遥地在望我。为什么看我,我不知道。 回到酒店我看到雷暴的预报,我担心猩猩会被雷打死,可惜我的担心落了空。这只猩猩活了五十五岁。

思维前进

  我的母亲 以最崇高的礼节 向乳房致敬 哺育我 至今   无事 思维跳动 像慌忙逃窜的小鼠 惊慌中 来到一片地狱   网络 没有人展示真实 面具下还是面具 包括这句话   数学 宇宙的语言 神的诗歌   水 生命源泉 深深 流淌在我的血脉中 收缩   尿 排出体外的废物 也可以是肥料 依据使用方法   懈怠 我的每日任务 除了不会懈怠懈怠 我什么都会懈怠   风 带来信息和故事 永远忠诚的使者 直到你的出现   恋人 炽热的火山喷发 浓稠的情感倾撒 宇宙的起点 与不灭的爱   性爱 不以繁衍为目的的性毫无意义   诗 心里曳斜逸出的梅花 折一支 就成了诗   孤独 有好多话想说 却不知应向谁倾诉 与其孤独排解 不如闭口不言

Essential Software List: My Must-Have Applications After System Reinstallation

Unfortunately, my computer crashed when I was setting up the environment for my NLP lab. I went to the HUAWEI after-sales center to recover my data and reinstall the system. Now, it feels like I have a brand new computer, except for the peeling paint (😁). Here are some of the software applications I installed when I reset my Windows: Windows To-Do: A very useful application that helps me keep track of my tasks. You can get it from the Windows App Store. Windows Sticky Notes: A note-taking application where I keep my diary. It's cross-platform. Windows PowerToys: An excellent toolbox that includes many powerful tools such as FancyZones and PowerToys Run. Windows OneDrive: Probably my favorite cloud storage service, where I store my papers and books. The cross-platform support is a significant advantage. Windows Subsystem for Linux: The best secondary system, especially since I can develop in a Linux-based environment, use Linux-specific toolchains and utilities, and run and de...

[翻译]-Shell Variables you should know

Shell 变量你应该知道的(包括 \$* 和 \$@) 翻译自 Shell Variables you should know (including $* and $@) Shell 变量你应该知道的(包括 $* 和 $@) Unix shell所做的事情之一是使你能够定义可以插入命令行或脚本中的、包含文本或数字的变量。 除非你想使用单引号或反斜线来保护你的命令行, shell 总会通过寻找 $ 符号来查找变量,即使是在双引号的字符串中: $ x=hello $ echo "the variable x contains $x " the variable x contains hello $ echo "protect the dollar using backslash \$x" protect the dollar using backslash $x $ echo 'protect the dollar using single quotes $x' protect the dollar using single quotes $x 如果你的 shell 或 shell 脚本不在 -u 标志下运行,未定义的变量不会引发错误并且仅扩展为空: $ echo "this is $nosuchvariable expanding" this is expanding $ /bin/bash -u bash$ echo "this is $nosuchvariable expanding" bash: nosuchva...