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
const ts = require('tail-stream') | |
const http = require('http') | |
const PORT = 1234 | |
const HOST = '0.0.0.0' | |
const FILE = 'info.log' | |
const server = http.createServer((req, resp) => { | |
const tstream = ts.createReadStream(FILE, { | |
beginAt: 0, |
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 | |
cd $(mktemp -d) | |
wget https://aur.archlinux.org/cgit/aur.git/snapshot/insomnia.tar.gz | |
tar xzf insomnia.tar.gz | |
cd insomnia | |
makepkg -s | |
sudo pacman -U insomnia-*-x86_64.pkg.tar |
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
[Unit] | |
Description=Node.js App | |
After=network.target | |
[Service] | |
Type=simple | |
ExecStart=/usr/local/node-v7.4.0/bin/node index.js | |
WorkingDirectory=/home/yago/produccion/app | |
Environment="HOST=127.0.0.1" | |
Environment="PORT=1234" |
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
const emojisStr = '😀😂😅😆😇😘😍😜😎🤓😶😏🤗😐😡😟😞🙄☹️😔😮😴💤💩😭😈👿👌👸🎅👅👀👍💪👻🤖😺🐟🐠🐷🐌🐼🐺🐯🐅🦃🐕🐇🌾🎍🍀🐾🌏🌚🌝🌞🌦🔥💥☃️✨❄️💧🍏🍊🍌🌽🍔🌮☕️🍧⚽️🏐🎖🎹🎰🎣🏓🚵🎮🎬🚗🚓🚨🚋🚠🛥🚀🚢🎠🚧🚧🚧✈️🏥📱⌨💻📠📞🔦💴💸🔮💊🔬🔭📫📈📉🖇✂️🔒🔓📒💛❤️💙💔💞💕💝💘🚾⚠️♻️🎵💬🕐🇬🇧🇺🇸🇪🇸🇵🇹🇳🇺🇳🇷🇬🇾🇬🇦🇮🇸🇯🇵'; | |
const emojis = [...emojisStr] | |
.filter(emoji => emoji.length > 0) | |
.filter(emoji => emoji !== '\uFE0F'); | |
module.exports = emojis; |
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
BotToken = "123456:AAAAAAA" | |
AdminId = 11696011 | |
TorrentDownloadPath = "/tmp" |
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
server { | |
listen 80; | |
root /home/yago/production/lounge/client/; | |
server_name irc.yago.me; | |
autoindex off; | |
try_files $uri $uri @remote; |
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
mkdir -p /mnt/downloads | |
chmod 777 /mnt/downloads/ | |
sudo cp /usr/share/systemd/tmp.mount /etc/systemd/system/tmp.mount | |
sudo systemctl enable tmp.mount | |
sudo systemctl start tmp.mount | |
mkfs -t ext4 /dev/vdb | |
cp mnt-downloads.mount /etc/systemd/system/ | |
systemctl enable mnt-downloads.mount |
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
cd /tmp | |
youtube-dl "https://www.youtube.com/watch?v=bS5P_LAqiVg" | |
# 6s of durantion. Starting from 00:10:46. Kung Fury as input file. 11 fps. 640x360 frame size. Yes to all. Save as out.gif | |
ffmpeg -t 6 -ss 00:10:46 -i KUNG\ FURY\ Official\ Movie\ \[HD\]-bS5P_LAqiVg.mkv -r 11 -s 640x360 -y out.gif | |
# The maximum GIF file size for twitter is 5MB, our file is 4.8MB |
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 | |
adb shell mount -o rw /dev/block/platform/msm_sdcc.1/by-name/system /system | |
adb shell cp /system/etc/hosts /system/etc/hosts.$(date +"%Y-%m-%d_%H:%M:%S") | |
wget "https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts" -O /tmp/hosts | |
sed -i /analytics\.twitter\.com/d /tmp/hosts | |
adb push /tmp/hosts /system/etc/hosts |
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
package com.whatsapp.util; | |
import android.text.Spannable; | |
import android.text.style.URLSpan; | |
import java.net.MalformedURLException; | |
import java.net.URL; | |
import java.util.regex.Matcher; | |
import java.util.regex.Pattern; | |
public class LinkifyWeb { |