#ping whole local domainfor ip in {1..255};do ping -c 3 192.168.110.$ip >> ping.log;done grep '3 ttl' ping.log |awk '{print $4}' | sed 's\:\\g' |while ...
分类:
系统相关 时间:
2021-06-02 20:19:59
阅读次数:
0
思路:1.搜索静态页面,展示热门搜索关键词:点击关键词,自动填入搜索框,并实时得到搜索结果。 小细节:如果搜索框里有内容,则会出现“X”清除搜索内容,并回到默认页面。2.手动输入搜索关键词,会给相似推荐的关键词,点击关键词进行搜索相关歌曲 API接口使用: https://binaryify.git ...
分类:
其他好文 时间:
2021-06-02 20:08:57
阅读次数:
0
Bad habits : Putting NOLOCK everywhere [See an index of all bad habits / best practices posts] I went through the archive above, and was quite surpris ...
分类:
其他好文 时间:
2021-06-02 19:46:42
阅读次数:
0
git reset --soft HEAD^ git reset --soft HEAD~1 –soft不删除工作空间改动代码,撤销commit,不撤销git add . –mixed意思是:不删除工作空间改动代码,撤销commit,并且撤销git add . 操作这个为默认参数,git reset ...
分类:
其他好文 时间:
2021-06-02 19:42:32
阅读次数:
0
主从复制 Redis 的主从、哨兵架构:https://www.cnblogs.com/yufeng218/p/13443058.html 从 redis 5.0.0 开始 salveof 命令 由 replicaof 命令替换 如果在配置文件中 配置了 replicaof,如下: replicao ...
分类:
其他好文 时间:
2021-06-02 19:02:34
阅读次数:
0
每个程序员都有一个游戏梦,都想开发一款让别人爱不释手的游戏。游戏开发引擎很多像Unity 3D,cocos2d,白鹭(Egret),LayaBox,threeJs等等。一个偶然的机会,看到gitee上举办趣味魔改贪吃蛇游戏,出于程序员的自信心的驱使,加上爱折腾的心思便果断报名参加了。今天和大家一起看 ...
分类:
编程语言 时间:
2021-06-02 18:49:36
阅读次数:
0
使用Python对word文档进行操作 一、安装Python-docx Python-docx是专门针对于word文档的一个模块,只能读取docx 不能读取doc文件。说白了,python就相当于windows操作系统,QQ就是跑在windows操作系统上的软件,QQ最大的作用是可以去聊天,说话。 ...
分类:
其他好文 时间:
2021-06-02 18:48:27
阅读次数:
0
简介 链表中倒数第K个节点. 思路 双指针, 然后一个指针延迟运行. code class Solution { public: ListNode* getKthFromEnd(ListNode* head, int k) { ListNode *p = head; ListNode *pk = h ...
分类:
其他好文 时间:
2021-06-02 18:31:26
阅读次数:
0
转自: 看雪:https://zhuanlan.kanxue.com/article-10602.htm CSDN实例代码:https://jrhar.blog.csdn.net/article/details/91554650?utm_medium=distribute.pc_relevant.n ...
redis的List存储结构:一个链表加上压缩列表实现的 redis c语言源码双向循环列表# define QL_FILL_BITS 16# define QL_COMP_BITS 16# define QL_BM_BITS 4 /typedef struct quicklist { quickl ...
分类:
其他好文 时间:
2021-06-02 18:11:23
阅读次数:
0