![Diagrama](http://g.gravizo.com/g?
digraph G {
splines=true; esep=20; K=0.1;
node[shape="box"]
init[label="Iniciar%5CnTrabajo%5CnStory",shape="invhouse"]
a[label="Entender story"]
b[label="Diagnosticar / Diseñar"]
c[label="Crear nuevo branch"]
d[label="Desarrollar specs mocha"]
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
// 1. Go to your linkedin post and load all comments | |
// 2. Open your browser's web development tools and paste this on the console. | |
// 3. Replace the reply message with your own | |
// 4. then run: | |
// * reply() to reply the current comment (highlighted in yellow) | |
// * next() to skip that comment | |
// * autoreply() to reply all automatically (it takes about 15 seconds to reply to each comment, | |
// but you can adjust the period variable if you want to try to do it faster - some replies could fail to post) | |
// Use at your own risk. There's no warranty linkedin will not block you if you abuse this tool |
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
// Don't forget to change values for $username and $secret (where it says PUT_YOUR_USERNAME_HERE and PUT_YOUR_PASSWORD_HERE) | |
<?if (!empty( $_REQUEST['phone']) && !empty( $_REQUEST['exten'] ) ) | |
{ | |
$num = $_REQUEST['phone']; | |
$ext = $_REQUEST['exten']; | |
$num = preg_replace( "/^\+7/", "8", $num ); | |
$num = preg_replace( "/\D/", "", $num ); | |
$username = 'PUT_YOUR_USERNAME_HERE'; | |
$secret = 'PUT_YOUR_PASSWORD_HERE'; | |
$timeout = 10; |
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
<!-- TITLE TOGGLE - paste this just above the </body> tag --> | |
<script> | |
(function () { | |
var t1 = document.title; | |
var t2 = 'Come BACK! 💘 DON\'T FORGET ME !!'; // <-- CUSTOMIZE THIS | |
var interval; | |
window.addEventListener('blur', function () { | |
interval = window.setInterval(function () { |
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
(function () { | |
// nombre de la clase del botón para seguir cuentas | |
var NOMBRE_CLASE_BOTON = '_aj7mu'; | |
// nombre clase del elemento que lista cada cuenta | |
var NOMBRE_CLASE_LISTADO = '_539vh'; | |
// nombre clase de cada item de la lista de cuentas | |
var NOMBRE_CLASE_ITEM_LISTADO = '_cx1ua'; | |
// texto de los botones que sirven para seguir cuentas | |
var TEXTO_BOTON = 'Follow'; // en español usar 'Seguir' |
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
#!/bin/bash | |
# author: Tomás Girardi | |
# Based on http://helw.net/2011/04/28/updating-osx-for-egypts-dst-changes/ by Ahmed El-Helw | |
# CHANGE THIS: | |
# go to https://www.iana.org/time-zones and get the URL for the last DATA | |
# release | |
URLTZDATASRC=https://www.iana.org/time-zones/repository/releases/tzdata2016d.tar.gz | |
# BACKUP your current icu file first |
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
#!/bin/bash | |
# author: Tomás Girardi | |
# Based on http://helw.net/2011/04/28/updating-osx-for-egypts-dst-changes/ by Ahmed El-Helw | |
# CHANGE THIS: | |
# go to https://www.iana.org/time-zones and get the URL for the last DATA | |
# release | |
URLTZDATASRC=https://www.iana.org/time-zones/repository/releases/tzdata2016d.tar.gz | |
ICUVERSION=`ls /usr/share/icu/*.dat | grep -o "\(\d\d\)l\.dat" | grep -o "^\d\d"` |