摘要:
一、Windows windows+R: 进入版本号文件夹, 删除 再重新打开smartgit 勾选I understand and agree.... next next 勾选Use system SSH client next next Finish 二、Linux 删除 再重新打开smartg 阅读全文
摘要:
osinfo.sh bash !/bin/bash echo e " System Information " echo e "Hostname:\t\t" echo e "uptime:\t\t" echo e "Manufacturer:\t" echo e "Product Name:\t" 阅读全文
摘要:
利用向量公式: AB·AC=|AB|·|AC|·cos(theta) c include include int main() { //90,45,45 //double Ax(0),Ay(0),Bx(1),By(0),Cx(0),Cy(1); //60,60,60 //double Ax(0),A 阅读全文
摘要:
```c //Rata Die day one is 0001-01-01 int calculateDays(uint32_t year, uint32_t month, uint32_t day) { if (month < 3) year--, month += 12; return 365 * year + year / 4 - year / 100 + year / 400 + (153 阅读全文
摘要:
Any problem in computer science can be solved by another layer of indirection. “计算机科学领域的任何问题都可以通过增加一个间接的中间层来解决” 人们总是希望计算机越来越快,这是毫无疑问的。在过去的50年里,CPU的频率从 阅读全文
摘要:
什么是D Bus? D Bus是一种消息总线系统,用于两个应用之间的通信。 对于进程间通信,D Bus也可以管理应用的生命周期, Qt D Bus D Bus是一种linux下进程间通信(IPC)和远程方法调用(RPC)机制,使用统一的通信方式来取代linux下多种IPC竞争状态。 它既可以进行系统 阅读全文