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 Taringa browser notify | |
// @namespace http://taringa.net/nikumi | |
// @version 0.1 | |
// @description Escriba algo util | |
// @author You | |
// @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
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
</head> | |
<body> | |
<h1>Tab sync</h1> | |
<p>This tab is: <span id="tType"></span></p> |
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 toSend={'msgSubject':'Asunto', | |
'msgText':'cuerpo', | |
'msgTo':'nick destinatario'}; | |
$.post('/ajax/mp/compose',toSend,function(){/* callback */}); |
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 Coso que guarda el coso de comentar los shouts | |
// @namespace Naoko- | |
// @version 0.1 | |
// @description lo del titulo | |
// @include http*://www.taringa.net/* | |
// ==/UserScript== | |
if (localStorage.getItem("TaringaPriv") ==null){ | |
localStorage.setItem("TaringaPriv",0); |
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
#page ~ *:not(.ui-widget-overlay), footer.contentinfo ~ *:not(.ui-widget-overlay){ | |
display: inherit | |
} | |
script,style{ | |
display: none!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 Notis taringa | |
// @namespace http://www.taringa.net/maag- | |
// @description fixeo de notificaciones bug v6 | |
// @author Maag | |
// @include http*://*.taringa.net* | |
// @run-at document-start | |
// @version 1 | |
// ==/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 | |
$url = 'http://www.taringa.net/ajax/mentions/user'; | |
$fields = array( | |
'uid' => '25854531' //Id del usuario | |
); | |
$fields_string=""; | |
foreach($fields as $key=>$value) { $fields_string .= $key.'='.$value.'&'; } | |
rtrim($fields_string, '&'); |
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
//onResize Event for jQuery | |
//by FabiStark with ♥ | |
//Easy way to use | |
/* | |
$('p').onResize().on('resize',function(event){ | |
//You can handle this event |
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
const serverURL = 'http://glacial-cove-76906.herokuapp.com'; | |
getVotes= function(shoutId,cb){ | |
$.get(serverURL+'/get-votes?shout_id='+shoutId,function(res,status){ | |
return cb(res,status); | |
}); | |
} | |
renderButtons = function(){ |
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
const serverURL = 'http://glacial-cove-76906.herokuapp.com'; | |
getVotes= function(shoutId,cb){ | |
$.get(serverURL+'/get-votes?shout_id='+shoutId,function(res,status){ | |
return cb(res,status); | |
}); | |
} | |
renderButtons = function(){ |