MySQL update 嵌套 select2019-08-28InboxMySQL update 嵌套 select 当你希望更新一批值,且值是通过select条件查询出来时,下面这个错误应该不陌生 You can’t specify target table ‘x’ for update in FROM clause。 错误示范 1: A B 有Read more...
Screeps2019-08-27InboxScreeps https://screeps-cn.github.io/introduction.html https://github.com/rustyscreeps/screeps-game-api https://twodam.net/Tutorial-for-Screeps-0 https://github.com/aphistic/screeps-deployer https://github.com/rustyscreeps/screeps-starter-rust https://github.com/hinshun/screepsapiRead more...
toml2019-08-24inboxtoml https://toml.io/cn/ 1 2 # comments java https://github.com/mwanji/toml4j goland https://github.com/pelletier/go-toml/tree/v2Read more...
slf4j 打印java异常堆栈信息2019-08-23Inboxslf4j 打印java异常堆栈信息 SLF4J 1.6.0以前的版本,如果打印异常堆栈信息,必须用 log.error(String msg, Throwable t) log.info等对应方法. 如果msg含有变量,一般用Read more...
Java Double 浮点数 比较大小 & 相等比较2019-08-19Inbox‘Java Double 浮点数 比较大小 & 相等比较’ 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 public class DoubleUtils { private static finalRead more...
ingress2019-08-19Inboxingress XM (Exotic Matter,外来能量) AP (Access Points,权限点数) Portals 直译为传送门或者据点,俗称Po 处于一个Portal的40米范围内才可以与之交互 (Read more...
Java Set2019-08-19InboxJava Set 版权声明: 本文为博主原创文章,遵循 CC 4.0 by-sa 版权协议,转载请附上原文出处链接和本声明。 本文链接: https://blog.csdn.net/qq_33642117/article/details/52040345 一,Set Set:注重独一无二的性质,该体Read more...
typescript 数据类型2019-08-17Inboxtypescript 数据类型 数字 和JavaScript一样,TypeScript里的所有数字都是浮点数。 这些浮点数的类型是number。 除了支持十进制和十六进Read more...
typescript 数组2019-08-17Inboxtypescript 数组 版权声明: 本文为博主原创文章,遵循 CC 4.0 by-sa 版权协议,转载请附上原文出处链接和本声明。 本文链接: https://blog.csdn.net/honey199396/article/details/80750408 数组的声明 let array1:Array; let array2:number[]; 数组初始化 let array1:Array= new Array(); let array2:number[]Read more...
TOML、YAML, JSON、XML、CSON, HOCON2019-08-15inboxTOML、YAML, JSON、XML、CSON, HOCON json json 规范要求字符串要用双引号括起来.Read more...
Redis3 集群 数据迁移2019-08-06InboxRedis3 集群 数据迁移 一、概述 要让集群正常工作至少需要3个主节点,在这里我们要创建6个redis节点,其中三个为主节点,三个为从节点,对应的rediRead more...
redis stream2019-08-06redisredis stream stream是一个看起来比pubsub可靠多的消息队列。pubsub不靠谱? 很不靠谱,网络一断或buffer一大就会主动清理数据。strRead more...
MySQL int 长度2019-08-06DatabaseMySQL int 长度 “浮点型"的长度是用来限制数字存储范围的. 比如 float(3,2) 只能够写入 0.00~999.99. “整型"的长度并不会限制存储Read more...
账号, account2019-08-04CS账号, account https://36kr.com/p/2342280589940227 最近,话题#账与帐很多人分不清#登上热搜,引发网友热议。笔者注意到,不同互联网平台,“帐号”和“账号”两种表述都存在。 实话实说,如Read more...
Desk Check2019-08-02InboxDesk Check 敏捷实践之 Desk Check http://insights.thoughtworkers.org/desk-check/embed/#?secret=5PpVVMPtJf 开发人员在完成需求之后,快速在本地开发环境建立功能验证条件。 开发人员要做的具体工作是: 需要测试数据的,建立mock datRead more...
模块之间的相互调用,循环引用的问题2019-08-01Inbox模块之间的相互调用,循环引用的问题 https://github.com/seajs/seajs/issues/800 允许适当重复代码,保证模块主要职责不变Read more...
redis 集群容灾2019-07-30Inboxredis 集群容灾 Redis Sentinel 容灾演练 http://www.dczou.com/viemall/870.html/embed#?secret=Kngfb4CYbnRead more...
journal suppressed N messages2019-07-29Inboxjournal suppressed N messages systemd-journal: Suppressed 9567 messages from /system.slice/ systemd-journal: Suppressed 6735 messages from /system.slice/ …… 根据字面意思理解就是日志被丢弃了, 看来是由于 journald 服务的问题导致的日志问题 在 journald 中, 有如下两个参数跟此问题相关:Read more...
ufw2019-07-28Linuxufw UFW,即简单防火墙 uncomplicated firewall,是一个 Arch Linux、Debian 或 Ubuntu 中管理防火墙规则的前端。 UFW 通过命令行使用(尽管它有可用的 GUIRead more...