一、每个成员在beta阶段的实践和alpha阶段有何改进? 二、团队在beta阶段吸取了哪些alpha阶段的经验教训? 三、12条敏捷开发的原则中,团队做的最好的和最不好的各例举2点。 最好的两点: 最不好的两点: 四、对照The Cathedral and the Bazaar(大教堂和集市),你 ...
分类:
其他好文 时间:
2018-01-12 11:23:32
阅读次数:
99
Spring Boot 2.0.0.M7 生产环境部署
分类:
编程语言 时间:
2018-01-12 11:23:23
阅读次数:
241
首先,在实际做classification的场景中,经常会遇到只有少量的labeled data而更多的data都是unlabeled 的情况。co-training和self-training这两个算法即是用来解决这样情况的。 下面分别描述这两种算法: 1.Self-training: 用已有的L ...
分类:
其他好文 时间:
2018-01-12 11:23:16
阅读次数:
725
Log Level Usages OFF This is the most specific, which allows no logging at all FATAL This is the most specific one that shows fatal errors with little ...
分类:
其他好文 时间:
2018-01-12 11:23:10
阅读次数:
203
function mb_unserialize($serial_str) { $serial_str= preg_replace('!s:(\d+):"(.*?)";!se', "'s:'.strlen('$2').':\"$2\";'", $serial_str ); $serial_str= s... ...
分类:
Web程序 时间:
2018-01-12 11:23:02
阅读次数:
200
大型企业分布式微服务云架构服务组件 实现模块化、微服务化、原子化、灰度发布、持续集成 commonservice eurekaNetflix 云端服务发现,一个基于 REST 的服务,用于定位服务,以实现云端中间层服务发现和故障转移。 commonservice configSpring 配置管理工 ...
分类:
其他好文 时间:
2018-01-12 11:22:52
阅读次数:
130
前言做过Android开发的同学都知道,不能在非主线程修改UI控件,因为Android规定只能在主线程中访问UI,如果在子线程中访问UI,那么程序就会抛出异常android.view.ViewRootImpl$CalledFromWrongThreadException:Onlytheoriginalthreadthatcreatedaviewhierarchy.并且,Android也不建议在UI
分类:
移动开发 时间:
2018-01-12 11:22:38
阅读次数:
207
本文主要详细介绍了Oracle在centos6x64下的启动方式和和过程!
分类:
数据库 时间:
2018-01-12 11:22:31
阅读次数:
186
##如何在BAT中调用powershell,把下面代码另存为bat格式pushd%~dp0powershell.exe-command^"&{set-executionpolicyRemotesigned-ScopeProcess;.‘.\ClearIISLogFiles.ps1‘}"popdpause
分类:
系统相关 时间:
2018-01-12 11:22:16
阅读次数:
374
将Map转换为json字符串 String json = JSONUtils.toJSONString(map); 遍历json字符串 JSONObject jsonObject = JSONObject.parseObject(json); jsonobject.get(key); ...
分类:
编程语言 时间:
2018-01-12 11:22:10
阅读次数:
124
1.veracrypt的安装 http://blog.csdn.net/cmzsteven/article/details/54896457 2.在安装时有两个文件 ...
分类:
系统相关 时间:
2018-01-12 11:22:00
阅读次数:
210
var statusSelectItems = new List { new SelectListItem{Text="失联",Value="0"}, new SelectListItem{Text="正常",Value="1"}, new SelectListItem{Text="维修",Valu... ...
分类:
Web程序 时间:
2018-01-12 11:21:45
阅读次数:
336
1.查看当前服务器中有哪些数据库2.查看mysql数据库中有哪些表3.查看users表的结构4.创建新的数据库auth和表users5.删除users表和auth数据库6.插入数据7.查询数据增删改查的语句和sqlserver的语句完全一样,可参考sqlserver语句,这里不再详细演示8、数据库的用户授权1)新建用户xiaoqi,并赋予对auth数据库中的所有表select权限2)使用xiaoq
分类:
数据库 时间:
2018-01-12 11:21:36
阅读次数:
241
Redis对于key的操作命令 del key1 key2 ... Keyn 作用: 删除1个或多个键 返回值: 不存在的key忽略掉,返回真正删除的key的数量 rename key newkey 作用: 给key赋一个新的key名 注:如果newkey已存在,则newkey的原值被覆盖 rena... ...
分类:
其他好文 时间:
2018-01-12 11:21:24
阅读次数:
191