I hereby claim:
- I am MeLlamoPablo on github.
- I am mellamopablo (https://keybase.io/mellamopablo) on keybase.
- I have a public key whose fingerprint is 93C1 AE6A A35C 5B38 8955 9846 12BF 2F12 483F D814
To claim this, I am signing this object:
| ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILyTVAyGhPiQ8c0AxLAJUyIwCuFPhfAN3sFmVi6gIl7t pablo@pablo-Sobremesa |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| current_temperature=$(gsettings get \ | |
| org.gnome.settings-daemon.plugins.color \ | |
| night-light-temperature \ | |
| | sed 's/uint32 //g') | |
| if [[ $1 = "up" ]]; then | |
| new_temperature=$(($current_temperature + 100)) | |
| else |
| /* | |
| * Implementation of the algorithm described here: | |
| * https://docs.aws.amazon.com/ses/latest/DeveloperGuide/smtp-credentials.html | |
| */ | |
| const {createHmac} = require("crypto"); | |
| const key = process.env.KEY || (() => { throw new Error("Variable KEY not defined")} )(); | |
| const msg = "SendRawEmail"; | |
| const version = new Buffer(1); |
| #!/usr/bin/env node | |
| /* | |
| * Converts a redis url to the corresponding redis-cli command | |
| */ | |
| const rl = require("readline").createInterface({ | |
| input: process.stdin, | |
| output: process.stdout, | |
| terminal: false |
| #!/usr/bin/env zsh | |
| sudo rm -f /usr/bin/node | |
| sudo rm -f /usr/bin/npm | |
| sudo ln -s $(which node) /usr/bin/ | |
| sudo ln -s $(which npm) /usr/bin/ |
| # If you come from bash you might have to change your $PATH. | |
| # export PATH=$HOME/bin:/usr/local/bin:$PATH | |
| # Path to your oh-my-zsh installation. | |
| export ZSH=/home/pablo/.oh-my-zsh | |
| # Set name of the theme to load. Optionally, if you set this to "random" | |
| # it'll load a random theme each time that oh-my-zsh is loaded. | |
| # See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes | |
| ZSH_THEME="powerlevel9k/powerlevel9k" |
| /* | |
| Esta funcíón devuelve una promesa (Promise) con todas las menciones del usuario en 3DJuegos. | |
| EJEMPLO DE USO: | |
| //Cuando se ejecuta getMentions() la promesa todavía no se ha completado. | |
| var promesa = getMentions(); | |
| //Usamos promesa.then() para ejecutar la acción que queremos una vez se haya completado | |
| promesa.then(function(menciones){ |
| // ==UserScript== | |
| // @name TRUJ-Userscript | |
| // @namespace http://reddit.com | |
| // @version 0.1 | |
| // @description This is a port of the chrome extension TRUJ to UserScript. | |
| // The author of said extension is kmc and its download link can be found here: | |
| // https://chrome.google.com/webstore/detail/true-unexpected-jihad/ihglffdfnfdifnlgjecjbnpkjffciibm | |
| // I, (MeLLamoPablo a.k.a. /u/sfcpfc), am not responsible for any trouble that this UserScript may cause. | |
| // Contact the original author instead. | |
| // @author MeLLamoPablo a.k.a. /u/sfcpfc |
| -- dotaHeroes.lua by Pablo Rodríguez (http://steamcommunity.com/id/MeLlamoPablo) | |
| -- No license. Use it on your script. Modify it. Convert it on a nuclear weapon. Whatever. | |
| -- This table contains every released dota hero + Abyssal Underlord to day 15/07/2015. | |
| -- It is useful for outputting a hero name to the game, because the Scripting API will | |
| -- return "ugly" names beginning in npc_dota_hero | |
| dotaHeroes = {npc_dota_hero_abaddon = "Abaddon", | |
| npc_dota_hero_abyssal_underlord = "Abyssal Underlord", | |
| npc_dota_hero_alchemist = "Alchemist", |