Posts by Isaias Velasquez • 151 points
5 posts
-
1
votes2
answers176
viewsA: TRI - using MIRT
Bringing the translation of the answer I found in a Google Groups: "It is on the technical entry list, called NCYCLES: mod <- mirt(Science, 1, technical = list(NCYCLES = 2000)) source:Google…
ranswered Isaias Velasquez 151 -
3
votes2
answers3490
viewsA: How to make Javascript read a value given by a user?
Use the method prompt() to collect data in a pop-up, and alert() to show something in a pop-up: var texto = prompt('insira texto aqui'); alert(texto);…
javascriptanswered Isaias Velasquez 151 -
2
votes1
answer120
viewsA: Water and carboy exercise
If I may, I’d like to point out two things: 1 - Your code didn’t seem to make much sense, so I rewrote from scratch. 2 - I admit that there is some verbiage in the code I wrote, but it was for…
pythonanswered Isaias Velasquez 151 -
1
votes1
answer62
viewsQ: Python3: Module csv has no Dictwriter Member
Hello. I am following the reading of the book Data Visualization with Python and Javascript from Scratch by Kyran Dale (O'Reilly). In the following code, it is understood that a . csv file should be…
pythonasked Isaias Velasquez 151 -
4
votes3
answers4843
viewsA: For a search with no results, should the HTTP response be 404, 204 or 200 with an empty body?
I believe that Status 404 (Not Found) is more suitable for features that, in fact, are not found, but were expected to be. If it is a search, of the type may or may not be found, I would use the…