全部文章-周排行
Topic 1: Regarding Level In general, a college grad dev or PM will start at 59. 59 and 60 are level 1 (ie, PM) 61 and 62 are level 2 (ie, PM II) 63 and 64 are Senior (ie, Senior PM) 65 through ...
分类:其他 时间:2014-08-19 10:57:04 收藏:0 阅读:2068
要统计一个字符串出现的次数,这里现提供自己常用两种方法:1. 使用vim统计用vim打开目标文件,在命令模式下,输入:%s/objStr//gn即可2. 使用grep:grep -o objStr filename|wc -l如果是多个字符串出现次数,可使用:grep -o ‘objStr1\|o....
分类:系统服务 时间:2014-08-31 17:09:31 收藏:0 阅读:1908
基本逻辑是:1、定义一个客户端2、定义一个方法(GET,POST等)3,、客户端执行这个方法并返回内容/* * ==================================================================== * Licensed to the Apache ...
分类:Web开发 时间:2014-10-22 00:25:52 收藏:0 阅读:3763
1.%允许来自任何ip的连接 localhost允许本机的连接 2. dbfor studio mysql 6.2.280 %的情况,使用backup databases,倒出来的SQL文件,在另外一个数据库中导入(restore database)不进去 localhost的情况,使用backup databases,倒出来的SQL文件,在另外一个数据库中可以正常导入3.  ...
分类:数据库技术 时间:2014-11-06 22:07:25 收藏:0 阅读:2478
在使用git  init --bare 进行建立裸仓库之后,在使用git 其它的命令都会出现fatal:This operation must be run in a work tree 问题,处理方法:         先touch readme 因为在创建裸仓库时,没有生成readme 文件,出现不能提交的情况。之后就可以使用git init,git add readme  git com...
分类:其他 时间:2015-03-12 19:15:38 收藏:0 阅读:12941
各向异性扩散,也叫做P–M扩散,在图像处理和计算机视觉中广泛用于保持图像细节特征的同时减少噪声。...
分类:其他 时间:2015-06-07 09:46:47 收藏:0 阅读:1500
重写mouseDoubleClickEvent(QMouseEvent event)*实例:双击窗口时输出“sss” /*widget.h*/ #ifndef WIDGET_H #define WIDGET_H#include #includeclass Widget : public QWidget { Q_OBJECT public: Widge...
分类:其他 时间:2015-07-28 10:56:38 收藏:0 阅读:17986
NSError *error; NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:Online_Case_Lists]]; NSData *response = [NSURLConnection s.....
分类:移动平台 时间:2015-10-14 10:29:40 收藏:0 阅读:2539
@Resource private EntityManagerFactory entityManagerFactory; public Date getMaxCreatetime(){ EntityManager em = entityManagerFactory.createEntityMana....
分类:编程语言 时间:2015-10-19 12:44:18 收藏:0 阅读:10572
Ticket 管理KerberosTicket的若干属性:forwardable 简单来讲,KDC可以基于该类型TGT发放新的TGT,即使 network address不同。这样不需要再次输入密码。proxiable类似于forwardable,但是不同的是只允许service继承client的认...
分类:其他 时间:2015-12-04 22:57:06 收藏:0 阅读:4836
转自:http://www.cnblogs.com/kooo/articles/3987201.html 参考: http://docs.opencv.org/3.0.0/db/d58/group__calib3d__fisheye.html#gga91b6a47d784dd47ea2c76ef656d7c3dca0899eaa2f96d6eed9927c4b4f4464e05 http://...
分类:其他 时间:2016-05-18 10:49:20 收藏:0 阅读:2702
报如下错误 解决方法: 方法一:(结果不起作用) 通过Shell命令方式,hadoop/bin/hdfs haadmin -failover --forceactive hadoop2 hadoop1(注意,这种方式本来是在手动故障恢复中进行强制切换NameNode的做法) 返回结果,不支持,并且诚 ...
分类:数据库技术 时间:2016-10-09 06:50:25 收藏:0 阅读:4551
前两天好好的程序在Xcode 8 4s(8.4)真机的时候遇到上图错误,但是在5s、6s上都能正常运行,第一反应百度--然后根据百度经验: 如果真机调试就是 undefined symbols for architecture armv7错误! 发生这种错误通常是project.pbxproj这个文 ...
分类:其他 时间:2016-10-21 20:00:25 收藏:0 阅读:4789
今天在重构一个页面的时候,碰到了一个error,具体的error信息如下图中所示: 最后经过一番查找定位,终于找到了问题所在,原因就是在父组件引用子组件时多加了一个大括号。 import {Chart} from 'Chart'; 把{}去掉就可以了。 ...
分类:Web开发 时间:2016-11-01 14:26:54 收藏:0 阅读:17601
来自为知笔记(Wiz) ...
分类:编程语言 时间:2017-01-09 10:58:21 收藏:0 阅读:2193
onLoad:function(options){ console.log(options) html <view class="list bindtap=onload New data-key=""{{item key}}" js onLoad News:function(e){ console. ...
分类:微信 时间:2017-01-23 23:47:01 收藏:0 阅读:16635
export JAVA_HOME=/home/tomcat/jdk1.8.0_121export JRE_HOME=${JAVA_HOME}/jreexport CATALINA_HOME=${HOME}/apache-tomcat-9.0.0.M17export CATALINA_BASE=${H ...
分类:其他 时间:2017-01-25 14:26:10 收藏:0 阅读:14245
Mount 挂载错误mount:block device /dev/sr0 is write – protected , mounting read-only 安装虚拟机出现以下提示: mount:block device /dev/sr0 is write - protected , mounti... ...
分类:其他 时间:2017-03-15 12:22:29 收藏:0 阅读:5306
按照网上的教程学习python,最开始的dmoz_spider项目一直不能正常运行,一直出现下面的问题: 即http status code is not handled or allowed http状态代码没有被处理或允许, 一开始我不理解,在网上找了好多修改setting.py中的 DOWNL ...
分类:编程语言 时间:2017-04-06 01:12:23 收藏:0 阅读:18537
今天做SpringBoot小例子,在请求controller层的时候出现如下问题。 Whitelabel Error Page This application has no explicit mapping for /error, so you are seeing this as a fallb ...
分类:移动平台 时间:2017-04-06 21:11:57 收藏:0 阅读:67874
14546474849161997
上一页3239936下一页
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!