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
Tiny_RayTracing.ps by Takashi Hayakawa ([email protected]) | |
is a ray tracing program in only 762 bytes (plus header)! | |
BEST OBFUSCATED ARTWORK -- 1st prize | |
-- The 2nd most coveted prize. These combine obfuscation with great artwork. | |
Don't send this one to a printer. It will take too long. Display it | |
on the screen and be ready to wait a while. The picture is well worth it. | |
If you want to print the picture much faster, use Tiny_RayTracing_Fast.ps instead. |
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 | |
# Description: show dependency tree | |
# Author: damphat | |
if [ $# != 1 ]; then | |
echo 'Usage: apt-rdepends-tree <package>' | |
echo 'Required packages: apt-rdepends' | |
exit 1 | |
fi |