Socket 编程实战

2016-11-01
阅读 8 分钟
5.4k
Socket 在英文中的含义为“(连接两个物品的)凹槽”,像the eye socket,意为“眼窝”,此外还有“插座”的意思。在计算机科学中,socket 通常是指一个连接的两个端点,这里的连接可以是同一机器上的,像unix domain socket,也可以是不同机器上的,像network socket。

Yet Another shell can run anywhere Python exists.

2016-07-22
阅读 2 分钟
2.5k
PySh Another shell can run anywhere Python exists. Why another shell Because it's fun. Supported shell feature Common shell features can be found here. Pysh already have: |, Pipe output $var, Use value for variable " ", double quote (allows variable and command expansion) Usage {代码...} Supporte...

python, ruby, javascript 浅析

2016-03-28
阅读 6 分钟
4.2k
最近一直在看红宝石(ruby)语言,到现在为止,算是对其设计有一些了解。作为一动态语言,ruby 经常会拿来与 python 对比,确实这两门语言在语法层面、实现层面有很多共同的地方,但是它们也在很多设计理念上存在重要差异,通过对比这些相同点、异同点,更加有助于理解这两门语言。同时,Node.js、React Native 的出现,...