Computing

[MySQL] Generate ERD in MySQL workbench

2021-11-30 C.H. Ling 0

To present the solution design, Entity-Relationship Diagram (ERD) is still one of the common diagram to present data and its relationship. But it is the nightmary if draw it as it is complicated and human […]

Computing

[Java] Remove empty items in List

2021-11-12 C.H. Ling 0

For Removing empty item in list, it can be be done directly. When using method removeIf(), it will throw UnSupportOperationException . It caused by collection items cannot be removed.

CI / CD

[Jenkins] Warning in pipeline

2021-09-21 C.H. Ling 0

It is usual when running pipeline, it will expect to continue even execute failure. Previously, need to use try..catch and change currentBuild.currentResult to unstable (Originally it can set as SUCCESS, FAILURE, UNSTABLE). Since Jenkine 2.26, […]

No Picture
Computing

[Jenkins] Pipeline options in jenkinsfile

2021-08-16 C.H. Ling 0

Normally, Jenkins pipeline settings can done in UI. However, it cannot be version control if settings changed. Actually, version control can implement in decorative pipeline in jenkinsfile. In this example, it will setup schedule to […]

1 2 3 4 5 6 27