Anderson Tavares

Results 11 comments of Anderson Tavares

@tommycarstensen , look at the first line of this code: ~~~python from office365.runtime.auth.authentication_context import AuthenticationContext from office365.sharepoint.client_context import ClientContext from office365.sharepoint.files.file import File ~~~

By following this [colab example](https://colab.research.google.com/drive/1Jw28xZ1NJq4Cja4jLe6tJ6_F5lCzElb4#scrollTo=MpcopDTyyFzR), I got rid of this problem by using a resizing transformation. The size can be obtained with `EfficientNet.get_image_size(model_name)`

I understand. It would be considered a future enhancement. I see [Ionic Range](https://ionicframework.com/docs/v2/api/components/range/Range/) could be a good inspiration (there is an example - see _structure_ field). And it's on top...

How to install your version of pympress? I got this error when I run `python3 -m pip install .`: ``` Traceback (most recent call last): File "", line 1, in...

Perhaps it is better for Matrix to be in a library instead of being a language feature. By taking inspiration from scientific computing libraries like Numpy, Blitz, Armadillo and Eigen,...

I have nimble (v2.0) and Archlinux nim package (v1.6). I had a syntax highlighting problem for default values on object fields (issue #129), because /usr/bin/nim (1.6 package) was being used....

But [] () and {{}} are not HTML syntax. These are Angular2 Templating system. IMHO, htmlmin should be used after transpiling them to HTML. The problem is: Angular2 doesn't transpile...

I tried ```nim import owlkettle import opengl viewable App: fillEnabled: bool = false method view(app: AppState): Widget = result = gui: Window: title = "GLArea" GlArea: proc setup(size: (int, int)):...

Great! When I cleared the depth buffer, the triangle appeared. `addGlobalIdleTask` solved the animation issue. Do you have any idea how to not redraw the whole app? Below is the...

I have a related problem, which is: ~~~nim type Geometry = object of RootObj name: string Sphere = object of Geometry # How to set default name for sphere? radius:...