Fedor

Results 89 comments of Fedor

i think it's related to #26

I dont know what was a problem, but when i manually set access_token and access_token_secret for Twitter in `secrets.env` - it started working And for some reason now even commenting...

Ok, i got steps how to reproduce this: git clone set in secrets.env: telegram_bot_token, consumer key, consumer secret run bot try to /auth in telegram chat with bot /verify successfully...

I think we need to find true reason why it fails

@leezu i successfully compiled from `master` branch, but it have `mxnet==2.0.0` I will try to run it with `v0.x` branch

@leezu hmm, i can't found `v0.x` ;( ``` user@ml-dev:~/mxnet1.8/mxnet1.8$ git checkout v0.x error: pathspec 'v0.x' did not match any file(s) known to git user@ml-dev:~/mxnet1.8/mxnet1.8$ git checkout 0.x error: pathspec '0.x'...

I also tried: `v1.x` branch - the same issue with infinity loop. From `master` branch it goes fine: ``` $ cmake .. -- The C compiler identification is GNU 9.3.0...

Note: on every try with building from different git branches/tags - i cleared `build` folder with `rm -rf build`

I guess I found solution: Manually set this in `config.cmake` ``` set(CMAKE_CUDA_COMPILER "/usr/local/cuda/bin/nvcc" CACHE BOOL "Cuda compiler (nvcc)") ``` helped and provide this output: ``` $ cmake .. -- The...

personal notes: ``` addAccessKey(): Promise { SentryErrorReporter.logInfo('Adding access key'); return this.apiRequest('access-keys', {method: 'POST'}); } ``` https://github.com/Jigsaw-Code/outline-server/blob/e233989a3701c99de943cab4c9d5c748ee757216/src/server_manager/web_app/shadowbox_server.ts#L48