I found a lottery API that brings me the result data of a lottery of Lotofácil, but I'm not able to access the data of the JSON object.
I'm trying this way:
$(document).ready(function(){
$.get( "http://developers.agenciaideias.com.br/lo...
Wanted creates a base (Activity) screen for the android app I'm developing so all other screens inherit from this base. Therefore, the screen would have an area reserved for the top of the page, a central region where the content will be variabl...
Using functions instead of putting the code directly influences the performance of a program? For example:
void minhafuncao(){
printf("Funcao");
}
main(){
minhafuncao();
}
instead of
main(){
printf("Funcao");
}
I know macros have...
I have the following HTML:
<div class="trabalheSubEsqTitulo">Fale Conosco</div>
When I click on the div trabalheSubEsqTitulo , I want it to apply color:red , however, I only want this with CSS.
Can you do it?
...
I need to make a program that the user type a three-digit number and the program reverses that number for example 123 -> 321 , I would like to know the logic to do this, because I can not think of anything.
Hello, I would like to know if it is possible with this code to create a service. Because all the videos I see they just create services for things that will be duplicated in the code and related or localhost links. If you can help me, thank you...
In Javascript, functions are objects and can be passed as a parameter to other functions. But when a function with dependencies on an object, such as variables and other functions, is passed to another object? Does it always run from the first o...
I'm doing an e-mail form in PHP, and I'm trying to make a alert when the client clicks submit a validation.
The validation seems to work because it redirects to the page I want, but does not show alert .
Is this code correct?...
How do I make my Java program not accept numbers as given by the user?
I would like, in a field that requires the user's name, if a number is inserted, such as a badge, do with what program reorder the name.
I have already thought of sever...