摘要: /** * 禁用右键菜单 */ document.oncontextmenu = function(){ event.returnValue = false; }; /** * 禁用选中功能 */ document.onselectstart = function(){ event.returnVa 阅读全文
posted @ 2020-08-12 11:10 fqzh 阅读(201) 评论(0) 推荐(0)
摘要: 1.下载chrome浏览器 wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb 或者 https://www.chrome64bit.com 2.安装 gdeb apt-cache search 阅读全文
posted @ 2020-07-21 11:02 fqzh 阅读(196) 评论(0) 推荐(0)
摘要: 运行cmd命令行 忘记密码 录入 sqlplus /nolog 无用户名登录 conn /as sysdba 连接到数据本地数据 alter user system identified by password; 修改System 密码 为password 解锁方法 alter user syste 阅读全文
posted @ 2020-07-19 16:33 fqzh 阅读(225) 评论(0) 推荐(0)
摘要: cat /proc/version fc-list :lang=zh-cn(查看字体) sudo apt install -y --force-yes --no-install-recommends fonts-wqy-microhei sudo apt install -y --force-yes 阅读全文
posted @ 2020-07-15 17:40 fqzh 阅读(673) 评论(0) 推荐(0)
摘要: #!/usr/bin/python # -*- coding:utf-8 -*- 阅读全文
posted @ 2020-06-28 21:20 fqzh 阅读(178) 评论(0) 推荐(0)
摘要: pip install mysql-connector -i http://pypi.douban.com/simple --trusted-host pypi.douban.com mysql-connector是 MySQL 官方提供的驱动器。 import mysql.connector pi 阅读全文
posted @ 2020-06-28 21:16 fqzh 阅读(93) 评论(0) 推荐(0)
摘要: 合抱之木,生于毫末; 九层之台,起于垒土; 千里之行,始于足下。 老子 阅读全文
posted @ 2020-06-16 22:40 fqzh 阅读(69) 评论(0) 推荐(0)