Nicholas Romero

Results 29 comments of Nicholas Romero

Thanks, ran into this attempting to deploy using docker.

@dphang hey just wondering if there was an update on this? Looks like the project was restructured to be serverless provider agnostic, but no work on the cloudflare workers specifically....

Just an update on this trainClassifier fails on 3.8. [The function time.clock() has been removed](https://stackoverflow.com/a/58569410/4289267) ``` AttributeError: module 'time' has no attribute 'clock' ``` Edit: looks like this was fixed...

I found adding a service and ingress helped ```yaml kind: Service apiVersion: v1 metadata: labels: k8s-app: treafik name: treafik-dashboard spec: ports: - name: dashboard port: 9000 targetPort: 9000 selector: app.kubernetes.io/instance:...

What's the best way to work with the src in a development environment, maybe we also need some contribution docs?

Actually I guess looking at http://material-components-web.appspot.com/select.html and building out components in existing project and then porting into this one should suffice.

@kobiak add a div around tabbar with overflow ``` .root { overflow: scroll; } ```

This is the pure css version, let me know if we would rather have the complex js implementation as another component or replacing this one. I believe this should work...

@sourabhtk37 thanks for opening this issue. We should also update the docs on the database

@sourabhtk37 this is used for the autocomplete full text search there a few postgres extensions that need to be manually enabled, [Trigrams](https://stackoverflow.com/questions/43156987/postgresql-trigrams-and-similarity#43158586) and also [hstore](http://www.postgresqltutorial.com/postgresql-hstore/). You can see the trigram...