Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
jermo
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
9 ms
·
1.
▲
by
jermo
4y ago
Chess is only in chaos because Carlsen did not provide any details and remains quiet. Hence all the speculation.
2.
▲
by
jermo
4y ago
In his full stream he went into more details (summary https://www.reddit.com/r/chess/comments/x7yzee/comment/inj3c... ) "non-technical example of people using signals when players leave the boar
3.
▲
by
jermo
6y ago
Works in MiniHack on iOS (unofficial)
4.
▲
by
jermo
6y ago
That is a link to Chinese satellite launch mission. Would the booster even be noticeable in the US at aircraft altitude?
5.
▲
Distributed Software Dependency Management Using Blockchain
(researchgate.net)
1 points
by
jermo
6y ago
|
0 comments
6.
▲
by
jermo
6y ago
A lot of projects publish to Central from cloud CIs. That means that private keys are stored in config/secrets. It is debatable whether that makes the artifacts more reliable since you have to trust the CI.
7.
▲
by
jermo
6y ago
Would like to start using Wren though issues like this put me off: "Stack corruption" https://github.com/wren-lang/wren/issues/761 Using older and more established languages seems less risky.
8.
▲
by
jermo
7y ago
Matthew Walker's "Why We Sleep" Is Riddled with Scientific and Factual Errors https://guzey.com/books/why-we-sleep/
9.
▲
by
jermo
7y ago
There is in Gradle 5.1+ but not in Maven, afaik. They are using Maven in their examples, however.
10.
▲
by
jermo
7y ago
Seems like the Maven registry is susceptible to artifact hijacking. Say I wan't to install artifacts from two GitHub users. I would have to add these two Maven repositories: - https://maven.pkg.github.com/USER1
11.
▲
by
jermo
7y ago
Disagree about being the death of Maven Central - they are different beasts. - Central has a global namespace of artifacts. com.google.guava is the same for everyone. This will probably stay the default of open-source libraries. - GitHub Pa
12.
▲
by
jermo
7y ago
One of the easiest is jitpack.io which builds and publishes to its own Maven repository
13.
▲
by
jermo
8y ago
Thought I'd share something I discovered about Json comparison. This simple line also works: return jsonObject1.toMap().equals(jsonObject2.equals); because JsonObject uses HashMap internally which supports equals(). The downside
14.
▲
by
jermo
8y ago
./gradlew dependencies will not tell you which versions play nice together.
15.
▲
by
jermo
8y ago
If you don't need full SQL then you can use embedded key-value stores: - RocksDB - MapDB
16.
▲
Who actually trades solely under WTO rules?
(medium.com)
1 points
by
jermo
8y ago
|
0 comments
17.
▲
by
jermo
8y ago
Have you considered adding Stack Exchange or Quora integration and then using reputation from those sources? Might help in avoiding bots/trolls
18.
▲
Experian to buy fintech ClearScore for $383M
(reuters.com)
1 points
by
jermo
9y ago
|
0 comments
19.
▲
by
jermo
9y ago
The article says it is a 2 year old startup but its more like 3-4. Incorporated in Sep 2014
20.
▲
Experian acquires London startup ClearScore for £275M
(uk.businessinsider.com)
2 points
by
jermo
9y ago
|
1 comments
21.
▲
by
jermo
9y ago
I believe "reproducible build" is a more appropriate term. Unfortunately its quite difficult to get a fully reproducible build with Maven as the post points out. Even if you manage to replicate the build environment and settings,
22.
▲
by
jermo
9y ago
It recommends using the Maven wrapper to fix Maven's version.
23.
▲
by
jermo
9y ago
Presumably Kafka Streams KTables
24.
▲
Test error cases in code that uses Cassandra
(github.com)
2 points
by
jermo
9y ago
|
0 comments
25.
▲
Jvm-mon – Console based JVM monitoring
(github.com)
4 points
by
jermo
10y ago
|
0 comments
26.
▲
by
jermo
10y ago
I've found that Project Lombok solves this problem for me. Simply add a @Data or @Value annotation and it will generate getters/setters/hashCode/toString etc. https://projectlombok.org/features/Valu
27.
▲
by
jermo
10y ago
From Oracle Security Alert for CVE-2016-0636 This vulnerability applies to Java deployments, typically in clients running sandboxed Java Web Start applications or sandboxed Java applets, that load and run untrusted code (e.g., cod
28.
▲
by
jermo
11y ago
> I still missed something on top of Executors and CompletionStage. You could use RxKotlin. It has Schedulers and Observables/Single/Completable for interacting with async tasks. https://github.com/React
29.
▲
by
jermo
11y ago
The downside is that you bring in another layer of indirection and, as a result, greater cognitive load for yourself. Mycode -> facade -> library Navigating code becomes more cumbersome and stack traces longer. I do like this approach
30.
▲
Is Compilation CPU Bound?
(david-smith.org)
2 points
by
jermo
11y ago
|
0 comments
More ›