Vlad Frolov

Results 251 comments of Vlad Frolov

I haven't really thought about this before, so I don't have a solution in mind at the moment, but let me share some of my thoughts. Given we want to...

@0xecute I don't work on this project anymore; though, I am fine to review and to merge PRs.

Yeah... I have no idea how to implement this either :( I will think of a way to implement this over weekend.

Well, it seems that commands testing can be a part of integrational testing, which is not implemented yet.

I don't have any plans to add it myself as OAuth2 is already implemented and I don't see any benefit in JWT. However, I will appreciate a PR introducing JWT.

@andyshinn How about using `32bit/ubuntu:14.04` or `toopher/ubuntu-i386:12.04` Docker images? Why do you need x86 host OS?

@inf3cti0n95 Do you use Python built against glibc or official Alpine package? You should not mix libraries/binaries compiled against different libc. I can only suggest you try [`frolvlad/alpine-miniconda3` image](https://github.com/frol/docker-alpine-miniconda3), which...

@inf3cti0n95 I am not aware of such an image, but you can try building your own by using Arch Linux packages following [my mono image as an example]( https://github.com/frol/docker-alpine-mono/blob/5.14-glibc/Dockerfile). I...

@sgerrand Actually, there are quite a few duplicates in the `lib` folder, which could have been just symlinked. It may cut a few megabytes, I believe. ``` $ ls -la...

May I suggest [Flask Blueprints API design](http://exploreflask.com/en/latest/blueprints.html)? Flask, basically, splits `Component` into two parts: the top-level server (`flask.Flask`) and module-level components (`flask.Blueprint`). This allows developers to build modular components exposing...