P2P Projects List
This Gist MOVED to a public repository: P2P Index
http://dl.persiancamp.info/ | |
http://www.dph.am/ | |
http://www.digiterp.com/Movies/ | |
http://12.228.222.153/ | |
http://dl.farsimovie.net/ | |
http://dl.hastidownload.com/ali/ | |
http://hecklingfext.themis.feralhosting.com/public/ | |
http://fast.movieloverz.com/ | |
http://dl8.freeupload.ir/ | |
http://www.speednetbd.com/movie/ |
This Gist MOVED to a public repository: P2P Index
N.B., This is for educational purposes only. If you want an easier method, compile an engineering build of the recovery.img and boot it: https://source.android.com/source/building.html
N.B., This is a work in progress. I'm updating for Nexus 5X and Android 6.0.0. Booting the modified recovery.img does not currently start adbd. I've created
ssh() { | |
if [ "$(ps -p $(ps -p $$ -o ppid=) -o comm=)" = "tmux" ]; then | |
tmux rename-window "$(echo $* | cut -d . -f 1)" | |
command ssh "$@" | |
tmux set-window-option automatic-rename "on" 1>/dev/null | |
else | |
command ssh "$@" | |
fi | |
} |
hostup() { | |
if (( $# != 1 )); then | |
echo "Usage: hostup HOSTNAME" | |
else | |
until $(which ping) -W1 -c1 ${1} > /dev/null; do sleep 5; done && $(which say) "${1} is up" | |
fi | |
} |
Simply save the script in your home directory (as set-alias.sh
or whatever else you want), and add the following to your .bashrc
:
source ~/set-alias.sh
Don't forget to use the right filename if you've changed it!
Now you can just use the curlio
command:
#!/usr/bin/env ruby | |
# DESCRIPTION: | |
# This is a script to rearrange your windows like this: | |
# _________________________ _________________________ | |
# | _________ | x| | | major x| minor x| | |
# | | major x |__| | | | |____________| | |
# | | | |_____| | --> | | minor x| | |
# | |_________| | ______ | | |____________| | |
# | |______|| x|| | | minor x| |
// Copyright 2016 Jeremie Miserez <jeremie@miserez.org> | |
// | |
// MIT License | |
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | |
// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | |
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF O |
#!/usr/bin/env sh | |
# serve.sh | |
# Modular version: https://gist.github.com/alganet/a22a1373dcee7c175d1e | |
# Expansion on zsh | |
command -v setopt 2>&1 >/dev/null && setopt SH_WORD_SPLIT | |
# POSIX on bash | |
export POSIXLY_CORRECT=1 | |
# Lists files and folders as HTML |
#!/bin/bash | |
url=http://redefininggod.com | |
webarchive=https://web.archive.org | |
wget="wget -e robots=off -nv" | |
tab="$(printf '\t')" | |
additional_url=url.list | |
# Construct listing.txt from url.list | |
# The list of archived pages, including some wildcard url |