Skip to content

Instantly share code, notes, and snippets.

@otw1248
otw1248 / recommendations.md
Last active August 26, 2016 06:21
software,tool,recommendation

#recommendations

###software and tools

  • docker
  • InteliJ IDEA
  • mailinator used in UT: MAILINATOR IS FREE, PUBLIC, EMAIL SYSTEM WHERE YOU CAN USE ANY INBOX YOU WANT!
  • debug service
@otw1248
otw1248 / maven.md
Created September 5, 2016 06:40
maven,mvn
  1. install the unknown jar locally

mvn install:install-file -Dfile=.jar -DgroupId=com.oracle -DartifactId=ojdbc -Dversion= -Dpackaging=jar

@otw1248
otw1248 / .gitignore
Created September 27, 2016 01:30
git
#################
## Eclipse
#################
*.pydevproject
.project
.metadata
bin/
tmp/
*.tmp
@otw1248
otw1248 / recommendation list: software & app & framework.md
Created September 28, 2016 06:08
recommendation,software,app,tool,framework,ecos,

###TOP 20:

  1. google:email,drive,

####DEV & OPS

  1. IDE: IntelliJ,
  2. source code repository: gitlab,github;
  3. database:postgresql
http://weibo.com/ttarticle/p/show?id=2309404031238817078712
设置PPTP服务
sudo docker run -d --privileged --net=host \
-v {/path_to_file/chap-secrets}:/etc/ppp/chap-secrets \
mobtitude/vpn-pptp
PPTP 使用 /etc/ppp/chap-secrets 文件设置用户名和密码,所以你需要给docker容器提供这个文件,下面是这个文件的示例:
# Secrets for authentication using PAP

NOTICES 注意事项

1. 选择手机应用市场

新手机 new cellphone

验机 VV
1. 屏幕 screen  完整性及显示
@otw1248
otw1248 / few issues on DEVOPS
Created January 2, 2020 01:23
DEV, OPS, Java,
Q1: how to modify an existing important big module?
A:
  • 团队成员 team members
  • 需求 / BA / 原型 / 原始资料
  • 源代码 source code : 存储仓库repository , 构建工具 build tool
  • 持续集成 / 部署 CI / CD
  • 测试平台 test environments: 本地 local, QA , STG, PROD
  • 数据存储 database
Add switches for new changes for continuous development of a project 在持续开发的项目中建议给新的变更添加开关
在上线前客户突然通知暂时不上线已经开发完成的某个模块;由于第三方的原因,某个功能模块无法集成或者正常工作;某个模块还在商务协商中。。。
There are many cases that one or few modules can't be released, such as the customer won't wanna one module to be released; the module is not working as the third party; the biz activities on a module is still going on...
像乐高一样构建系统,添加开关来控制模块的部署
Building the system like a lego, easily to deploy them by switch to control.
下面列举一些关于怎么实现的建议及细节.
Here shows few tips on how to do that.