View source.php
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
<?php | |
if (isset($_GET['viewsource'])) { die(highlight_file(__FILE__, 1)); } | |
// Put the rest of your PHP code here | |
// Somewhere in the code add the following HTML line (or something similar to it). | |
<a rel="nofollow" href="?viewsource">View Source</a> |
View nofile.php
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
<?php | |
header('Last-Modified: '.gmdate('D, d M Y H:i:s', time()).' GMT'); | |
header('Expires: '.gmdate('D, d M Y H:i:s', 0).' GMT'); | |
header('Cache-Control: private, no-store, no-cache, must-revalidate, post-check=0, pre-check=0, FALSE'); | |
header('Pragma: no-cache'); | |
header('Content-Disposition: attachment; filename="test.file"'); | |
header('Content-type: application/octet-stream'); | |
header('Content-Length: 134217728'); | |
flush(); |
View hideemail.sh
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 [ $# -ne 1 ] | |
then | |
echo | |
echo "usage: $0 <email@address>" | |
echo | |
echo | |
exit 1 | |
fi |
View printgraph.sh
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 | |
COLS=`tput cols` | |
ROWS=$[`tput lines`-1] | |
function printgraph() { | |
if [ $TYPE == hex ]; then | |
COUNT1=$[COLS/4] | |
COUNT2=$[ROWS/2] | |
else |
View fix-mouse.sh
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 | |
# must be run via sudo | |
cd /sys/bus/pci/drivers/ohci-pci | |
for i in ????:??:??.?;do echo -n "$i" >unbind;echo -n "$i" >bind;done |
View birthday.sh
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 | |
echo Happy Birthday!! | |
echo Have some perl: | |
{ error=$(php ~/scripts/scriptgen.php Happy Birthday $@!! 2>&1 1>&$out); } {out}>&1 | |
echo https://linuxcoffee.com/perl/ | |
if [ -n "$error" ]; then | |
echo $error | |
fi |
View eshell.sh
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 | |
########################################################################### | |
### Creates a BusyBox emergency shell in RAM | |
### | |
### Script by Jack Zielke <eshell@linuxcoffee.com> | |
### http://linuxcoffee.com/eshell | |
### | |
### BusyBox is maintained by Denys Vlasenko, and licensed under the GNU | |
### GENERAL PUBLIC LICENSE version 2. |
View inches.sh
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 | |
scale=3 | |
if [ $# -lt 1 ]; then | |
fract=64 | |
else | |
fract=$1 | |
fi |
View script.sh
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/dash | |
# Is this script already running? | |
pidof -x $(basename $0) -o $$ >/dev/null && exit |
View chimes.zip
This file has been truncated, but you can view the full file.
NewerOlder