Posts by Fernando Antunes • 1 point
4 posts
-
0
votes1
answer86
viewsQ: Is it possible to take the use of RAM memory using vuejs or in php?
Hello, I wonder if it is possible to make a system in vuejs or directly in php that takes how many of RAM memory I am using in total, with all programs.
-
0
votes3
answers1913
viewsQ: Return last index of Array
I have the following code that will bring me an undetermined list; for example 5 items. I would like to return only the last item from the list. for(var i = 0; i < data.list.length; i++){…
-
0
votes1
answer282
viewsQ: Return the last Array date
Hello, I have a code where I am searching a list of dates. for(var i = 0; i < data.list.length; i++){ if(Date.parse(data.list[i].date) >= dateA){ console.log(data.list[i].date) } } i wonder if…
-
0
votes0
answers27
viewsQ: Authentication with js node and passports using GCF
I wonder if there is a way to authenticate requests for cloud functions on google using nodejs and passport, whenever I want to know what it takes to verify that I am authenticated and return to the…