Posts by Caio Oliveira Felix • 9 points
6 posts
- 
		-2 votes1 answer50 viewsQ: A query to the database that brings the data in sequenceFollow 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 valueHello, 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 functionHello, 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 javascriptHi, 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 javascriptclient.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_scriptHello, 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…