Posts by Natan Barros • 326 points
7 posts
-
2
votes1
answer41
viewsA: Creating Crud in Nodejs Error in the post
It wasn’t very clear, I believe that when you push it you don’t treat the data as an object, if you put it this way : users.push({name, idade, saldo, aposta(game, investimento, lucro)}); could solve…
-
0
votes1
answer271
viewsQ: How can I "Update-Migration" vscode?
I want to use Entity Framework Core Migration but use the visual studio code. I’m trying to find a nuget extension in vscode that you can change on the command line (like a cmd), but I can’t find…
-
1
votes4
answers140
viewsA: "Enum" should be used to indicate business rule options?
I think not, because the enumerator is a type that can treat a set of defined values, so I think using the enumerator dynamically may not make sense, in the case that you demonstrated the right one…
-
8
votes2
answers216
viewsA: What are the correct tools to debug Javascript code for viewing in the Browser?
Hello, I think a good way to debug your script is as follows... I use google Chrome, opening your program in the browser, go to the developer tab by pressing F12 or right-click on inspect element...…
-
3
votes1
answer305
viewsA: Read string with c++ spaces
You, can use the getline function(), getline(cin, frase);, will consider the spaces it will stop reading until it breaks a line.
c++answered Natan Barros 326 -
1
votes2
answers98
viewsA: Json for List C#
Hello, I believe that if you use the names of the json variables identical to the Item_box class. [ { "data": "28/10/2019 12:50:26", "id": 2, "id_usuario": 0, "latitude": -2, "longitude": -52,…
-
3
votes1
answer300
viewsA: Arrays in JAVA
In consecutive reading of numeric values and String must empty the keyboard buffer before reading the String value, for example: int n; String s; System.out.printf("Informe um Número Inteiro: "); n…
javaanswered Natan Barros 326