2024年7月6日

摘要: int i = 3,k; k = (i++) + (i++) + (i++); 3 4 5 printf("i = %d , k = %d",i,k); 结果: i = 6 ,k = 12 在新版本编译器中,以++作为一个操作单位。要到下一个操作单位,上一次操作才生效。当执行到printf的时候,上 阅读全文
posted @ 2024-07-06 12:06 dingyun 阅读(1) 评论(0) 推荐(0) 编辑

2024年4月13日

摘要: CMD Commands for Control Panel Applets Applet Command OS Version Accessibility Options control access.cpl XP Action Center control /name Microsoft.Act 阅读全文
posted @ 2024-04-13 23:04 dingyun 阅读(3) 评论(0) 推荐(0) 编辑

2023年10月25日

摘要: 1、选择Options->File Type Options 2.勾选Highlight references to selected symbol 阅读全文
posted @ 2023-10-25 10:09 dingyun 阅读(575) 评论(0) 推荐(0) 编辑

2023年9月29日

摘要: find命令使用通配符: find ./ -name "m*" 查找当前目录下以m开头的文件 查找5分钟以内访问过的的文件 sudo find ./ -amin -5 阅读全文
posted @ 2023-09-29 20:11 dingyun 阅读(5) 评论(0) 推荐(0) 编辑

2023年7月21日

摘要: OpenWrt是一个比较完善的嵌入式Linux开发平台,在无线路由器应用上已有100多个软件包。人们可以在其基础上增加软件包,以扩大其应用范围。OpenWrt在增加软件方面使用极其方便,按照OpenWrt的约定就可以很简单完成。 加入的软件包可以是网上可下载的开源软件或自行开发的软件。為加入软件包需 阅读全文
posted @ 2023-07-21 20:57 dingyun 阅读(293) 评论(0) 推荐(0) 编辑

2023年5月22日

摘要: -Os Optimize for size. -Os enables all -O2 optimizations that do not typically increase code size. -Os disables the following optimization flags: -fal 阅读全文
posted @ 2023-05-22 11:48 dingyun 阅读(7) 评论(0) 推荐(0) 编辑

2023年4月24日

摘要: NAME nproc - print the number of processing units availableSYNOPSIS nproc [OPTION]...DESCRIPTION Print the number of processing units available to the 阅读全文
posted @ 2023-04-24 11:34 dingyun 阅读(25) 评论(0) 推荐(0) 编辑

2023年4月21日

摘要: In the old days, "/opt" was used by UNIX vendors like AT&T, Sun, DEC and 3rd-party vendors to hold "Option" packages; i.e. packages that you might hav 阅读全文
posted @ 2023-04-21 13:57 dingyun 阅读(8) 评论(0) 推荐(0) 编辑

2022年7月24日

摘要: 注意将debugger下拉框改成jlink。 1 << n 左移指令 操作后1在bit n上,从零开始计。 << >> 可以看作在原数右端多出或减少的位数。 阅读全文
posted @ 2022-07-24 17:43 dingyun 阅读(20) 评论(0) 推荐(0) 编辑

2022年5月25日

摘要: https://phoenixnap.com/kb/ssh-permission-denied-publickey 在/etc/ssh/sshd_config中确认有以下设置 PasswordAuthentication yes. ChallengeResponseAuthentication no 阅读全文
posted @ 2022-05-25 20:17 dingyun 阅读(10) 评论(0) 推荐(0) 编辑

导航