Mark Derricutt
Mark Derricutt
When imerge finishes its rebase-with-history it appends the git commit messages with an information fact about the change, but it appends this blindly against the bottom of the commit message,...
Can OCaml-Java be used with Reasons new source format at all? Native support for Reason, plus OCaml-Java would be a compelling language shift for existing JVM developers I think. ps:...
**What build of DuckieTV are you using (Standlone / Chrome Extension (New Tab / Browser Action))** Standlaone: https://github.com/DuckieTV/Nightlies/releases/tag/nightly-202109072304 **What version of DuckieTV are you using (Stable 1.1.x / Nightly yyyymmddHHMM)**...
Is it possible to embed libsodium in my jar file, along with caesium? I did an attempt and used a copy of Netty's NativeLoadLibrary, but it seems that caesium (...
Calling `caesium.crypto.sign/keypair!` with a `byte[]` seed seems to trigger verification failures with `verify(sign ...)...)`. I modified one of the test cases in `sign-test.clj` as seen in https://gist.github.com/talios/d0ea678b0ce5b044ec48c6074855cf6a which triggers the...
I really don't like the current syntax for implementing interfaces ( introduced in #7 ), find a better way to handle them.
I have a series of rewrite rules I've been working with lately with some reafactorings on our Java code base: ``` [remove-import-notnull] match=''' import org.jetbrains.annotations.NotNull; ''' rewrite="" [remove-method-notnull] match=''' :[leading~^\s+]@NotNull:[line]...
On several code changes, I've found myself switching implementations of - such as: ``` [change-guava-map-creation] match="Maps.newHashMap()" rewrite="new HashMap()" ``` Here, I'm removing the use of a call from the Guava...