摘要:
前言 因为要做Google学术反向代理,正好nginx有个对应的模块,但版本不支持最新版nginx所以选择了旧版nginx 1.78版本,系统版本centos7。 安装Nginx 安装依赖 yum install gcc gcc-c++ automake pcre pcre-devel zlip z 阅读全文
摘要:
前言 最近写了个自动化脚本,会出现此类验证码,通过百度识图api和tesseract进行识别都不理想,在GitHub上找到该项目,经过训练精度已经达到90%左右,可用于生产环境中了。 项目地址: https://github.com/nickliqian/cnn_captcha/ 准备 训练环境 根 阅读全文
摘要:
报错提示: C:\Users\Administrator\Desktop\cnn_captcha>pip install --upgrade C:\Users\Administrator\Desktop\-1.15.2-cp36-cp36m-win_amd64.whl ERROR: tensorfl 阅读全文
摘要:
前端login.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <span>欢迎登录XXX管理系统</span> <form action= 阅读全文
摘要:
Jetty 运行报错: [INFO] [ERROR] No plugin found for prefix 'jetty' in the current project and in the plugin groups [org.apache.maven.plugins, org.codehaus. 阅读全文
摘要:
(1)问题1:实名登入sys用户,如何修改sys用户自己的密码?请用两种方法 SQL> alter user SYS identified by tiger; //第一种 用户已更改。 SQL> alter user scott identified by tiger; 用户已更改。 阅读全文
摘要:
Pyinstaller 安装 pip install pyinstaller Pyinstaller 打包命令 Pyinstall -F main.py -p [name.py] -p [name.py] Py程序能正常执行,打包后缺无法运行。 1. 注意模块名是否与内置模块冲突。 2.vcrunt 阅读全文
摘要:
一、简介 Oracle 数据库是甲骨文公司的一款关系数据库管理系统。它是在数据库领域一直处于领先地位的产品。可以说Oracle数据库系统是目前世界上流行的关系数据库管理系统,系统可移植性好、使用方便、功能强,适用于各类大、中、小、微机环境。它是一种高效率、可靠性好的、适应高吞吐量的数据库方案。 二、 阅读全文
摘要:
报错如图: ORA-28547:connection to server failed, probable Oracle Net admin errror 解决方法: 由于oracle数据库安装在本地,我就直接将oci.dll 路径设为oracle安装目录中的oci.dll 默认路径:安装路径\Na 阅读全文
摘要:
匿名登入Oracle sqlplus "/ as sysdba" 注:如cmd执行错误,请进入SQL Plus目录中执行。 激活scott用户 Alter user scott account unlock; 修改scott密码 alter user 用户名 identified by 密码; 测试 阅读全文