上一页 1 2 3 4 5 6 7 8 ··· 13 下一页
摘要: 卸载OpenJDK apt-get remove openjdk* Oracle JDK安装 1. 下载JDK 下载地址:https://www.oracle.com/java/technologies/downloads/ 建议本地下载之后使用FTP上传到服务器上 版本选择 x64 Compres 阅读全文
posted @ 2022-04-16 22:36 Bin_x 阅读(60) 评论(0) 推荐(0)
摘要: 使用查询语句查询状态 show global variables like '%lower_case%'; 0为区分大小写,1为不区分大小写,会自动将查询表名转为小写 在配置文件mysqld节点下设置参数值 lower_case_table_names = 1 排序规则 mysql的排序规则,末尾通 阅读全文
posted @ 2022-04-16 20:23 Bin_x 阅读(956) 评论(0) 推荐(0)
摘要: nodejs 安装nodejs 12 1. 开始菜单右键管理员运行powershell 2. 设置代理 $env:HTTP_PROXY="http://127.0.0.1:10809" $env:HTTPS_PROXY="http://127.0.0.1:10809" 3. nvm安装 nvm in 阅读全文
posted @ 2022-04-12 16:17 Bin_x 阅读(75) 评论(0) 推荐(0)
摘要: 临时解决方案 命令行运行 set global log_bin_trust_function_creators=TRUE; 永久解决方案 在配置文件中,[mysqld]节点下,添加配置 log_bin_trust_function_creators = 1 阅读全文
posted @ 2022-04-12 14:53 Bin_x 阅读(26) 评论(0) 推荐(0)
摘要: 下面是一些在平时开发的小技巧,或者是不怎么用到的,比较容易混乱的知识 数据比较 == 两个等号在大多数情况下,是转换成数字进行比较 所以 [] == false 是 true,因为等号两边转换成数字都是0 而 ![] == false 同样为 true,因为 ![] 转换成布尔类型就是 false 阅读全文
posted @ 2022-04-09 18:31 Bin_x 阅读(28) 评论(0) 推荐(0)
摘要: MinGW安装 1. 下载压缩包 https://sourceforge.net/projects/mingw-w64/files/ 2. 解压 3. 将解压目录的bin目录加入到环境变量中 4. 打开命令行,运行 gcc -v 验证安装。 CLion安装 1. 下载CLion https://ww 阅读全文
posted @ 2022-04-08 14:34 Bin_x 阅读(130) 评论(0) 推荐(0)
摘要: 1. 安装go语言开发环境,下载地址 https://golang.google.cn/dl/ 2. 下载RTSPwoWeb,地址 https://github.com/deepch/RTSPtoWeb 3. 解压目录,命令行运行 go env -w GO111MODULE=on 设置环境 4. 修 阅读全文
posted @ 2022-03-30 08:11 Bin_x 阅读(177) 评论(0) 推荐(0)
摘要: let $ = jQuery = (function () { // 伪构造函数,用于jquery对象 function construct(dom, selector) { let i, len = dom ? dom.length : 0 for (i = 0; i < len; i++) th 阅读全文
posted @ 2022-03-19 23:52 Bin_x 阅读(90) 评论(0) 推荐(0)
摘要: 构造函数 Function的构造函数是它本身,Object,String,Number,Date,Array的构造函数均是Function,万物皆Function Function // ƒ Function() { [native code] } prototype prototype是函数才有的 阅读全文
posted @ 2022-03-17 10:31 Bin_x 阅读(32) 评论(0) 推荐(0)
摘要: function deepClone(source) { if (source null || typeof source !== 'object') return source; const target = source.constructor Array ? [] : {} for (let 阅读全文
posted @ 2022-03-08 08:37 Bin_x 阅读(24) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 13 下一页