首页 > 2020年04月21日 > 全部分享
mysql数据库备份与还原
navicat客户端方式 通过navicat工具链接mysql服务器 1. navicat工具链接,如果连接成功,跳过步骤2 2. mysql服务开启远程链接 A. 给一个用户分配权限[ALL PRIVILEGES] 或者 读权限 https://www.cnblogs.com/albertYe/p ...
分类:数据库技术   时间:2020-04-21 17:38:12    收藏:0  评论:0  赞:0  阅读:73
200. 岛屿数量
200. 岛屿数量 https://leetcode-cn.com/problems/number-of-islands/ func numIslands(grid [][]byte) int { n := len(grid) if n == 0{ return 0 } //初始全部未访问过 fal ...
分类:其他   时间:2020-04-21 17:37:40    收藏:0  评论:0  赞:0  阅读:51
SQL Server常用语句
一、复制表 1.只复制表结构到一张新表 select * into [New Table] from [Old Table] where 1=2 2.复制表结构和数据到一张新表 select * into [New Table] from [Old Table] 二、日期函数 昨天:select * ...
分类:数据库技术   时间:2020-04-21 17:37:04    收藏:0  评论:0  赞:0  阅读:55
6-8 Percolate Up and Down (20分)
解题思路:小顶堆之向上高速+向下调整 void PercolateUp( int p, PriorityQueue H ){ H->Elements[0]=H->Elements[p]; int i; for(i=p/2;i>0;i/=2) { if(H->Elements[0]>=H->Eleme ...
分类:其他   时间:2020-04-21 17:36:35    收藏:0  评论:0  赞:0  阅读:66
zookeeper
原子广播 奔溃恢复 选举 zab 节点 分布式锁 watcher机制 羊群效应 ...
分类:其他   时间:2020-04-21 17:36:12    收藏:0  评论:0  赞:0  阅读:57
git 常用命令
1、添加文件 git add fileName git add . 添加当前下文件夹 git add 文件名1 文件名2 2、 创建文件 touch fileName 3、 创建文件夹 mkdir file 4、 提交文件 git commit -m "注释内容" 5、克隆git的项目 git cl ...
分类:其他   时间:2020-04-21 17:35:53    收藏:0  评论:0  赞:0  阅读:52
解决鼠标快速移动的时候,跟随鼠标移动的元素会脱落。
今天在用jq做的元素跟随鼠标移动的时候,发现当鼠标快速移动的时候,元素会脱落。 以下是代码 $('.notes-num-tips').mousedown(function(e){ var dx = e.offsetX; var dy = e.offsetY; console.log(e); $(do ...
分类:移动平台   时间:2020-04-21 17:35:18    收藏:0  评论:0  赞:0  阅读:110
C语言知识点复习
代码涵盖了C语言大部分基本的知识点,涉及后面的链表,文件,结构体等内容 在传参数的时候有对指针各种的操作,给出了一点思路。 在链表创建时,采用的是最传统的静态创建节点,在数据结构中会应用动态创建节点。 在文件中,需要在代码存放的地方放入两个 .txt 文件,并且在data.txt文件中放入数字,以空 ...
分类:编程语言   时间:2020-04-21 17:34:49    收藏:0  评论:0  赞:0  阅读:61
python_opencv修改视频分辨率
在测试alphapose时,原始视频的分辨率过高,导致网络难以运行,所以要修改视频的分辨率,代码如下: import cv2 cap = cv2.VideoCapture("videl_1.mp4") videowriter = cv2.VideoWriter("videl_640_360"+".a ...
分类:编程语言   时间:2020-04-21 17:34:27    收藏:0  评论:0  赞:0  阅读:601
spring boot 源码探索(一)
SpringBoot启动入口 @SpringBootApplication public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, arg ...
分类:编程语言   时间:2020-04-21 17:34:07    收藏:0  评论:0  赞:0  阅读:47
解决react hook组件卸载数据处于加载中渲染组件状态Can't perform a React state update on an unmounted component. This is a no-op, but it indicates a memory leak in your application. To fix, cancel all subscriptions an
Can't perform a React state update on an unmounted component. This is a no-op, but it indicates a memory leak in your application. To fix, cancel all ...
分类:移动平台   时间:2020-04-21 17:33:11    收藏:0  评论:0  赞:0  阅读:929
【膜拜大神系列】Python调用windows下DLL详解 - ctypes库的使用
https://blog.csdn.net/magictong/article/details/3075478 ...
分类:编程语言   时间:2020-04-21 17:32:45    收藏:0  评论:0  赞:0  阅读:50
java.lang.Runtime.exec() Payload Workarounds
来源:http://www.jackson-t.ca/runtime-exec-payloads.html 扣一下html代码,保存在本地方便查找,也方便增加。 <!DOCTYPE html> <html> <head> <title>java runtime exec usage...</titl ...
分类:编程语言   时间:2020-04-21 17:32:23    收藏:0  评论:0  赞:0  阅读:66
centos7.4 php5升级到php7
1. 删除php所有版本 yum -y remove php* 2. 安装php7 yum -y install php72w php72w-cli php72w-fpm php72w-common php72w-devel php72w-embedded php72w-gd php72w-mbst ...
分类:Web开发   时间:2020-04-21 17:32:08    收藏:0  评论:0  赞:0  阅读:205
字节流
①只要后缀Stream都是字节流,只要后缀write都是字符流; ② ③文件续写 FileOutputStream fos = new FileOutputStream(“路径名”,true); true的话续写 false的是覆盖 ④ 在需要换行的的地方前免+“\r\n”; 二、案例分析 : pa ...
分类:其他   时间:2020-04-21 17:31:43    收藏:0  评论:0  赞:0  阅读:65
mysql中删除数据的错误:You can't specify target table 'table_name' for update in FROM clause
在MySQL中,写SQL语句的时候 ,可能会遇到You can't specify target table '表名' for update in FROM clause这样的错误,它的意思是说,不能先select出同一表中的某些值,再update这个表(在同一语句中),即不能依据某字段值做判断再来 ...
分类:数据库技术   时间:2020-04-21 17:30:35    收藏:0  评论:0  赞:0  阅读:79
.NetCore程序在Linux上面部署的实现
我们知道.NetCore能够实现跨平台的根本就是内置Kestrel服务器实现请求处理和不同操作系统上反向代理的实现。在windows操作系统上IIS反向代理配置非常简单。但是Linux上就较为麻烦了。今天常老师在这里就给朋友们详细聊一下在Linux上面实现.NetCore程序部署的完整过程,对于做. ...
分类:Web开发   时间:2020-04-21 17:29:31    收藏:0  评论:0  赞:0  阅读:94
ReentrantReadWriteLock源码解析
应用场景 读多写少。读写锁,读读不互斥,写写、写读互斥。读多写少的话可以避免读读的互斥。 ReentrantReadWriteLock 构造函数 ReadLock和WriteLock是ReentrantReadWriteLock的内部类,构造函数将ReentrantReadWriteLock的syn ...
分类:其他   时间:2020-04-21 17:29:12    收藏:0  评论:0  赞:0  阅读:64
Apache、Nginx、IIs日志记录的各个字段内容与含义
一、Apache 1.文件名称及路径 当我们安装并启动Apache后,Apache会自动生成两个日志文件,这两个日志文件分别是: 访问日志access.log(在Linux中为access_log) 错误日志error.log(在Linux中为error_log) Windows中的日志文件,保存在 ...
分类:Web开发   时间:2020-04-21 17:28:42    收藏:0  评论:0  赞:0  阅读:117
<BEA-141281> <unable to get file lock, will retry ...> --reference
I ran into this error the first time I restarted Weblogic on one of my installs, the only reference that I was able to find is the error description b ...
分类:其他   时间:2020-04-21 17:28:19    收藏:0  评论:0  赞:0  阅读:142
1033条   上一页 1 ... 19 20 21 22 23 ... 52 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!