Alex

Results 80 issues of Alex

A https://github.com/bblfsh/cpp-driver is one of the `beta` state, recommended drivers https://doc.bblf.sh/languages.html#supported-languages but right now it seems to be missing from the playground.

Right now the integration test part of the `bblfsh-sdk test` flow relies on ability to share a `/var/run/bblfshctl.sock` between Host and an a container running `bblfshd`, so that a local...

enhancement

As a user, I expect to be able to extract all the tokens from UAST using helpers from #363 with something like: ```go var tokens []string iter := tools.NewIterator(root, tools.PreOrder)...

For debugging driver issues, it's very convenient to be able to see per-request logs in the debug output. But right now ``` docker run --rm -it -p 9432:9432 bblfsh/python-driver:v2.8.1 --log-level=debug...

In spark_ec2.py#355 one can see that no zookeeper nodes are reated and neither do docs on "Running Spark on EC2" mention options related to creating a zookeeper nodes. Is it...

Here are couple of things I noticed trying Typilus inference using GH Action: - gracefully handle patches that include a file renames (\wo any content modifications) by skipping such files...

On extracting publications (papers) from emails, a class of papers that in email look like * `https://scholar.google.com/scholar?cluster=14905208172666766997&hl=en&oi=scholaralrt&hist=KBiQzPUAAAAJ:3103465405719670724:AAGBfm3tO_7Uk2dTXZseJcyJq0Kjaug97Q&html=&folt=rel` are skipped (14 papers out of +2k) as ATM we use a regex...

Right now on parsing the papers we only count all errors, silently skipping failures and thus hiding their root cause. https://github.com/bzz/scholar-alert-digest/blob/7d2e4de957edf2864360a95b579fc919e9fd561f/papers/papers.go#L46-L48 This leads to difficulties reproducing bugs like #76 as...

enhancement
help wanted
good first issue

Don't use deprecated API from [Go gmail lib](https://developers.google.com/gmail/api/quickstart/go) ``` gmail.go:91:14 gmail.New is deprecated: please use NewService instead. To provide a custom HTTP client, use option.WithHTTPClient. If you are using google.golang.org/api/googleapis/transport.APIKey,...

enhancement
help wanted
good first issue

Right now the backend is completely stateless: every request from the frontend triggers fetching from GMail. The idea is - to cache papers per user session in-memory on the backend...