Jacob Barber
Jacob Barber
I think it's safe to close this issue. The problem is that MySQL and I guess also H2 have awful JDBC drivers which report inaccurate information. To add to the...
I'm going to update the issue's opening message to include all of the places I've found so far which have issues.. Maybe I'll make a PR for the microsite for...
Thinking on this more, `tut` is just another pre-processor. Introducing this support might lead to a better integration with `tut`.
``` > ss | grep ESTAB | grep 35000 | grep 84.42.23.120 | wc -l 813 > ss | grep ESTAB | grep 35000 | wc -l 845 ``` I...
After setting up an `ebtables` rule, I don't have a problem for now. If it's an attacker, I'm sure they'll just switch IPs. need to make a rule that drops...
One weird thing is that I see this with test errors now: ``` java.lang.NoClassDefFoundError: org/scalatest/exceptions/StackDepth ``` but I've verified that `StackDepth` is on my classpath from scalatest.
If nulls are an expected and desired result, then perhaps we should use an optional type instead of a null value.
I think having a `misc` package is dangerous unless there are very clearly defined things which are miscellaneous. Usually it winds up just being a bucket of unrelated things which...
This bit confuses me: > * scalaz.algebra — Abstract algebra, including **semigroup**, magma, field, rng, etc. > * scalaz.ct — Category theory, including functor, monad, & related. I thought semigroup...
The former ones follow Scala standards, and the latter ones follow Haskell standards. The positions of the types have type inference implications, but I’m not sure if that’s why the...