Courtesy Notice: Pipenv found itself running within a virtual environment, so it will automatically use that environment, instead of creating its own ...
分类:
编程语言 时间:
2020-07-26 02:03:02
阅读次数:
95
1.今日学习内容: servlet 的体系结构 http的请求消息数据格式 request对象和原理 request的功能 用JDBCtemplate,druid,mysql,html等技术练习登录案例 2.遇到的困难: 登录案例 404 not found 弄了几个小时,还未解决 3.明日学习内容 ...
分类:
其他好文 时间:
2020-07-26 01:33:30
阅读次数:
78
Creating a GUI the way we just did works okay for very small scripts, but a much more scalable approach is to subclass Tkinter widgets to create compo ...
分类:
其他好文 时间:
2020-07-26 00:40:59
阅读次数:
61
公司项目依赖了sonar检查,默认使用的是sonar-maven-plugin:3.7.0.1746版本。在执行sonar扫描时提示: SCM provider was set to "git" but no SCM provider found for this key. 这个原因在于sonar的 ...
分类:
其他好文 时间:
2020-07-25 23:41:22
阅读次数:
125
os常用命令 os.sep:取代操作系统特定的路径分隔符 os.name:指示你正在使用的工作平台。比如对于Windows,它是'nt',而对于Linux/Unix用户,它是'posix'。 os.getcwd:得到当前工作目录,即当前python脚本工作的目录路径。 os.getenv()和os. ...
分类:
编程语言 时间:
2020-07-25 23:27:40
阅读次数:
74
终端中 fn+向上/向下 翻页 command+向上/向下 跳转到上次执行命令的位置 ls ls -a 显示所有文件包括隐藏 ls -t 按照创建时间排序 ls -l 显示文件读写,归属,内容大小等信息 file 文件名 显示文件类型 head 20 文件名 显示文件前20行信息 tail -f 文 ...
分类:
系统相关 时间:
2020-07-24 19:05:55
阅读次数:
85
问题背景: 使用spark datasource v2 接口,外接存储源时,发现更改项目版本后,spark-shell报错 搜索该错误无果,网上报什么window util错,并不是我遇到的问题. error: not found: value spark Exception in thread " ...
分类:
编程语言 时间:
2020-07-24 15:52:06
阅读次数:
115
Comments 注释简介 Let's take a quick break from programming and talk about comments. Comments help programmers understand what exactly the computer progra ...
分类:
其他好文 时间:
2020-07-24 09:19:32
阅读次数:
81
selenium webdriver源码结构 Python版的源码结构,只看webdriver相关 selenium-master\py\selenium\webdriver\remote 下的文件 |-- command.py 命令相关 |-- errorhandler.py 错误处理 |-- f ...
分类:
Web程序 时间:
2020-07-23 22:41:04
阅读次数:
193
1.nohup 用途:不挂断地运行命令。如果你正在运行一个进程,而且你觉得在退出帐户时该进程还不会结束,那么可以使用nohup命令。该命令可以在你退出帐户/关闭终端之后继续运行相应的进程。 语法:nohup Command [ Arg … ] [ & ] 无论是否将 nohup 命令的输出重定向到终 ...
分类:
系统相关 时间:
2020-07-23 22:39:57
阅读次数:
134