本文总结了启发式算法的分类。
记录了 Java 8 Stream 特性的参考资料。
在国内 Git clone 仓库奇慢无比,通过以下配置可以提升下载速度。
git config --global http.postBuffer 524288000
记录一些 Scala 的学习资料。
Sometimes we need to parse strings like this:
"1234567890","James",man,"New York, NY, USA"
And the output we need is as follows:
"1234567890"
"James"
man
"New York, NY, USA"
We can try the following code.
介绍了 JDK 10 的一些比较重要的新特性。
通过 Powershell 实现批量正则重命名文件。
本文介绍了如何使用遗传算法求解 N 皇后问题。
通过 Java API 实现 Kafka topic 下所有 partition 的 offset 重置到最初位置。
有时候我们需要通过 Gradle 将依赖打包进 Jar 包中,下面代码中的 fatJar 任务可以实现此功能。