偶然在《声频工程导读》这本书上看到了MathCAD的使用,比较感兴趣,就在网上找了安装包准备安装。

阅读更多

This article mainly introduces the statics library and shared library on Linux and has done some experiments for better comprehension.

阅读更多

高端(贵)的MacBook/iMac不是我等拮据的年轻人所用得起的(除非公司发一个),但macOS系统还是值得尝试的,可以通过安装虚拟机的方式学习。

阅读更多

Go语言在将int64进行JSON解析时,会出现几百或几千的小的偏移。解决方法时将int64转化成string表示。
比如,将

1
controller.Data["json"] = map[string]int64{"MomentId": MomentId}

改为

1
controller.Data["json"] = map[string]string{"MomentId": strconv.FormatInt(MomentId, 10)}
Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×