rgjm
-
Running gRPC on C++ in Windows with Bazel in 2023
I did this recently, and found it complicated enough to be worth documenting. Other online examples didn’t quite answer my questions for various reasons – being out of date, not using Bazel, or focused on other platforms/programming languages. Hopefully this saves someone else some effort. Step 1 – get Bazel After some trouble with package…
-
Fun with Integer constants in Java
Recently I ran into a strange issue in Java. I was creating Integer values and comparing them with == when I should have been using .equalsTo(). However, most of my tests worked! In Java, object equality tests if the objects are exactly the same place in memory – if the objects contain the same data…