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
binmode STDOUT, ":utf8"; | |
$the_cow =<<EOC; | |
$thoughts | |
$thoughts | |
$thoughts | |
$thoughts | |
\e[49m \e[38;5;95m\N{U+2584}\N{U+2584}\e[38;5;131m\N{U+2584}\e[38;5;137m\N{U+2584}\N{U+2584}\e[38;5;173m\N{U+2584}\N{U+2584}\N{U+2584}\N{U+2584}\N{U+2584}\N{U+2584}\N{U+2584}\N{U+2584}\N{U+2584}\N{U+2584}\N{U+2584}\e[38;5;137m\N{U+2584}\N{U+2584}\N{U+2584} | |
\e[38;5;131m\N{U+2584}\e[48;5;239;38;5;173m\N{U+2584}\e[48;5;131m\N{U+2584}\e[48;5;137m\N{U+2584}\e[48;5;173m \e[48;5;137m\N{U+2584}\N{U+2584}\e[48;5;95m\N{U+2584}\e[49;38;5;137m\N{U+2584}\e[38;5;131m\N{U+2584} | |
\e[48;5;95;38;5;137m\N{U+2584}\e[48;5;137;38;5;173m\N{U+2584}\e[48;5;173m \e[38;5;137m\N{U+2584}\N{U+2584}\e[48;5;137;38;5;131m\N{U+2584}\N{U+2584} \e[48;5;173m \e[48;5;137;38;5;173m\N{U+2584}\e[48;5;95;38;5;137m\N{U+2584}\e[49;38;5;95m\N{U+2584} | |
\N{U+2584}\e[48;5;137;38;5;173m\N{U+2584}\e[48;5;173m \e[38;5;137m\N{U+2584}\e[48;5; |
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 | |
# A bash script meant to be used along with linux-shimeji | |
# Requires linux-shimeji (obviously) and either xcompmgr or compton (for compositing) | |
shimejijar="/opt/linux-shimeji/Shimeji.jar" | |
if [ -n `which java` ]; then | |
echo 'ERROR: No Java install found! Please install a JRE.' | |
exit | |
fi |
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 | |
# A script meant for controlling linux-shimeji | |
# Made by that4chanwolf | |
shimdir="/opt/linux-shimeji" | |
shimfilename="Shimeji.jar" | |
shimjar="${shimdir}/${shimfilename}" | |
extra="/tmp/linux-shimeji" | |
debugfile="${extra}/debug.txt" | |
shimpid="$(ps aux | grep -v grep | grep "${shimfilename}" | awk '{ print $2 }')" |
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
#loldubs | |
/jBYtwnZn7RXj/YsnEcxphw==/ | |
/Dgpj5szHW+S89K7JVBOWGw==/ | |
/l0eYomI+LiG0RgBfkNweXw==/ | |
/pOkP9WHwQQpYR0fL5/KNzA==/ | |
/oFRJ9eeLQyWjwrlxJWzlAg==/ | |
/IZDcDjioBzvgXtkkKYm8xA==/ | |
/nisBqEY6LgrZwj8dXlQ8ug==/ | |
/9aeOHhGn79xnsXGN5uz3iQ==/ | |
/zNoIeGUph+tVlQNvSdMK0Q==/ |
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
// ==UserScript== | |
// @name TechChan+ | |
// @author that4chanwolf | |
// @namespace techchan+ | |
// @description Adds things to techchan.org | |
// @include http://techchan.org/* | |
// @version 0.0.1a | |
// @delay 1 | |
// ==/UserScript== |
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 | |
if [ "$1" = "" -o "$2" = "" ]; then | |
echo "mkhardsub file.mkv out.mkv" | |
exit 1 | |
fi | |
# -ass-force-style FontName=supermarket,Default | |
mplayer -nosound -benchmark "$1" -ass -fontconfig -ass-font-scale 1.2 -vf scale=854:480 -sid 0 -vo yuv4mpeg:file=>(x264 --crf 20 --preset ultrafast --level 30 --vbv-bufsize 10000 --vbv-maxrate 16000 --threads auto --output /tmp/mkhardsub.mkv --demuxer y4m -) | |
ffmpeg -i /tmp/mkhardsub.mkv -i "$1" -vcodec copy -map 0:0 -map 1:a:0 $2 | |
#rm /tmp/mkhardsub.mkv |
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 | |
# upload.sh (goput|omploadr|imgur) file | |
if [ "x${1}" = 'x' ]; then | |
echo 'need host' | |
exit | |
fi | |
if [ "x{$2}" = "x" ]; then | |
echo 'need filename' | |
exit |
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
// ==UserScript== | |
// @name HoroHoroHoro | |
// @match *://boards.4chan.org/* | |
// @delay 1 | |
// ==/UserScript== | |
var log | |
if( !console.log ) { | |
log = unsafeWindow.console.log; |
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
#!/usr/bin/env node | |
/* | |
* Simple script for turning ASS files into regular scripts | |
* NOTE: Not 100% tested, will probably fail. | |
* Please fix me ;_; | |
*/ | |
var ap = require('argparser'). | |
files("in", "out"). | |
parse(), |
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
#!/usr/bin/env bash | |
# bash 4.1.5(1) Linux Ubuntu 10.04 Date : 2011-10-09 | |
# | |
# _______________| netspeed : check download speed via command line. | |
# | |
# Usage: netspeed [tokyo, london, usw, use, east, west, URL] | |
# ^default U.S. west coast. | |
# [ -speed_KB/sec ] | |
# ^negation activates the Mbps converter. | |
# |
OlderNewer