# idea
idea() {
nohup your_path/bin/idea.sh "$(pwd)" > /dev/null 2>&1 &
}
[......]
js
var names = ["王五", "李四", "赵六", "张三", "郝七", "陈二", "蔡八", "孙九", "黄十", "路一"];
// 中文姓氏排序
names.sort(function(a, b) {
return a.localeCompare(b,"zh");
});
java
List<String> names = Arrays.asList("王五", "李四", "赵六", "张三", "郝七", "陈二", "蔡八"[......]
首先声明:
这里讨论的是如何在内存中把rgb转为cmyk
// 假设file是png的,即rgb的
BufferedImage img = ImageIO.read(file);
ColorSpace cpace = new ICC_ColorSpace(
ICC_Profile.getInstance("/home/co[......]
最近在写一个hadoop的job,其中依赖了guava,我需要的版本是27.2-jre
然而,不幸的是,Hadoop集群上是2.7.2,其中也有guava版本,11.0.2
更坑的是,guava在16之后有break change,无法向下兼容。
导致不管怎么运行,都会出现:
Error: com.google.common.hash.Funnels.stringFunnel(Ljava/nio/charset/Charset;)Lcom/google/common/hash[......]