Posts by wes85melis • 39 points
10 posts
-
0
votes0
answers20
viewsQ: Permission denied (Publickey) in Git while running pipline in Jenkins
Blz, everybody? A very strange situation here: I can build a particular image in Openshift normally but, when trying the same build, with the same repository, in my pipe in Jenkins, he informs me:…
-
-1
votes1
answer28
viewsQ: Error in jason_decode() function
Well, I’m making a simple page to consume data from a wikipedia api through a short form: <form action="" method="get"> <input type="text" name="busca"> <input type="submit"…
-
0
votes3
answers51
viewsA: Average age in a family - Core dump error
Exactly personal. I made trivial mistakes like the absence of '&'... It just wasn’t clear to me exactly why he was giving Segmentation fault when applying (unnecessarily. My error) "n" when…
-
0
votes3
answers51
viewsQ: Average age in a family - Core dump error
the code below is intended to read a Qtd amount of people in a family, receive the sum of ages and present the average at the end: #include <stdio.h> int main() { int qtd, idade, i; float…
-
0
votes3
answers44
viewsA: jQuery does not format the date field
Following the above guidelines and using a part file for the script, it worked. I only had to call the file created, setmascara.js , after the declaration of the <form> Thus remaining:…
-
1
votes3
answers44
viewsQ: jQuery does not format the date field
I am studying javascript and jQuery and decided to make a simple page for validation of a data field. I used the plugin Masked input and limited the field to 10 characters. I am working with 3…
-
0
votes0
answers45
viewsQ: Retrieve a flag in a function
I have a function in a php script where, in it, I must recover the values 1 or 3 of a table in mysql (1 - documents relevant to service providers, 2 -documents of the contracts (companies) for which…
-
0
votes3
answers11142
viewsA: Difference between Console.Read(); and Console.Readline();
I just understood this in practice where a variable of my code (int) would receive via keyboard, for example: 240 and later made a multiplication of this variable with another, but the final result…
-
0
votes2
answers202
viewsQ: Integer reading via console
Good evening, folks. A basic question: In the code below class Conversora { double Oneknot = 1.852; // km/h public void Conversor(){ Console.WriteLine("Informe a velocidade em nós: " ); int speed =…
-
2
votes2
answers475
viewsQ: Untreated exception (index based on 0)
My idea is to make a small registration and I’m testing this to later add this data in a BD. The problem occurs on the line Console.Write("\nGenero do disco : {1}", genero);, at the time of…