08 2018 档案

摘要:知识点 memory vs storage vs stack storage , where all the contract state variables reside. Every contract has its own storage and it is persistent betwee 阅读全文
posted @ 2018-08-24 14:40 邓维 阅读(445) 评论(0) 推荐(0) 编辑
摘要:import import unuse package: error : imported and not used: "os" := = c := 1 // error non declaration statement outside function body d = 1 // error n 阅读全文
posted @ 2018-08-20 21:41 邓维 阅读(242) 评论(0) 推荐(0) 编辑
摘要:[别人的][1]REST SOAP Thrift对比: 单项分数越高越好 | 项目 | REST | SOAP | Thrift| | | : | : | :| | Extensibility | 5 | 3 | 1| | Neutrality | 2 | 4 | 3| | Independence 阅读全文
posted @ 2018-08-20 21:39 邓维 阅读(419) 评论(0) 推荐(0) 编辑
摘要:how to run test within junit & mvn: During team development , there are more than 1 person edit your api or file which it's very common. And to improv 阅读全文
posted @ 2018-08-20 21:37 邓维 阅读(554) 评论(0) 推荐(0) 编辑
摘要:首先声明,不是要消除if 而是,减少一些不必要的if判断,使得代码更优雅,更重要的是提高可维护性 most easy use Ternary: 缺点:case 超过2个就不容易了 use switch in static type language use heritance usage (c++) 阅读全文
posted @ 2018-08-20 21:36 邓维 阅读(244) 评论(0) 推荐(0) 编辑
摘要:part 1 mms图 What's MMS MongoDB Management Service (MMS) is a suite of services for managing MongoDB deployments. 统计图表的数据来源 all statistics can show in 阅读全文
posted @ 2018-08-20 21:35 邓维 阅读(698) 评论(0) 推荐(0) 编辑
摘要:spring web mvc 处理流程 Architecture web.xml (webapp必要配置) 作用:spring web mvc 使用dispatcherServlet 分发request,一般我们都需要一个web.xml 来定义这项工作。 servlet mapping 中定义工作包 阅读全文
posted @ 2018-08-20 21:34 邓维 阅读(434) 评论(0) 推荐(0) 编辑
摘要:total: use appkey & secrect variance naming rule 提供沙箱环境 使用api gateway 使用rest(但返回结果包裹了 isp.thread limit:102 内部标准) last but not least : 做基础的api,通过api 构造 阅读全文
posted @ 2018-08-20 21:31 邓维 阅读(214) 评论(0) 推荐(0) 编辑
摘要:创业公司如何做好数据驱动的开发工作 创业公司钱、开发资源有限,考究更少的工作产生更大的价值,更快的迭代mvp。 data info knowledge wisdom 尽量减少拍脑袋的决策。 决策要从过往经验到数据驱动;当没有经验的时候,参考外部、常识、少量测试验证。 数据驱动,不仅仅是采集数据,取数 阅读全文
posted @ 2018-08-20 21:30 邓维 阅读(306) 评论(0) 推荐(0) 编辑
摘要:docker common error Non existing image of running container drm() { docker rm $(docker ps q a); } dri() { docker rmi $(docker images q); } ddri(){ doc 阅读全文
posted @ 2018-08-20 21:28 邓维 阅读(540) 评论(0) 推荐(0) 编辑
摘要:从npm 角度理解 mvn 的 pom.xml pom project object model. 用于描述项目的配置: 基础说明 依赖 如何构建运行 类似 node.js 的 package.json mvn 与 npm 也是有雷同的地方。 <! Unit Test junit junit ${j 阅读全文
posted @ 2018-08-20 21:28 邓维 阅读(526) 评论(0) 推荐(0) 编辑
摘要:restful why: meaningful This will be improve efficiency , less documents , just read the code auto generate support Resource can be achieve automatica 阅读全文
posted @ 2018-08-20 21:27 邓维 阅读(260) 评论(0) 推荐(0) 编辑
摘要:programmer growth map common seen path "大多数程序员的晋升路径" 并不复杂,无非以下几种: 技术型:初级工程师 中级工程师 高级工程师 架构师(技术专家) 技术总监 CTO 管理型:工程师 项目组长 项目经理 项目总监 技术总监 CTO 交叉型:初级工程师 中 阅读全文
posted @ 2018-08-20 21:25 邓维 阅读(943) 评论(0) 推荐(0) 编辑
摘要:目的:加快开发速度,总结使用方法: menu list: custom controller custom 模块使用 custom model custom middleware custom service 关于启动 : config/connection db connection 入口: ap 阅读全文
posted @ 2018-08-20 21:24 邓维 阅读(144) 评论(0) 推荐(0) 编辑
摘要:Hello World !/bin/bash echo 'Hello Bash World' for loop in one line 一行实现循环调用 for i in {1..5}; do COMMAND1 HERE && COMMAND2 HERE; done 定义function 你可以用f 阅读全文
posted @ 2018-08-20 21:22 邓维 阅读(331) 评论(0) 推荐(0) 编辑
摘要:what problems 多个服务要写自己的log,auth,对于比较耗时的,有时还要高流量限制。 solution intro 单点部署的情况: why not just haproxy log (kinbana) haproxy rate limit http://blog.serverfau 阅读全文
posted @ 2018-08-20 21:18 邓维 阅读(573) 评论(0) 推荐(0) 编辑
摘要:rabbitmq management advance management install rabbitmq plugins enable rabbitmq_management visit : http://ali3:15672/ 管理页面的进程与rabbitmq server 是分开的 sol 阅读全文
posted @ 2018-08-20 12:40 邓维 阅读(1279) 评论(0) 推荐(0) 编辑