This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[CustomHandleError] | |
[Authorize] | |
[HttpPost] | |
public ActionResult AddArchivosPorPieza(FormCollection collection) | |
{ | |
try | |
{ | |
long piezaId; | |
String observacion = collection["observacion"]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Twitch Chat Filter | |
// @namespace http://myloli.moe | |
// @version 1.0 | |
// @description Chat Filter for Twitch | |
// @match http://www.twitch.tv/* | |
// @match https://www.twitch.tv/* | |
// @match http://player.twitch.tv/* | |
// @grant GM_addStyle | |
// @grant GM_getValue |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var userId= ""; | |
request(data, function (error, response, body) { | |
if (!error && response.statusCode == 200) { | |
userId = body.user.id.toString(); | |
console.log(userId);//muestra la respuesta corrrecta | |
} | |
}); | |
console.log(userId);//no muestra nada |