Alex Bitek

Results 14 comments of Alex Bitek

@qw3rtman There seems to be no "python.exe" after successful compilation of Python. I'm compiling in my own $HOME dir by setting P_PREFIX variable at the start of the script ```...

`emulator-check accel` or `emulator -accel-check` commands can tell if hardware acceleration is working correctly: ``` accel: 0 KVM (version 12) is installed and usable. accel ``` GitLab.com shared runners run...

Indeed, would be nice to have a guide on how to self host SNAAS on your own server. Does it work outside of AWS cloud? As from the [architecture diagram](https://raw.githubusercontent.com/tapglue/presentations/master/golang-at-tapglue/images/architecture.jpeg)...

As I'm still learning the codebase, can you provide a summary of the components? - dataz - gateway-http - sims - terraformer For example, what is the purpose of SIMS...

Thanks. I've managed to build and run locally the two binaries (gateway-http and sims) in a Docker container using the scripts from the infrastructure directory. Now I need to figure...

Got it working :+1: by creating a data/apps.json file: ``` { "backend_token": "78a62cac15972206e2b2da4f5a42c5c4", "description": "xxx", "enabled": true, "-": 1, "in_production": false, "name": "xxx", "token": "2da2d79336c2773c630ce46f5d24cb76", "url": "https://www.myapp.com", "created_at": "2017-03-17T08:44:13.213Z", "updated_at":...

I see that the [console](https://github.com/tapglue/snaas/tree/console/cmd/console) component provides a `/api/apps` API endpoint. What is the use case / goal for this component? Managing apps and accounts for clients of the SNAAS...

@Elqul There are multiple ways to build: 1. If you have a Golang environment already, you can build it locally on your host system 2. If you have Docker installed...

This problem is still present in the current version. StackOverflow question: https://stackoverflow.com/questions/12042932/pyapns-ssl3-write-pending-error A stacktrace for reference: ``` Traceback (most recent call last): File "/usr/local/lib/python2.7/dist-packages/flask/app.py", line 1836, in __call__ return self.wsgi_app(environ,...

This is not true: https://docs.python.org/2.7/library/logging.html#logging.Logger.info Can you pinpoint a Python version which doesn't have the info method on the Logger class?