Posts by Cristian Benites • 133 points
8 posts
-
1
votes1
answer39
viewsQ: How to disable Git indications (Gutter) of modified lines in Vscode?
Every time I’m programming, I have difficulty annotating the Git Lens extension in Vscode. The problem is that when I want to collect lines of code - by clicking on that down arrow - I end up…
visual-studio-codeasked Cristian Benites 133 -
0
votes1
answer258
viewsQ: Run laradock (Docker and Laravel) with mysql local
I had my Laravel environment working at XAMPP. However, given some needs, I had to switch to Docker. For that, I started using Laradock. However, I only want to run php and apache on Docker and not…
-
0
votes1
answer877
viewsQ: I can’t git pull on the server
I do maintenance on a website. And we always push the changes and the server terminal do a "git pull". Everything was going well until this time the following error appeared. error: Pulling is not…
gitasked Cristian Benites 133 -
1
votes2
answers190
viewsQ: How to close Vscode window?
Every time I’m coding on Vscode, it keeps popping up little suggestion windows all the time. And it’s not the same as the shortcut "Ctrl + Space". This is another window. Do you know how I can…
visual-studio-codeasked Cristian Benites 133 -
1
votes0
answers51
viewsQ: Open large images with python Opencv
I am working on a software that processes very large images, between 10GB and 30GB. The images are too heavy to open at once. I would like to know if there is any way to use Opencv to open the image…
-
0
votes2
answers124
viewsA: Site resolution created in HTML+CSS exceeds 100% of screen
The horizontal bar is an automatic feature of the browser to show the whole screen. Some element of your code is occupying that space. You can use the inspection options (Ctrl+Shift+I in Chrome).…
-
3
votes2
answers242
viewsA: Problems with python code
I ended up finding, the error was that I needed to import the method "filedialog". from tkinter import filedialog I just don’t know why you needed it, because "from Tkinter import *" hasn’t been…
-
4
votes2
answers242
viewsQ: Problems with python code
I am practicing Tkinter and what I want is to create a button where the user chooses an image and then pass this image to perform another function with opencv. But when executing the code, the…