Interesting questions
-
8
votes2
answers635
viewsOrganize website by folders in directory
I’m venturing into my first site written in PHP and there’s one thing that bothers me, which is the way the website URL looks, for example: meusite.com/index.php?page=ucp&p=edit&id=58 The…
-
0
votes1
answer39
viewsSwift does not arrow the text in Uitextfiled after upgraded to Swift 3
I updated the XCode for Swift 3 last week and he converted all my code to the version of Swift 3. After that I’m trying to set the text inside a UITextField and it doesn’t work. I’ve already redid…
-
-1
votes1
answer514
viewsXAMPP localhost email configuration
I made an email configuration in a contact form by Wordpress and added a link mailto:xxxxx. It’s already on the defined page, but it doesn’t get me anywhere. What I need to configure inside the…
xamppasked 7 years, 9 months ago mateus cheles 1 -
2
votes1
answer292
viewsPick values from Contenteditable fields to send in POST
I’m making a Carousel using the Bootstrap. The dados who fed this Carousel will be modified a few times, I decided to create a file dados.json to serve as the basis for these files. I made a classe…
-
0
votes0
answers51
viewsQuery in mysql grouped by hour
Good afternoon. I am performing a query in mysql and this returns the precise values. My problem is to display the values that do not return by e.g.: I asked to group by hour or day it only returns…
-
1
votes2
answers15896
viewsHow to stop an execution in Python?
I’m starting programming in Python and would like to know how to stop the program execution? In the language C for example, there is the equivalent command system("pause"). If I open IDLE, more…
-
4
votes2
answers3951
viewsWhat is the difference between mouseleave and mouseout?
In jQuery, what is the difference between mouseleave and mouseout? The two events seem to do the same thing!
jqueryasked 10 years, 10 months ago Wallace Maxters 102,340 -
0
votes1
answer5270
viewsDistance in meters between two coordinates using Javascript
Can you help me solve a problem? I need to calculate the distance in meters between two GPS coordinates. But I need to do it using pure Javascript. The context of this is that my application needs…
-
1
votes1
answer744
viewsRecover Selected Radio Button Used Recyclerview
I’m trying to make a RecyclerView, where each recycleritem has 3 options of radio button. Each of the radio butttons is related to an item in the list of objects that was passed to Adapter as…
-
9
votes2
answers300
viewsIs it possible to do this effect with CSS?
Indeed demonstrated in the video below Sony Spherize makes it seem as if the photo character is "breathing", there is some way to do it the same, or simulate something similar to CSS? Link to the…
-
1
votes0
answers27
viewsPass value by URL
Hello. I’m new to PHP and I have a question. I need that when my user access the link https://meusite.com/code.php?id=**01**&key=**12345** PHP read the values 01 and 12345 and consult within my…
-
1
votes2
answers1368
viewsResponsive form in HTML?
I am using the following code below, where the span controls the description text, the <p> controls a line of form, and the id of input specifies its size, this defined in CSS: #cmpG {width:…
-
0
votes1
answer33
viewsIn mysql it is possible to create an extra line if 2 or more lines are equal
Hello I wonder if it is possible to create a fourth line for mysql based on the Titles that repeat as in the first table where the game The Witcher\1743: Wild Hunt repeats 3 times and is already…
-
0
votes2
answers220
viewsHide/Show in Ivs according to subclasses
I’m trying to make a code that shows and hides some Ivs in the click, I tried to use css to help me, but I couldn’t. By the logic at the bottom of the "topic" click it removes the display class from…
-
0
votes1
answer127
viewsApply css to Parent
I have an input without borders inside a div and next to the input has a magnifying glass, in this case it is a search field, as far as I know is not possible with css but only with javascript, more…
-
-3
votes1
answer50
viewscollision response between circles is not working in javascript
I’m trying to implement the equations for the two-circle collision response in a program of mine, but all of them either made the ball speed incredibly high or only works 50% of the time (in the…
-
3
votes2
answers3394
viewsExchanging images with onclick
I would like to click on one image and display another in place, then click again and display one more and so on until I return to the original image. I can only display one image. I started…
javascriptasked 8 years, 5 months ago Inokk 31 -
2
votes2
answers36
viewsChecking for equalities between objects
Well, I need to check the content of 2 objects, I need to know if they are the same or not in the main fields. My idea is to check by inserting some data in the localStorage if that data already…
-
17
votes4
answers1730
viewsHow to maintain a project in 2 repositories?
I have a project and wanted to keep it in Bitbucket/Gitlab and Github at the same time. This is possible? I need them to work simultaneously so that if I want to do one push only in Bitbucket can I.…
gitasked 7 years, 3 months ago Giovanni Dias 712 -
1
votes1
answer31
viewsError collecting va_list value in C
Good afternoon. I came across a problem at the time of preparing the va_list in c. of two similar codes, one works and the other persists in error. extern bool _sqlite3_insert(const char *table,…