Posts by Gabriel Antunes • 31 points
6 posts
-
0
votes1
answer161
viewsA: Referenceerror: hasOwner is not defined
Resolved following the idea of the Cmte Cardinal. I removed the class function and put it in a separate file utils.js and exporting the function. Within the class I did the file import and called…
-
-1
votes1
answer161
viewsQ: Referenceerror: hasOwner is not defined
Hello, I am working on a Node application using mainly express and Axios. I am using controllers and within one of these created a function and within that function, I call one another, however,…
-
3
votes1
answer1534
viewsQ: Pass an object between Javafx (screens)
The idea of the system is to save some information in a txt file that will be consulted by a code in Lisp, a decision tree routine will be performed and return the result to be displayed in the Java…
-
0
votes1
answer106
viewsQ: Starting at Lisp
How to start in Lisp? Common Lisp to be more exact, it’s a totally different language than I’m used to (I only have 3 years of programming study), the installation examples I’ve seen are usually on…
lispasked Gabriel Antunes 31 -
0
votes2
answers194
viewsA: Matrix vector of records
It was very simple: Just put this structure together. #include <stdio.h> #include <stdlib.h> struct dados{ char *nome; char *endereco; int idade; }; struct matriz{ struct dados…
-
0
votes2
answers194
viewsQ: Matrix vector of records
In the classroom, students were asked to replicate a scheme designed by the teacher. In this scheme he made a vector, within each position he made a matrix and within each position of the matrix he…