Posts by Wellington Pardim • 80 points
5 posts
-
1
votes1
answer2989
viewsQ: What is the key:generate command for Laravel?
I always see this command as a requirement to run cloned projects, but what is its purpose?
-
0
votes3
answers542
viewsA: What do you call that "view change" effect by sliding?
In the case of iOS platform, from what you describe, I think is used the UISwipeGestureRecognizer. https://developer.apple.com/documentation/uikit/uiswipegesturerecognizer…
-
1
votes2
answers107
viewsA: How to write user entries in python files?
I believe in this case you can use the .format: produto = ("{} = {}").format(dict[prod_cad], val) op.write(produto) https://docs.python.org/2/library/string.html#format-examples…
pythonanswered Wellington Pardim 80 -
0
votes1
answer713
viewsA: Add +1 Variable to each created object
It may not be the case that you are having problems with. But there is a problem here: while(this.getNumeroCand() == num[i]){ System.out.println("Digite o número do candidato");…
javaanswered Wellington Pardim 80 -
4
votes2
answers231
viewsA: What is the difference between " - " and " / " in CMD commands
Originally, on DOS/Windows systems, / to complement the commands, whereas in other systems such as Unix-based systems, the - to complement the commands. However / is only a convention( P.ex.:…