Interesting questions
-
1
votes1
answer499
viewsHow to publish an Asp.net website mvc 4 on iis6?
I give a Publish in visual studio 2012, I add a new website in iis6, I put the path of the published files folder, but when I go to the site, it opens the login screen and when I click in the page…
-
2
votes1
answer84
viewsList an item accompaniments from a mysql sale
Table 1 - sale id_venda Table 2 - item_request id | id_venda | id_pastel Table 3 - item_accompaniment id | id_item_request | id_follow-up Example: I make a sale with two items and their…
mysqlasked 8 years, 3 months ago Bruno Xavier 21 -
6
votes2
answers1375
viewsAndroid Studio - No accent appears
Hello, I have a very strange error in Android Studio, suddenly it stopped accepting the accents in the string and comments, when I try to type for example "is" it shows only "a". I’ve tried…
-
2
votes1
answer124
viewsHow to apply mask in these cases?
How to put mask on item @item.CPFCNPJDevedor? @foreach (var item in Model.Result) { <tr> @if (Permissoes.Where(x => x.Acao == "EditChassiCrvGravame" || x.Acao == "VisualizarChassi").Any())…
-
1
votes6
answers9622
viewsTransform json array into php array
Well, I have a little problem that I haven’t been able to solve. I already Googled about it, and the solutions I found did not suit my problem. I need to transform the array "Players" that is in…
-
2
votes2
answers64
viewsHow to parse a string with double space separator on the left of a character?
I’m having a hard time parsing a string to turn it into an associative array. For example, see an example of the string cited: Titulo Valor Desc item1 10 Descrição aqui novo aqui AB Mensagem Label…
phpasked 7 years, 2 months ago Fábio Jânio 3,407 -
0
votes1
answer1232
viewsRemove the last value of an array
I have a basic college project and one of the requirements of the exercise is to remove the last value from an array of integers. I am not able to do with the last value be removed without using an…
-
0
votes0
answers152
viewsJSON error in PHP : Syntaxerror: JSON.parse!
I have a problem filling Google Maps with some markers, coming from a PHP (json). When I open the browser, error appears: SyntaxError: JSON.parse: unexpected character at line 1 column 1 of the JSON…
-
0
votes1
answer970
viewsHow to solve this problem in Datatables?
I have a problem with Datatables that is keeping me awake. I have the following code. It even shows the datatable but the table functions don’t work. Next doesn’t even show the Prev. If I remove the…
-
-2
votes1
answer1350
viewsPython Selenium does not perform the send_keys function
I’m trying to make a bot to comment alone on youtube video, it’s working normally, until it’s time to type the comment. I have already researched everything that is place and I found nothing that…
-
1
votes1
answer445
viewsAccess properties of a Python file
I want to access the properties of a file using Python. I saw that it is possible to do this using the function listxattr of the OS module, but when trying to use it, it gives me an error. See my…
-
2
votes1
answer17
viewsMake remote json into string
As it is possible to return the value of a remote json and read as string, example when I get the json it prints the whole result as in the image below. code below: var https = require('https'); var…
-
4
votes1
answer618
viewsPicking Gaps in an SQL sequence
Hello, today I own a select that returns me the following result: I do another select that returns a value, 5 for example. I would need to know which numbers are not between number 1 and number 5.…
-
0
votes0
answers52
viewsRecursive function to relate an array to another
My problem is this. I have two tables in my database, patients and diseases. Table patients have the columns nomedopaciente, (symptom 1, symptom 2,....symptom n). Symptoms are fed with values…
-
0
votes1
answer55
viewsFragments setArguments and getArguments error
I’m trying to pass some information from Activitymain to a fragement but android is complaining, in Activitymain I pass the values so: if (f_caixaTexto== null) { f_caixaTexto = new…
-
0
votes1
answer32
viewsMultiply table prefixes
Is there a php function to replace #_ by multiple example table prefixes Test,test2,test3,test4 ->from ( '#__dolar_corrent AS a' )->leftJoin ( '#__users' )…
phpasked 9 years, 8 months ago valdir silva 89 -
2
votes1
answer149
viewsHow to do Insert 1 to 1, with four tables in Laravel
I am working with a database already populated. It has four tables (Aluno, clinico, Familia and TipoCompulsao), where Aluno receives foreignkey of the three tables; Student model class Aluno extends…
-
1
votes1
answer236
viewsStore values temporarily in text fields (inputs)
I’m with a web application that I made a simple filter to store values of a patchpanel and I made a dynamic input that by telling the amount of ports that that patch has, automatically generate new…
-
1
votes0
answers249
viewsThere are anti-ddos in apache ? What measures should I take by apache for prevention?
In greater detail: I believe that I am suffering some kind of attack, I suspected and I put an anti ddos, and it has already blocked some addresses, it released me the network and returned to…
-
0
votes1
answer71
viewsI am unable to list the data in the Mysql database using Hibernate JPA
**Classe: Estado** package entidade; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; @Entity public…