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
| # Author: Juanjo Salvador | |
| # Website: http://juanjosalvador.es | |
| # How to execute: | |
| # $ floodogram.sh <@user> <message> | |
| #!/bin/bash | |
| while [ 1 = 1 ]; | |
| do | |
| bin/telegram-cli -W -e "msg $1 $2" >> /dev/null |
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
| #!/bin/bash | |
| ############################################ | |
| # Author: Juanjo Salvador Piedra | |
| # Website: http://juanjosalvador.es | |
| # GitHub: https://github.com/JuanjoSalvador | |
| # Twitter: @Linuxneitor | |
| # Telegram: @JuanjoSalvador | |
| ############################################ |
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
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| import random | |
| line = round(random.random() * 100 - 2) | |
| facts = [] | |
| with open("quotes.txt", "r") as f: |
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
| # Place the content of this script at the bottom of your ~/.bashrc file (or ~/.zshrc if you are using ZSH). | |
| # Please be ensure that your shell doesn't have any alias or plugin with the following names: ai, ar, au, af | |
| # Replace 'apt' with 'aptitude' if you want to use it instead, | |
| $PMG="apt" | |
| update() { | |
| sudo $PMG update | |
| } |
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
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| import random | |
| words = [] | |
| passw = [] | |
| with open("words.txt", "r") as f: | |
| for l in f: |
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
| angular.module('ExampleModule', []) | |
| .service('ExampleService', function($http) { | |
| var base_url = "http://mywebservice.com/"; | |
| return { | |
| this.get = function() { | |
| return $http.get(base_url + "users"); | |
| } | |
| } | |
| }); |
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 fs = require('fs') | |
| const iconv = require('iconv-lite'); | |
| function parse(path) { | |
| let dir = fs.readdirSync(path) | |
| dir.map(function(item) { | |
| let uri = iconv.encode(path + "/" + item, 'utf-8') |
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
| #!/bin/bash | |
| # Fill the empty vars and place it on /usr/local/bin/ | |
| # Run it by: | |
| # $ apksigner <apk file> | |
| PACKAGE=$1 | |
| KEYSTORE=<YOUR KEYSTORE FILE HERE> | |
| ALIAS=<YOUR KEY ALIAS HERE> |
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
| # -*- coding: utf-8 -*- | |
| import base64, requests, os, re, sys | |
| from bs4 import BeautifulSoup | |
| def _crack(code): | |
| zeros = '' | |
| ones = '' | |
| for n,letter in enumerate(code): |
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
| --- | |
| layout: post-jsonld | |
| #Datos del Evento | |
| title: "" | |
| description: "" | |
| #Fecha | |
| startDate: YYYY-MM-DDYHH:00 | |
| endDate: YYYY-MM-DDYHH:00 | |
| #Lugar | |
| place: "" |