0 引言 本文将常用的指令记录下来,以备查询。 1 git Command Meaning Reference Linking git status view all files' state, tracked or untracked, commited or un commited git st ...
分类:
系统相关 时间:
2021-02-19 13:10:17
阅读次数:
0
异常:This application has no explicit mapping for /error, so you are seeing this as a fallback. 挖坑埋你 2018-03-12 12:49:46 65012 收藏 2 分类专栏: Questions 从菜鸟到 ...
分类:
移动开发 时间:
2021-02-18 13:55:14
阅读次数:
0
python函数注释,参数后面加冒号:,函数后面的箭头→是什么? python的函数注释: def f(text:str,max_len:'int>0'=80) ->str: """这个是函数的帮助说明文档,help时会显示""" return True """ 函数声明中,text:str tex ...
分类:
编程语言 时间:
2021-02-18 13:29:52
阅读次数:
0
在springmvc.xml配置: <!-- 处理请求返回json字符串的乱码问题 --> <mvc:annotation-driven> <mvc:message-converters> <bean class="org.springframework.http.converter.StringH ...
分类:
编程语言 时间:
2021-02-18 12:59:23
阅读次数:
0
安装 #!/bin/bash # Kali GNU/Linux Rolling apt-get install pasystray 常见错误列表 #1 (pasystray:30116): pasystray-WARNING **: [notify] unable to show notificat ...
分类:
其他好文 时间:
2021-02-17 14:46:33
阅读次数:
0
数据库中删除的三种语句: Delete:用于删除表中的行,可以删除某一行,也可以在不删除表的情况下删除所有的行。 Drop:用于删除表,将表的结构、属性、索引全部删除。 Truncate:用于删除表内的数据,仅删除表内数据,不删除表本身。 数据库中删除语句的相同点: truncate和不带where ...
分类:
其他好文 时间:
2021-02-17 14:31:21
阅读次数:
0
以法向量和光源位置为基础的光强计算有以下两种方法 **方法1:**在世界坐标系中计算(即在模型经过model变换后进行光照的计算) **方法2:**在相机坐标系中计算(即在模型经过model,view变换后计算) 方法1 因为模型为了从模型坐标系变换到世界坐标系可能会做平移、旋转、缩放等变换,而原本 ...
分类:
其他好文 时间:
2021-02-17 14:21:04
阅读次数:
0
目录结构 引用路径 <link rel="stylesheet" href="../static/layui/css/layui.css" type="text/css"/> application.properties spring.mvc.static-path-pattern=/static/ ...
分类:
编程语言 时间:
2021-02-17 14:04:34
阅读次数:
0
1、创建新的表空间 create undo tablespace undo_new datafile '/u01/oracle/oradata/yscsfhx/newundotbs01.dbf' size 5m; View Code 2、切换到新的Undo表空间上 alter system set ...
分类:
其他好文 时间:
2021-02-16 12:25:14
阅读次数:
0
<!--Jackson JSON乱码问题配置--> <mvc:annotation-driven> <mvc:message-converters register-defaults="true"> <bean class="org.springframework.http.converter.St ...
分类:
编程语言 时间:
2021-02-16 11:57:16
阅读次数:
0