-
user.action
-> privoxy -
named.local
-> bind -
127.0.0.1:9095
-> tor
$ ./update
#!/bin/bash | |
set -euo pipefail | |
PORT=${1:-8000} | |
HTML='<!doctype html> | |
<html> | |
<head> | |
<title>hey!</title> |
#!/bin/sh | |
cat <<EOF >/tmp/adminer.conf | |
server { | |
listen 80; | |
server_name localhost; | |
index index.php; |
<!doctype html> | |
<html> | |
<head> | |
<style> | |
html { background-color: #2f3131; } | |
textarea { | |
display: block; | |
padding: 15px; | |
margin: 20px 10px; |
#!/usr/bin/zsh | |
INPUT=${1:a} | |
FRACTION=${2:-0.9} | |
BT=$(ffprobe -i $INPUT 2>&1 | grep Video | grep -o -E '[[:digit:]]+ kb\/s' | cut -d' ' -f1) | |
while [[ "$BT" -gt '50' ]] | |
do | |
BT=$(printf "%0.f" $(( $BT * $FRACTION ))) |
# Copy of ohmyzsh/jnrowe-theme | |
# with issue https://github.com/ohmyzsh/ohmyzsh/issues/3742 fixed | |
autoload -U add-zsh-hook | |
autoload -Uz vcs_info | |
zstyle ':vcs_info:*' actionformats \ | |
'%F{5}(%f%s%F{5})%F{3}-%F{5}[%F{2}%b%F{3}|%F{1}%a%F{5}]%f ' | |
zstyle ':vcs_info:*' formats '%F{2}%s%F{7}:%F{2}(%F{1}%b%F{2})%f ' | |
zstyle ':vcs_info:(sv[nk]|bzr):*' branchformat '%b%F{1}:%F{3}%r' |
/************* | |
* ambush.js * | |
************* | |
* | |
* Oh. Oh, I see. This wasn't quite part of the plan. | |
* | |
* Looks like they won't let you take the Algorithm | |
* without a fight. You'll need to carefully weave your | |
* way through the guard drones. | |
* |
<?php | |
$finder = PhpCsFixer\Finder::create() | |
->in(__DIR__) | |
->name('*.php') | |
->notName('_ide_helper.php') | |
->notName('*.blade.php') | |
->notPath('bootstrap') | |
->notPath('node_modules') | |
->notPath('storage') |