Ilya Brin
Ilya Brin
Hi, Not sure if it's intentional, but `Utils.isEmpty` doesn't have a case for `Map`s; they don't inherit `Collection` nor `Iterable`, so even the empty map `{}` isn't considered "empty". That...
If the context is falsy, `apply` will return the value of the first param. This seems to be unexpected? For instance, `{{abbreviate foo 5}}` will render `5` if `foo` is...
Hi, It seems helpers require block params if any ancestor helper required a block param. For instance, take this template: ``` {{#each foo as |fooValue fooIndex|}} {{#each bar as |barValue...
```scala import pureconfig._ import pureconfig.generic.auto._ case class SampleConf(foo: String = ???) ConfigSource.string("{ foo: bar }").load[SampleConf] ``` the above produces: ``` scala.NotImplementedError: an implementation is missing at scala.Predef$.$qmark$qmark$qmark(Predef.scala:347) at SampleConf$.apply$default$1(:1) at...
Since postgres 9.3: remove an element from an array See https://www.postgresql.org/docs/9.3/static/functions-array.html#ARRAY-FUNCTIONS-TABLE
resolves https://github.com/slick/slick/issues/517 Creates an `inSet` variant for a tuple of columns. Unfortunately, it doesn't actually seem to work for databases... also I'm not terribly familiar with Slick's internal `Type`/`Node`/`Shape` etc...
This allows the original sender to receive back the reply, rather than the actor that connected. Otherwise, things like the `ask` pattern won't work while disconnected (because the reply goes...
see also: https://github.com/Ma27/rediscala/pull/27
error: uncaptured python exception, closing channel (:'utf8' codec can't decode byte 0x86 in position 0: invalid start byte [C:\python27\lib\asyncore.py|read|83] [C:\python27\lib\asyncore.py|handle_read_event|4 49] [C:\python27\lib\asynchat.py|handle_read|147] [C:\Users\Ilya\Code\pyHoNBot\bot.py|found_terminator|102] [C:\Users\Ilya\Code\pyHoNBot\bot.py|dispat ch|454] [C:\Users\Ilya\Code\pyHoNBot\hon\packets.py|parse_packet|279] [C:\Users\Ilya\Code\pyHoNBot\hon\packets.py|parse_channel_join|137] [C:\Users\Il ya\Code\pyHoNBot\hon\packets.py|parse_part|261] [C:\python27\lib\encodings\utf_8.py|decode|16])
Hi, The current version of sedis has a critical bug - it doesn't release broken objects back to the jedis pool correctly. This has the side effect of new calls...