Aliyun Docker issue quickfix

Can’t start docker due to: 500 Internal Server Error: 500 Internal Server Error: service endpoint…

1 minute read

Use gradle plugin from local jar

```gradle build.gradle buildscript { repositories { flatDir { dirs '[where you plugin build/libs]' } }…

1 minute read

QueryDSL + JPA + Gradle in IntelliJ

build.gradle: ```gradle apply plugin: 'idea' idea { module { sourceDirs += file('src/main/generated/') generatedSourceDirs += file('src/main/generated/')…

1 minute read

React with fetch Api

参见 传统 Ajax 已死,Fetch 永生 使用ES7 aysnc/await语法后代码的整洁了不少。 ```javascript try { let response = await fetch(url);…

1 minute read

CSS + ~ > 符号含义

对 + - > 等符号的解释 [CSS中的大於(>)是什麼意思?]:https://pjchender.blogspot.tw/2015/07/css.html [CSS中加號(+)和取代符號(~)的意思]: https://pjchender.blogspot.com/2015/07/css_25.html

1 minute read

Guava Iterables

Guava Iterables find ```java List <Integer> numbers = Lists.newArrayList( new Integer(1), new Integer(2), new Integer(3));…

1 minute read