To be a better coder
发布时间:2018-12-12 11:07:26
http://m.elecfans.com/article/641467.html5G的WIFI信道选择相当重要,在不同的国家为了保证政府与军用部分与5G相交频道的使用,通过网卡驱动锁定或路由器固件锁定了5G的WIFI信道使用权限,而这些被锁定的频道,使用性能都是相对好,受到自然或非自然因素干扰最少的;而突破这些限制,才能发挥5G的WIFI真正性能。.........【阅读全文】
发布时间:2018-12-11 17:01:03
Solution was to go into the BIOS and switch off UEFI Windows Secure boot.As I keep doing, I'd set my security to a level that inconveniences only me.Solved, case closed.......【阅读全文】
发布时间:2018-12-06 11:05:47
[root@localhost scripts]# cat license_check.sh #!/bin/bashresult=0result0=0ip=""cpu=""hz=""uuid=""http=""time=10while :douuid=`cat /uuid`cpu=`lscpu | grep "CPU(s):" | grep -v NUMA | awk '{print $2}'`hz=`lscpu | grep "CPU MHz" | awk '{print $3}'`ip=`cat /etc/yunhai.ini | grep cloud |.........【阅读全文】
发布时间:2018-12-05 16:29:15
特别说明,本文是从《让你不再害怕指针》里整理而来,向原作者致敬! 1、int p; 这是一个普通的整型变量。 2、int *p; 首先从p处开始,先与*结合,所说明p是一个指针; 然后再与int 结合,说明指针所指向的内部的类型是int型; 所以p是一个返回整型数据的指针。 3、int p[3]; 首先从p处开始,先与[...
......【阅读全文】