1.盘符切换 盘符 + 英文冒号 D:C:\Users\zff>D: 2.查看当前目录下的所有 文件夹 dir命令 比如 D:\>dir 3.切换目录 cd (change directory) 比如 D:\>cd /d c: 可以在D盘直接切换到C盘 cd .. 表示返回上一级 4.清理屏幕 D: ...
分类:
其他好文 时间:
2021-04-29 11:47:14
阅读次数:
0
1、下载文件:instant-client 下载地址:https://www.oracle.com/database/technologies/instant-client/macos-intel-x86-downloads.html 2、创建tnsnames.ora文件 在此目录中/Users/x ...
分类:
数据库 时间:
2021-04-26 13:51:40
阅读次数:
0
# Markdown学习 ## 标题 ### 三级标题 字体 **Hello,World!** * Hello,World!* ***Hello,World!*** ~~Hello,World!~~ 引用 > Hello,World! 分割线 *** 图片 ![截图](C:\Users\WG\Des ...
分类:
其他好文 时间:
2021-04-22 15:26:45
阅读次数:
0
一.安装 1.下载官网:https://tomcat.apache.org/ 2.将下载后的包解压到目录中会出现以下页面 3.设置环境变量,向path中添加tomcat的bin目录地址 4.cmd进入tomcat的bin目录,输入:service.bat install 4.启动与关闭: ? 启动: ...
分类:
其他好文 时间:
2021-04-22 15:15:50
阅读次数:
0
tensorflow-hub介绍 tfhub.dev包含一系列模型,根据处理对象Problem domain分成了四类:Image, Text, Vedio, Audio 模型格式 模型格式又可分为TF.js, TFLite, Coral TF.js 是用于浏览器的模型。ref TFLite 使用的 ...
分类:
其他好文 时间:
2021-04-21 11:56:03
阅读次数:
0
open -n /Applications/Google\ Chrome.app/ --args --disable-web-security --user-data-dir=/Users/hooliy/Documents/MyChromeDevUserData open -n /Applicati ...
分类:
系统相关 时间:
2021-04-21 11:49:55
阅读次数:
0
1. Overview JasperReports is an open source reporting library that enables users to create pixel-perfect reports that can be printed or exported in ma ...
分类:
编程语言 时间:
2021-04-21 11:48:33
阅读次数:
0
同事离职了,接手了他的代码。。 有客户反馈登录密码错误后被锁定不会解锁,或者错误一次就被锁定(???)。 不多比比,直接代码看看 //登陆失败次数 int FailedCount = 0; if (null == Request.Cookies["FailedError"]) { HttpCooki ...
分类:
其他好文 时间:
2021-04-21 11:44:18
阅读次数:
0
SQL注入 一、LOW难度SQL注入 1.判断注入类型 1.输入1 2.输入 1' and 1=2,报错 3.输入 1' and 1=2 #,无报错 得知为字符型注入 2.猜字段数 方法有两种: ① 1' order by N # ② 1' union select 1, 2, ... # 采用第一 ...
分类:
Web程序 时间:
2021-04-20 15:02:48
阅读次数:
0
##Socket函数 #include <sys/types.h> #include <sys/socket.h> int socket(int domain, int type, int protocol); domain 协议族: AF_OCAL, AF_INT, AF_INET7 type S ...
分类:
其他好文 时间:
2021-04-19 15:04:18
阅读次数:
0