Pathikrit Bhowmick

Results 69 comments of Pathikrit Bhowmick

Probably covered by #353 but here is another stacktrace: ``` microsoft.exchange.webservices.data.core.exception.service.remote.ServiceRequestException: The request failed. ParseError at [row,col]:[4,760] Message: Character reference "&# at microsoft.exchange.webservices.data.core.request.SimpleServiceRequestBase.internalExecute(SimpleServiceRequestBase.java:74) at microsoft.exchange.webservices.data.core.request.MultiResponseServiceRequest.execute(MultiResponseServiceRequest.java:158) at microsoft.exchange.webservices.data.core.ExchangeService.internalBindToItems(ExchangeService.java:1343) at microsoft.exchange.webservices.data.core.ExchangeService.bindToItems(ExchangeService.java:1360) ```

no problem

@spluxx : I looked over your PR. It is very complex. Why can't we do this: ```scala def maxFlow[V](capacity: Map[(V, V), Int], source: V, sink: V): Option[Int] = { val...

@spluxx . I actually did not try it out before posting. Some improvement: ```scala def maxFlow[V](capacity: Map[(V, V), Int], source: V, sink: V): Int = { val vertices = capacity.keySet.flatMap({case...

@spluxx : Yes you are right - the `sum` version is more elegant (this library prioritizes elegance and readability over constant-factor performance gains). This is the Ford-Fulkerson algorithm right which...

See: https://tp-iiita.quora.com/The-Two-Pointer-Algorithm

See: http://codeforces.com/blog/entry/7262

[MYSQL does not support `update-returning`](https://github.com/slick/slick/issues/963) but [Postgres does](http://www.postgresql.org/docs/9.3/static/sql-update.html). So, this has to be driver specific.

Maybe using [SVG text-hover](https://stackoverflow.com/questions/41768657/display-text-over-svg-element-on-hover) so we can mouse mover to see the signature. We can additionally skip the signatures that is inherited from parents to keep the tooltip shorter or...

@exoego : Thank you! Will take a look shortly