Skip to content

Instantly share code, notes, and snippets.

/*
A small script for use with Rhetoricus.
https://rhetoricus.jit.su/
It clicks five unfollow buttons, then waits 20 seconds before clicking another five.
To use, paste it into Firefox's scratchpad whilst using Rhetoricus.
<div id="appname">
<h3 class="appname">rhetoricus <small>by @damienklinnert</small> <span class="label label-warning">stable</span></h3>
<p class="muted desc descm">See who's not following you back on app.net.<br /><br /><br /></p>
<br />
<p class="desc">
<i class="icon-chevron-right"></i> Screenshots
<div class="screenshots">
<a class="fancybox" rel="appname" href="https://my.doctape.com/s/fB5HfG/image.jpg" title="home screen">
<img src="https://my.doctape.com/s/fB5HfG/image.jpg" alt="" width="100px" height="auto" />
</a>
@damienklinnert
damienklinnert / some.sh
Created January 15, 2013 19:13 — forked from tj/some.sh
function tabname {
printf "\e]1;$1\a"
}
if [ x`type -t cd` == "xfunction" ]; then
# previously wrapped cd
eval $(type cd | grep -v 'cd is a function' | sed 's/^cd/original_cd/' | sed 's/^}/;}/' )
else
# builtin
eval "original_cd() { builtin cd \$*; }"