Posts by Caio Oliveira Felix • 9 points
6 posts
-
-2
votes1
answer50
viewsQ: A query to the database that brings the data in sequence
Follow a following code snippet: SELECT user_id, name, firstname FROM vrp_user_identities WHERE user_id IN (27, 2, 1, 365, 142) Returns me an array only with the data I want, but it comes in…
sqlasked Caio Oliveira Felix 9 -
0
votes1
answer73
viewsQ: Return an api value
Hello, I wrote the following code: var request = require('request') var cheerio = require('cheerio') const express = require("express") const app = express() const PORT = process.env.PORT || 8000…
-
1
votes1
answer43
viewsQ: Return the value of an async function
Hello, I’m hitting myself to write the code below const request = require('request-promise') const cheerio = require('cheerio') var fs = require('fs') const URL…
-
-1
votes1
answer90
viewsQ: How to stop a loop Each javascript
Hi, I’m developing a search engine for a bot rank on Twitch.tv follows the code below const cheerio = require('cheerio') const URL…
-
0
votes1
answer144
viewsQ: Run a python script in javascript
client.on("chat", function(channel, user, message, self){ if(message === 'Olá'){ client.action("ythezack", user["display-name"] + " Seja bem vindo!");} if(message === '!Nick'){…
-
0
votes1
answer240
viewsQ: Return the value from within the Selenium execute_script
Hello, I wrote this code below, and I would like to return the value of the drive.execute_script. I know the value is 3 from the console.log(i), but this value can change, and I want to go back…