Results 30 issues of Boris Burkov

My knowledge of Developer Tools in Chrome is somewhat imperfect, but AFAIK, this functionality is not available by default, but it could be very, very useful. Every once in a...

*Note*: Before submitting this pull request, please review our [contributing guidelines](https://faust.readthedocs.io/en/master/contributing.html). ## Description Please describe your pull request. NOTE: All patches should be made against master, not a maintenance branch...

I've attempted to serialize the following model: ``` class Tool(Document): cwlVersion = fields.StringField(required=False, null=True, choices=['cwl:draft-2']) ``` I passed a wrong value for cwlVersion: "does not matter" and received the following...

bug

Suppose that you have a Document with EmbeddedDocument within: ``` class Child(EmbeddedDocument): name = StringField() class Parent(Document): child = EmbeddedDocumentField(Child) ``` and you want to add a custom validator for...

enhancement

Suppose that I've overridden `id` field on a Document with an arbitrary datatype (non-ObjectId) and created a default serializer for it: ``` class MyDocument(Document): id = StringField(primary_key=True, required=True) class MySerializer(DocumentSerializer):...

I'm observing the following incorrect behaviour with Genoverse. I initialise Genoverse with 3 tracks, one of them is loading very slowly. ![screen shot 2018-05-10 at 18 00 14](https://user-images.githubusercontent.com/7602655/39882594-23dc5e14-547c-11e8-8529-9a3aea2f7a31.png) After that...

Hi, Ken! I'm trying to create an embeddable component for RNAcentral sequence search to be plugged-in into member databases websites. I want the component to be styled in EBI theme...

TODO: Check that bugs from #298 are gone.

technical debt

Our codebase is getting bloated. As a minor refactoring, move RnaFlatSerializer to export application and keep it there.

enhancement