###TOP 20
- check list
- OverAPI, collecting all cheat sheets
- popular frameworks: JQury(guide);
- release notice
- checklist for scope & dependencies;
###DEV & OPS
- OverAPI, collecting all cheat sheets
- ports for tunnel (252XX QA,253XX STG,254XX PRD)list of TCP and UDP
- proxy git config --global http.proxy http://devproxy.com:2222 stackoverflow
- Reference: Git - Useful Tips & 19 Tips For Everyday Git Use
- popular commands
git status
git add *
git commit -m 'msg'
git push --all
git help
git clone https://username:[email protected]/username/repository.git
git pull/fetch - cheat sheet
###Docker
- mkdir /etc/systemd/system/docker.service.d
- vi /etc/systemd/system/docker.service.d/http-proxy.conf by adding the service part below
- sudo systemctl daemon-reload
- systemctl show --property=Environment docker
- sudo systemctl restart docker
[Service]
Environment="HTTP_PROXY=http://proxy.example.com:80/" "NO_PROXY=localhost,127.0.0.1,docker-registry.somecorporation.com"
- installation: For centos: centos doc step Install & Create a docker group & Start the docker daemon at boot; then reboot the server/ logout the server;
- popular commands:
A. systemctl start/status docker;
B. docker login/ps/images;
C. docker run -d -p 8080:8080 t8j8;
D. docker build -t t8j8 . - cheat sheet
- docs of docker:
###XSL & exslt
- reference: xsl from W3C , exslt and try it yourself
###Web Service
- spring 4 soap reference: UT in soap UI, create a new soap project and set the wsdl is http://localhost:8080/springsoap-1/soapws/students.wsdl E.G. : cube\do\l\j\webs\springsoap
- ssh keys for github
- putty configuration A. hostname from jekins/wiki; B. tunnels based on applications/projects; C. window setting
###markdown editor
- set up the intellij IDE
0). import the settings
1). custome the configuration : idea.properties under $installation/bin path;
2). update the settings:
A. SDK (platform) configure-->project default->project structure;
B. maven configure-->settings
C. gradle
D. proxy
E. git
3). export the settings
4). e.g.
- Add SSH key annd then more quickly to access the git repository
- installing-ssh-keys
- git on windows by putty
Summary:
1). if it doesn't work after setting up based on the description above, please signout and sign in again.
2). install git and putty suite; check the GIT_SSH variable in environment;
3). generating a key ; add the public key to gitlab; import the private key to pageant;
###migrate a history project from ant to maven
-
check the jar info from MANIFEST.MF file, it may include the name, title and version.
-
add third party repository to maven configuration file,setting.xml{ mvnrepository http://mvnrepository.com/artifact true fail false Central http://repo1.maven.org/maven2 central
Central http://repo.maven.org/maven2 central Central http://central.maven.org/maven2 central
} 3. install the unknown jar locally
mvn install:install-file -Dfile=ojdbc-11.2.0.1.0-jdk15.jar -DgroupId=com.oracle -DartifactId=ojdbc -Dversion=11.2.0.1.0 -Dpackaging=jar