Interesting questions
-
0
votes0
answers55
viewsI’m failing to change the display of the impact field from numerical to a special character
from bs4 import BeautifulSoup import requests import time headers = requests.utils.default_headers() headers.update({'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:79.0) Gecko/20100101…
-
-4
votes0
answers21
viewsPass the video id to another form?
In my code, I have a loop that displays several videos that have the ID stored in a BD. The detail is that I need, when clicking on any of the listed videos, to open another page and display the ID…
-
0
votes0
answers108
viewsError making POST from a json to a Web API
It’s giving me an error when I try to make a POST to the API that error is: System.Net.Webexception: Remote server returned an error: (405) Method not allowed. The code I’m using is: var…
-
0
votes1
answer31
viewsFilter query for mysql dates
have this mysql table: And I have the following appointment: SELECT * FROM tabela WHERE 1 = 1 AND data_prova >= '2020-03-01' AND data_prova <= '2020-03-26' Well, with this select use for a…
-
-3
votes0
answers19
viewsHow do I increase fade time in without slowing down?
is that Fadeinout only has 10s how can I make it longer sla about 25s without slowing down? I suspect it’s changing Fadeinout for another, but I don’t know which function…
-
6
votes1
answer54
viewsRelationships Does EDMX only affect performance?
I have a question about the Entity Framework. Here at the company where I work, the tables are generated in the bank without any relationship, until the fields are created that will be foreign keys…
-
2
votes2
answers166
viewsHow to create the boolean AND condition in a . bat code?
I have a simple program that deletes certain files if they exist, but I would like to improve it using a boolean condition in case the two files do not exist. Is it possible simply? I found answers…
-
3
votes1
answer81
viewsHow to use 'while' on an 'isNaN()'?
I am doing a "quiz" test and to work the user has to type only numbers, if you do not type, an error message will be sent for him to repeat the process. I was able to solve it with the following: if…
-
-1
votes1
answer1218
viewsBehavior of the Cart in Woocommerce
How to change checkout behavior in Woocommerce? I’m in a different situation for products and subscriptions. The buying behavior is different and would like to put the same process for both types of…
-
1
votes1
answer711
viewsWorking with date: print all dates in a given range
I am struggling with simple implementation. I need to receive the amount of days, excluding Saturdays and Sundays, from a certain date range. I tried using Calendar because I can set the day(date),…
-
0
votes1
answer180
viewsIntegrity Constraint Violation in "Many to Many" create - Laravel
Context: When registering a company, by being "attached" several customers to it and that same customer can be "attached" in other companies. I have the following database structure: Model "Client":…
-
1
votes2
answers57
viewsCan I run two flutter projects with different versions on the same machine?
I’m codifying an app in the version Flutter 2.2.2, now I received a task to help in a friend’s app, but his app is in version 2.1.3 and I want to know how I can run these two projects on my machine…
-
-1
votes1
answer116
viewsWhen I open the Python program directly on CMD, it simply closes
When I try to open this program directly on CMD, without opening in CD path -> python file.py, it arrives to open, but when giving enter, it simply closes... I’ve generated an executable too,…
pythonasked 5 years ago Leonardo Piolla 3 -
0
votes0
answers24
viewshow to join 2 lists in a third list?
what I wanted is a third list to receive the content of the other two but putting together and on the same list, like: a = [1, 2, 3] b = ['ola, mundo', 'oi'] c = [[1, 2, 3, 'ola, mundo', 'oi'], [],…
-
0
votes2
answers89
viewsMove body along side menu
I am creating a code, where it has a side menu that when passing the mouse over this menu it expands to the side. But the problem I’m facing is that when the menu expands to the side, it’s covering…
-
2
votes2
answers352
viewsShowing one icon to directory and another to other files
I need to read a directory and change its icons. If it is a directory, apply an icon if it is a file. txt apply another icon. Follow the code I made: <?php $dir = 'ftp/'; $pasta = opendir($dir);…
-
0
votes1
answer1730
viewsHttp Get Request with Axios
I need help making one get for my restAPI passing parameter (I don’t know if that’s what it’s called!). What I do is call a list in http://localhost:6000/API/Stores axios.get('…
-
0
votes1
answer56
viewsRename Imageview to Upload
Good morning, I would like to ask a question, my APP so far the guy takes a photo of the phone and is in an Imageview (Ex: img1), I need to be created a name defined by me in an example variable:…
-
1
votes1
answer65
viewsBackstroke, backstroke, backstroke
hello. I have been trying to find out if I can reverse a path? How can I reverse a path and then go on as normal? for example I need to revert a path to this string ( LPCWSTR path = ) so I need to…
-
1
votes1
answer101
viewsTable line deletion in Jquery
I have a table with an delete button where it should, when clicked, delete the record in question, but when I click delete it performs the correct deletion in the database and when updating the…