Posts by PedroExpedito • 29 points
7 posts
-
0
votes1
answer44
viewsA: C : "fseek. c: No such file or directory" doing a Unix Tac
Well there were 3 errors in my code the main one. 1st Mistake: char bufferLine[10000]; There may be lines that have more than 10,000 bytes before the next \n second mistake: Ftell behavior for text…
canswered PedroExpedito 29 -
1
votes1
answer44
viewsQ: C : "fseek. c: No such file or directory" doing a Unix Tac
Guys I’m trying to do a programming challenge this one. It is not a very difficult challenge but my script does not have the expected behavior, in small files works but in larger files like 1GB I…
casked PedroExpedito 29 -
0
votes1
answer568
viewsA: Error: Nodejs, javascript "belongsTo called with Something that’s not a subclass of Sequelize.Model"
For some mysterious reason it was just changing the word 'model' inside the map for any other thing that works example. models .map((exemplo) => model.init(this.connection)) .map((exemplo) =>…
-
0
votes1
answer568
viewsQ: Error: Nodejs, javascript "belongsTo called with Something that’s not a subclass of Sequelize.Model"
I am trying to use belongsTo function and get this error. Connection DATABASE has been established successfully. (node:14119) UnhandledPromiseRejectionWarning: Error: User.belongsTo called with…
-
0
votes3
answers611
viewsA: Code does not run in C on Vscode
He can’t find it, quite possibly because of ./ you need to put in the settings simply your file.exe
-
-1
votes2
answers1092
viewsA: How to create a C Calendar?
If you are running on a Unix machine Like creoq that you can use the shell cal command ai your code would look like this #include <stdlib.h> // para incluir o system int main(void) {…
-
1
votes1
answer106
viewsA: (Godot) Touch does not perform arc animation and does not work properly
You need to use the Yield function for the code only to continue when the animation is finished so there are no jumps, you can find in the Godot documentation. your code would look like this func…
godotanswered PedroExpedito 29