It has benn three months to learn the front-end development from back-end. I have some experience to share. 1. Firstly, read the API. If you can't und ...
分类:
编程语言 时间:
2017-11-10 14:34:17
收藏:
0 评论:
0 赞:
0 阅读:
177
import os import stringfrom PIL import Imagefrom reportlab.lib.pagesizes import A4, landscapefrom reportlab.pdfgen import canvasimport sys def file_na ...
分类:
编程语言 时间:
2017-11-10 14:34:01
收藏:
0 评论:
0 赞:
0 阅读:
956
背景是项目中使用Spring Security 进行安全控制 再使用Ajax的时候会报 403(ajax get 方式是没问题的 post 的时候会报) Spring Security 原本是 防止 CSRF 攻击 现在 ajax 被误伤了... 然后下面贴解决方法,页面的head标签里 下记追加 ...
分类:
编程语言 时间:
2017-11-10 14:33:51
收藏:
0 评论:
0 赞:
0 阅读:
451
Python的正则表达式默认是“贪心匹配”,即在有第二义的情况下,尽可能匹配最长的字符串,在正则表达式的花括号后面跟上问号,可以变为非贪心模式 >>> >>> haRegex=re.compile(r'(ha){3,5}')>>> m=haRegex.search('hahahahahaha')>> ...
分类:
编程语言 时间:
2017-11-10 14:33:37
收藏:
0 评论:
0 赞:
0 阅读:
267
grid:olsnodes -s列出集群中节点crsctl check cluster -all检查几圈状态crsctl check clustercrsctl check crs 检查当前节点srvctl status scan_listener查看scan监听器的状态crsctl stat re ...
分类:
其他 时间:
2017-11-10 14:33:23
收藏:
0 评论:
0 赞:
0 阅读:
286
1.下载并解压Maven 2.配置环境变量(M2_HOME,Path) 3.配置Maven配置文件(本地仓库路径,镜像) ...
分类:
其他 时间:
2017-11-10 14:33:12
收藏:
0 评论:
0 赞:
0 阅读:
244
1.使用终断(terminal),cd到桌面。指令:cd Desktop $ cd Desktop/ 2.克隆项目。指令:git clone 项目地址 $ git clone https://github.com/liuhuakun/BrushShots.gi 3.上一步clone成功后,桌面上会生 ...
分类:
Web开发 时间:
2017-11-10 14:32:55
收藏:
0 评论:
0 赞:
0 阅读:
340
热门虚拟机软件VMware Workstation Pro 14.0 全新版本发布,此次更新了诸多客户机操作系统版本,另外完全兼容Wind10创建者更新支持。12.0之后属于大型更新,专门为Win10的安装和使用做了优化,支持DX10、4K高分辨率显示屏、OpenGL 3.3、7.1声道及各种新硬件 ...
分类:
系统服务 时间:
2017-11-10 14:32:39
收藏:
0 评论:
0 赞:
0 阅读:
246
1.请看以下“变态”的类 public class ParentChildTest { public static void main(String[] args) { Parent parent=new Parent(); parent.printValue(); Child child=new ...
分类:
其他 时间:
2017-11-10 14:32:24
收藏:
0 评论:
0 赞:
0 阅读:
244
/*打鱼晒网问题*/ #include //定义一个函数判断是否为闰年 int leap(int a) { if(a%4==0&&a%100!=0||(a%400==0)) return 1; else return 0; } //自定义函数number(),计算输入的日期为该年的第几天 int n... ...
分类:
其他 时间:
2017-11-10 14:31:55
收藏:
0 评论:
0 赞:
0 阅读:
248
1、root用户登陆后,运行以下第一句指令,其他根据提示进行输入: ssh-keygen -t rsaGenerating public/private rsa key pair.Enter file in which to save the key (/root/.ssh/id_rsa): 建议直 ...
分类:
其他 时间:
2017-11-10 14:31:42
收藏:
0 评论:
0 赞:
0 阅读:
239
由于个人是Android小白,在这个配置上面被折磨了很久,因此写下这篇文章 工具:eclipse + unity5.6.1 首先去百度地图开发者平台下载你需要的资源,我只需要显示地图和定位,这个时候你一定要注意了,一定要把你所需要的功能全部选择了再下载,要不然BaiduLBS_Android.jar ...
分类:
移动平台 时间:
2017-11-10 14:31:33
收藏:
0 评论:
0 赞:
0 阅读:
317
1.常见的错误 我们在使用python过程中会出现: (1)SyntaxError 句法错误。 (2)IndentationError 缩进错误。 (3)NameError 变量未定义错误。 (4)TypeError 类型错误。 2.处理异常 我们使用try...except 来处理异常: 基本语法 ...
分类:
编程语言 时间:
2017-11-10 14:31:19
收藏:
0 评论:
0 赞:
0 阅读:
300
Recurrent Function Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 1233 Accepted: 336 Description Dr. Yao is involved in a secret research ...
分类:
其他 时间:
2017-11-10 14:30:40
收藏:
0 评论:
0 赞:
0 阅读:
282
前言 有不少小伙伴在安装selenium环境后启动firefox报错,因为现在selenium升级到3.0了,跟2.0的版本还有有一点区别的。 安装环境过程中主要会遇到三个坑: 1.'geckodriver' executable needs to be in PATH 2.Expected bro ...
分类:
编程语言 时间:
2017-11-10 14:30:03
收藏:
0 评论:
0 赞:
0 阅读:
318
效果描述:当下拉的时候渐变产生对固定的搜索框 ...
分类:
其他 时间:
2017-11-10 14:29:37
收藏:
0 评论:
0 赞:
0 阅读:
565
1 首先修改/etc/oratab文件添加如下行:ycr:/u01/app/oracle/product/12.1.0/dbhome_1:Y关于/etc/oratab文件解释如下:# This file is used by ORACLE utilities. It is created by ro ...
分类:
数据库技术 时间:
2017-11-10 14:29:23
收藏:
0 评论:
0 赞:
0 阅读:
226
报错如下: System.IO.FileLoadException: 未能加载文件或程序集“file:///D:\WindowsService\bin\Debug\WindowsService.exe”或它的某一个依赖项。不支持操作。 (异常来自 HRESULT:0x80131515)。 原因:ex ...
分类:
Windows开发 时间:
2017-11-10 14:29:04
收藏:
0 评论:
0 赞:
0 阅读:
542
1、form-data: 就是http请求中的multipart/form-data,它会将表单的数据处理为一条消息,以标签为单元,用分隔符分开。既可以上传键值对,也可以上传文件。当上传的字段是文件时,会有Content-Type来表名文件类型;content-disposition,用来说明字段的 ...
分类:
Web开发 时间:
2017-11-10 14:28:54
收藏:
0 评论:
0 赞:
0 阅读:
228
分布式TensorFlow由高性能gRPC库底层技术支持。Martin Abadi、Ashish Agarwal、Paul Barham论文《TensorFlow:Large-Scale Machine Learning on Heterogeneous Distributed Systems》。 ...
分类:
其他 时间:
2017-11-10 14:28:38
收藏:
0 评论:
0 赞:
0 阅读:
496