Interesting questions
-
1
votes0
answers298
viewsCommon bootstrap tabs/pills content
Bootstrap tab/pills and tabs content are almost equal, differentiating only a few fields. There’s a way to make the most of what they have in common? <ul class="nav nav-pills"> <li…
-
1
votes2
answers622
viewsHow to Split Javascript using multiple tabs and without removing them?
I have the following Javascript code: if (v.includes("'!'")) var separators = ["\\\''", '\\\&', '\\\#', '\\\|']; else var separators = ["\\\''", '\\\'', '\\\&', '\\\#', '\\\|']; var…
-
-4
votes2
answers160
viewsHow not to select an element in css?
I want to select all the elements that are inside a div, but there’s one specific that I don’t want to be selected. How can I do this "descent"?
-
0
votes1
answer66
viewsHow do I use a "or" no while in C
I’m trying to make a naval battle application with the while stop with 2 conditions, which are the player’s mistakes or hits, where he can miss 5 times and have to hit all points, which in this case…
-
0
votes1
answer504
viewsCircle with Percentage Effect jQuery
I found here on the site a topic about a certain effect. It’s a percentage in a circle. I couldn’t find an example site. But it’s kind of like this: http://anthonyterrien.com/knob/ However, the…
jqueryasked 10 years, 6 months ago Diego Souza 16,524 -
4
votes2
answers224
viewsDeployer of a Spring Boot Project
I’m deploying my first project in Spring Boot + Angular. I have a linux server (centos) where I took a tutorial to install Tomcat: tutorial The Tomcat is configured according to the tutorial, I’ve…
-
1
votes1
answer99
viewsReplace javascript modifies only the last term
I’m using javascript code to bold the searched terms, but if the term repeats it changes only the last one and also I wish it wasn’t case sensitive: for example, in the string: Brilha o Sol, como…
javascriptasked 5 years, 1 month ago Miguel Silva 437 -
6
votes3
answers62
viewsBest way to apply a Pattern to the acronym
I have the following possible returns: AB A1 To The first will always be a letter, the second may or may not occur and may be letter or number. In Javascript it looks like this (Example): if…
-
1
votes1
answer133
viewsIs there any way to access a position by string?
There would be no way to access a position using a string? Example: int vetor[1000000]; vetor["abc"]++; I know it’s crazy of me, but... "abc" = 01100001, 01100010, 01100011, 00000000 (null…
-
3
votes1
answer96
viewsIs it possible to raise desktop projects on Github?
Can I develop my desktop programs and lift to Github, and work that way with versioning my program with Git? Or can I only raise web projects for Github?
-
3
votes3
answers5031
viewsError formatting ZIP code
I’m having problems with my script, when the zip code field is already formatted, it clears the field by clicking again on the button. How do I make it not to accuse as invalid format or not clear…
javascriptasked 10 years, 1 month ago Kelly Soares 1,181 -
-1
votes1
answer280
viewsSearch object by PYTHON class attribute
Good afternoon, I wonder if I can find an object using an attribute Example: class Pessoa: def __init__(self, nome, idade, cpf) self.__nome = nome self.__idade = idade self.__cpf = cpf pessoa1 =…
-
0
votes1
answer193
viewsDatepicker does not open when loading Ajax into a Bootstrap 4 modal
I need to open a calendar in an input that is in the file uploaded by Ajax. How can I call the plugin Datepicker when a Ajax in a modal Bootstrap? I have these codes: <!-- Modal --> <div…
-
0
votes1
answer55
viewsIs it possible to capture the index of a selected select?
Simply put, I have a select (combobox) in my html and would like to know which Input (position) has been chosen. that is, if it was the first, the second, the third... The reason is that in my ajax…
-
1
votes0
answers49
viewsHow to import a huge CSV into Python?
Hello, I’m working on a enrollment file for the School Census. I want to import in Python but none of the answers I’m looking at are working. pandas pd.read_csv() takes a long time and cannot open.…
pythonasked 5 years, 10 months ago Jessica Voigt 883 -
2
votes1
answer61
viewsProcedure runs alone -Pascal
I made a code in pascal that reads two images type pgm and checks if one is contained in the other, but when reading the second image, instead of reading the program simply warns that the type of…
-
1
votes1
answer85
viewsAt runtime, does the Form ID Asp.net webforms change?
At runtime, the Form ID Asp.net webforms changes, see that I have on my machine the component ID. Local example: <asp:HiddenField runat="server" ID="MenuSelecionado" value="processo"/> After…
-
1
votes1
answer1676
viewsDOUBT can I make more than one ajax request on the same page?
I am doing a search in the database and returning this data in a table via ajax, there is in this same table a column that has a link that returns more information about the data, all this by ajax.…
-
0
votes3
answers5715
viewsHow to customize the Delphi editor?
I would like to get some tool to customize the Delphi editor. Although it is a great editor, with features integrated with the component interface that generates and updates code automatically;…
-
0
votes1
answer23
viewsValidation does not redirect PHP / Jquery
I have a validation form, but it is not redirecting to the page after checking the access when I use Jquery, but when I use it directly in PHP, it works. Jquery $(document).ready(function(){…