码迷,mamicode.com
首页 >  
搜索关键字:not currently be hit    ( 3599个结果
ubuntu启动redis
# ubuntu下 redis的安装使用 - ## 安装 ### 1. 进入redis安装路径 ` cd ~/installed/redis-5.0.7 ` ### 2. 启动redis ` redis-server ` ...
分类:系统相关   时间:2020-01-30 12:36:01    阅读次数:156
Egret学习-坦克大战开发(三)
实现玩家坦克的移动 基本流程 1.鼠标点击目标位置 2.坦克移动到指定位置,不能斜向移动,只能水平或垂直移动 3.可以简单寻路,如果中途遇到障碍,自动转向, 鼠标点击目标位置,将位置记录在坦克,在循环中移动到目标位置,同时判断是否遇到障碍, 给背景添加鼠标点击事件 1 let bg = this.c ...
分类:其他好文   时间:2020-01-29 17:48:41    阅读次数:93
XSS漏洞基础入门
前言 XSS漏洞 Xss(Cross-Site Scripting)意为跨站脚本攻击,为了不和层叠样式表(Cascading Style Sheets,CSS)的缩写混淆,故将跨站脚本攻击缩写为XSS。XSS漏洞是一种在WEB应用中常见的安全漏洞,它孕育用户将恶意代码植入web页面,当其他用户访问此 ...
分类:其他好文   时间:2020-01-29 10:44:55    阅读次数:87
Codeforces Trainning Plan
Hey Guys I am back to my path of training, I am currently studying at UNSW and i am preparing to do ACM-ICPC in my uni life. I will be recording my tr ...
分类:其他好文   时间:2020-01-28 21:06:35    阅读次数:69
web.xml
web.xml各个版本文件头: Servlet 3.1 Java EE 7 XML schema, namespace is http://xmlns.jcp.org/xml/ns/javaee/ <?xml version="1.0" encoding="UTF-8"?> <web-app xml ...
分类:Web程序   时间:2020-01-28 20:49:23    阅读次数:82
UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure
>>> plt.show() __main__:1: UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure. 原因: 发现发生在 coco.py 文件... ...
分类:其他好文   时间:2020-01-28 13:49:29    阅读次数:266
Golang 反射
反射是 运行时获取、修改对象内部结构的能力 函数 reflect.TypeOf() reflect.ValueOf() 示例 package basicTest import ( "fmt" "reflect" ) func (u User) GetName() string { return u. ...
分类:其他好文   时间:2020-01-28 00:03:08    阅读次数:112
stringstream:数据类型的转换
目录 - 概述 - 用法 - 数据类型转换 - 清空sstream - 字符串拼接 概述 <sstream> 定义了三个类: istringstream流的输入ostringtream流的输出stringstream流的输入输出 <sstream>主要用来进行数据类型转换。 <sstream>使用s ...
分类:其他好文   时间:2020-01-27 21:55:01    阅读次数:76
自定义xmlhttprequest
/** * xhr_proxy.js * 通过劫持原生XMLHttpRequest实现对页面ajax请求的监听 * @author binaryfire */ const READY_STATE_CHANGE = 'readystatechange'; let gHandlerList = [],/ ...
分类:Web程序   时间:2020-01-26 22:37:21    阅读次数:130
函数嵌套定义
1.1 def outer(): a = 1 def inner(): print(a) a += 1 print('inner ') inner() outer() 内部函数可以使用外部函数的变量。 # python3 nonlocal 1.2 闭包: 嵌套的函数,内部函数调用外部函数的变量。 1 ...
分类:其他好文   时间:2020-01-26 11:49:36    阅读次数:79
3599条   上一页 1 ... 37 38 39 40 41 ... 360 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!