Boris Capitanu
Boris Capitanu
Hello, I am noticing some duplication in the code for `tot.py` which doesn't seem right. [Lines 32-33](https://github.com/ahmaurya/topics_over_time/blob/6af63c384ac3f9994dce44da404b9360caa212cb/src/tot.py#L33) show: ``` for line in fileinput.input(stopwords_path): stopwords.update(set(line.lower().strip().split())) ``` which seems to repeat in...
Cloned the `play-samples` on my machine, and followed [the documentation](https://developer.lightbend.com/guides/play-scala-grpc-example/locally.html) for locally running the `play-scala-grpc-example` sample app, but received an exception when invoking `curl --insecure https://localhost:9443/` Here's the exception on...
Looking at code to try to understand how to use POSAnnotator I see an opportunity for a minor improvement. In https://github.com/CogComp/cogcomp-nlp/blob/49f226331c203ba3ff4f20b51a1a4c97bce999b7/pos/src/main/java/edu/illinois/cs/cogcomp/pos/POSAnnotator.java#L94 and line 97 the code seems to be doing...
Hello. TL;DR; StatefulTokenizer tokenizes the date "10/23/2018" as [ "10", "/", "23/2018" ] whereas IllinoisTokenizer (which seems to be deprecated) keeps it as a single token [ "10/23/2018" ]. Longer...
Scala 2.12: ``` val t: TraversableOnce[Int] = List(1,2,3) val tm = t.map(_ + 1) ``` migrating the above contrived example to Scala 2.13 (according to the @deprecated instructions) leads to:...
I'm noticing that this extension, when enabled in VSCode, creates two files in the current project folder: > ensime-langserver.log > pc.stdout.log Any way to prevent these files from being generated?...
Thanks for the great work on PDM - I just discovered it and would like to switch to it from Poetry, but am missing a much-needed feature: It would be...
Hello, One of the MARC-JSON records I'm trying to process is throwing a NullPointerException [1] in MarcJsonReader, but without any useful information as to what's wrong with the record. I'm...
OSX Big Sur [no longer ships with copies of the libraries on the filesystem](https://developer.apple.com/documentation/macos-release-notes/macos-big-sur-11_0_1-release-notes/#Kernel) so the option `dev.ludovic.netlib.blas.nativeLibPath` can't be used to point to veclib's `libBLAS.dylib`, etc. Is there currently...
With the upgrade to Poetry 1.4.0 I am now getting the following error when running `poetry install` in CircleCI. > Connection pool is full, discarding connection: pypi.org. Connection pool size:...