This file contains hidden or 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 nPp=null; | |
var showNoty= function(title,text,img, link){ | |
if(NP==="granted"){ | |
var opts= {body:text,icon:img}; | |
nPp = new Notification(title,opts); | |
nPp.onclick=function(){ | |
window.open(link); | |
this.close(); | |
}; |
This file contains hidden or 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
<?php | |
/* bbcode.inc.php Fabi hace esto re piola */ | |
/** | |
* @author Fabi | |
*/ | |
require_once("JBBCode/Parser.php"); | |
class BBcode{ | |
/*No sé realmente para que sirve*/ |
This file contains hidden or 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 Cropper | |
// @namespace Fabi | |
// @version 0.2 | |
// @description Corta imagenes desde el Mi | |
// @author Yo, Fabi | |
// @match http://www.taringa.net/* | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or 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 Notificaciones | |
// @namespace fabi | |
// @version 0.2 | |
// @description Notificaciones... | |
// @author Fabi | |
// @match http*://www.taringa.net/* | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or 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 params = JSON.parse(process.argv[2]); | |
var trt=["Te quiero :love:",":love:","Te quiero cc4y3389yfff33cc"+params.nick+" :love:","<3","♥"]; | |
console.log(trt[Math.floor(Math.random() * trt.length)]); |
This file contains hidden or 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
.tooltip-v6 .user-tip .actions-tip .follow-buttons .v.following,.tooltip-v6 .user-tip .actions-tip .follow-buttons .g.not-following:hover{ | |
background:#53a32e!important; | |
color:#f0f0f0!important; | |
} | |
.tooltip-v6 .user-tip .actions-tip .follow-buttons .r.unfollowing{ | |
background:#d35400!important; | |
color:#f0f0f0!important; | |
} | |
.tooltip-v6 .user-tip .actions-tip .follow-buttons .g.not-following{ | |
background: #eaeaea!important; |
This file contains hidden or 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 Klep Beta | |
// @namespace Fabi | |
// @version 0.1 | |
// @description eso | |
// @author @OK | |
// @match http://www.taringa.net/* | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or 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 Google Imagenes | |
// @namespace Fabi | |
// @version 0.667 | |
// @description Buscar imagenes en google en comentarios/shouts | |
// @author @OK | |
// @match http://www.taringa.net/* | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or 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
<?php | |
$host=""; //rellenar | |
$port=""; //con datos | |
$user=""; //de conexion | |
$pass=""; //para | |
$db=""; //mysqli | |
if ($port != ""){ | |
$HostFull = $host . ":" . $port; |
This file contains hidden or 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
<?php | |
//Ejemplo 1 | |
#Spected: "no empty" | |
$asd="0"; | |
if(empty($asd) == false){ | |
echo "no empty"; |