ExpanDrive 是一款将云存储、云盘、服务器、ftp、webDav快速挂载为本地磁盘的工具,通过ExpanDrive映射后,你可以使用finder像浏览本地硬盘文件一样浏览管理云端数据。 内置在Finder和Explorer中 ExpanDrive将云存储(例如Google Drive,Dro ...
分类:
其他好文 时间:
2021-04-26 13:00:58
阅读次数:
0
GinAdmin 这个项目是以Gin框架为基础搭建的后台管理平台,虽然很多人都认为go是用来开发高性能服务端项目的,但是也难免有要做web管理端的需求,总不能再使用别的语言来开发吧。所以整合出了GinAdmin项目,请大家多提意见指正! GitHub地址 https://github.com/gph ...
分类:
Web程序 时间:
2021-04-24 13:57:01
阅读次数:
0
事件捕获 事件捕获中,父级元素先触发,子集元素后触发 事件会从最外层开始,直到具体的元素,比如click的捕获过程document->html->body->div->p 事件冒泡 事件冒泡时,子元素先出发,父级元素后触发 元素自身事件被触发后,如果父元素有相同的事件,那么元素本身的触发状态就会传递 ...
分类:
编程语言 时间:
2021-04-24 13:29:34
阅读次数:
0
canal源码及安装下载 https://github.com/alibaba/canal/releases canal(基于mysql数据库binlog的增量订阅&消费) - 简书 https://www.jianshu.com/p/6299048fad66 使用 Binlog 和 Canal 从 ...
分类:
数据库 时间:
2021-04-23 11:55:58
阅读次数:
0
交换机配置: 创建IPTV接口: IPTV跃点设置为20,防止上网走这个端口。 防火墙配置: config rule option target 'ACCEPT' option proto 'udp' option name 'IPTV-DHCP' option family 'ipv4' opti ...
分类:
其他好文 时间:
2021-04-22 16:16:44
阅读次数:
0
bool upsidedown_list(LinkList L) { Lnode *head, *tmp, *oldhead; head = L; tmp = L->next; oldhead = L; while (tmp) { oldhead->next = tmp->next; tmp->ne ...
分类:
编程语言 时间:
2021-04-22 15:16:52
阅读次数:
0
PostgreSQL 9.6安装 1、添加RPM sudo yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm 2、安 ...
分类:
数据库 时间:
2021-04-21 12:51:42
阅读次数:
0
PostgreSQL 9.6部署 参考:https://www.cnblogs.com/shhnwangjian/p/14680679.html https://docs.konghq.com/install/centos/ ...
分类:
其他好文 时间:
2021-04-21 12:50:51
阅读次数:
0
标题: #+空格=一级标题 #(数目)+空格=(几级)标题 字体 两边加**=加粗 *=斜体 ***=斜体加粗 ~~=删除线 引用 ">"+空格 分割线 “ ”=分割线 图片 “!+[截图]+(图片路径)" 路径:本地图片路径,网络图片路径 超链接 “[点击跳转]+(跳转地址)” 列表 1+.+空格 ...
分类:
其他好文 时间:
2021-04-20 15:20:03
阅读次数:
0
1 typedef int semaphore; 2 semaphore count_mutex = 1; 3 semaphore data_mutex = 1; 4 int count = 0; 5 6 void reader(){ 7 while(TRUE){ 8 down(&count_mut ...
分类:
其他好文 时间:
2021-04-20 15:08:36
阅读次数:
0