Posts by Vinícius França • 73 points
8 posts
-
1
votes0
answers37
viewsQ: What is the difference between HTTP server and HTTPS considering my structure?
I have a js Rest Node application running behind a proxy Reverse by Nginx, with https properly configured, where the server is configured as follows: Obs: app is my router. const httpServer =…
-
1
votes1
answer241
viewsQ: Add an event to a JAVASCRIPT table
I’m trying to add a click event to all the elements I add to the table. I do this at the same time I create the lines and cells. Obs: the code works but it is not set the "src" that should be…
javascriptasked Vinícius França 73 -
1
votes1
answer43
viewsQ: Implement a specific size for a div
I want my table to be the same size as the div that contains my iframe. Is that possible? If so, what am I doing wrong? Obs: I am posting the parts of my code that affect the div that contains…
-
0
votes0
answers351
viewsQ: How to fix a Javascript error
I’m using the javascript library P5.js, and I’m trying to access files local, in the current case I am trying to load a json file through the function loadJSON(url) provided by the library. However…
-
1
votes2
answers870
viewsQ: How to use a file . JSP
I am extremely new in JSP language, I wanted to know how to use a jsp file that I created and display for example in the browser, the same way I do with html files, ie how to use a jsp file…
-
-1
votes2
answers68
viewsQ: Vector by Parameter in C
I need to pass the Vector position by parameter as follows code, my function receives the address and modifies directly the variable passed by parameter. But the program stops working and closes…
-
1
votes0
answers174
viewsQ: Make file and build on the terminal
I need my Makefile to run on the terminal so that it is not necessary to insert on the terminal $ time make run, and yes only make run, and let it show execution time in the same way. Can someone…
-
1
votes2
answers396
viewsQ: Doubt about struct and list in c
I’m having trouble when you need to give a value to a person, in case I need to give the value name and age to the person. I tried to create a struct PESSOA and a list containing a person and an id,…