micropython擦除烧录esp8266固件的代码 esptool.py --port COM3 erase_flashesptool.py --port COM3 --baud 460800 write_flash --flash_size=detect 0 esp8266.bin python 2024-08-25 34 点赞 0 评论 51 浏览
oracle逻辑备用数据库(一) 1、主数据库上查询数据字典视图 dba_logstdby_skip,可以显示逻辑备用数据库要跳过的数据库方案。SQL> select username from dba_users where username not... 数据库 2024-01-11 28 点赞 0 评论 42 浏览
网络病毒的防范常识 1、重要资料,必须备份。资料是最重要的,程序损坏了可重新COPY,甚至再买一份,但是自己键入的资料,可能是三年的会计资料,可能是画了三个月的图片,结果某一天,硬盘坏了或者因为病毒而损坏了资料,会让人欲哭无泪,所以对于重要资料经常备份是绝对必要的。 2、备好启动软盘,并贴上写保护。检查电脑的任何问题,或者是解毒,最好在没有病毒干扰的环境下进行,才能完整测出真正的原因,或是彻... Other 2023-09-11 34 点赞 0 评论 51 浏览
C语言函数结构体指针参数实现按索引取数组的返回值调用 源码:#include <stdio.h>#include <string.h>struct book{ int array[6]; int num ;};int fun(struct book *q) //函数类型为double,返回值也必须是double{ int ret1; int ret2; int i; ret1 = q->num + 2020; ret2 = q-& C/C++ 2023-08-01 66 点赞 1 评论 100 浏览
java websocket心跳包_给websocket加入心跳包防止自动断开连接 reconnect(url) {if(lockReconnect) return;lockReconnect = true;setTimeout(function () { //没连接上会一直重连,设置延迟避免请求过多createWebSocket(url);lockReconnect = false;}, 2000);}//心跳检测var heartCheck = {timeout: 5... java websocket心跳包 2023-06-17 44 点赞 0 评论 66 浏览