Skip to content

Instantly share code, notes, and snippets.

#!/bin/sh
workdir="$PWD"
jail=`mktemp -d`
tmpdir=${TMPDIR:-/tmp}
if ! expr "$jail" : "$tmpdir" >/dev/null
then
| echo "could not create temporary directory: '$jail'" >&2
| exit 1
fi
# click on the desktop to get menus
OnDesktop Mouse1 :HideMenus
OnDesktop Mouse2 :WorkspaceMenu
OnDesktop Mouse3 :RootMenu
# scroll on the desktop to change workspaces
OnDesktop Mouse4 :PrevWorkspace
OnDesktop Mouse5 :NextWorkspace
# scroll on the toolbar to change workspaces
We couldn’t find that file to show.
We couldn’t find that file to show.
We couldn’t find that file to show.
* checking known breakage:
cp -R "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo.git \
"$HTTPD_DOCUMENT_ROOT_PATH"/test_repo_packed.git &&
git clone $HTTPD_URL/test_repo_packed.git \
"$ROOT_PATH"/test_repo_clone_packed &&
(cd "$HTTPD_DOCUMENT_ROOT_PATH"/test_repo_packed.git &&
git --bare repack &&
git --bare prune-packed) &&
#!/bin/sh
workdir="$PWD"
jail=`mktemp -d`
tmpdir=${TMPDIR:-/tmp}
if ! expr "$jail" : "$tmpdir/.*" >/dev/null
then
| echo "could not create temporary directory: '$jail'" >&2
| exit 1
fi
#!/bin/sh
blob=0e3e20a3fd38f6f99da44483ee0bb9753f2b217;
git rev-list --objects --all | \
cut -f1 -d' ' | \
git cat-file --batch-check | \
sed -n 's/ tree .*//p' | \
while read tree; do \
git ls-tree $tree | grep $blob; \
done
sdsdf
function x = fft_dit(x)
% FFT_DIT decimation in time fast fourier transform
% x = fft_dit(x)
%
% Compute fourier transform of x by the decimation in time FFT.
%
% fft(x) = fft_dit(bitrevorder(x))
%
% See also fft_dif.
%