This file contains hidden or 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
(package-initialize) | |
(defun top-of-buffer () | |
"'beginning-of-buffer' sets a mark. This doesn't, just like vi's 'gg' command." | |
(interactive) | |
(goto-char (point-min))) | |
(defun bottom-of-buffer () | |
"like 'top-of-buffer' but takes you to the bottom" | |
(interactive) |
This file contains hidden or 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 | |
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
function trampcp { | |
src="$1" | |
dest="$2" | |
emacs -q \ | |
--batch \ | |
--eval "(copy-file \"$src\" \"$dest\" t)" |
This file contains hidden or 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 | |
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
function trampcp { | |
src="$1" | |
dest="$2" | |
emacs -q \ | |
--batch \ | |
--eval "(copy-file \"$src\" \"$dest\" t)" |
This file contains hidden or 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/sh | |
set -e | |
cd "$(git rev-parse --show-cdup)" | |
# Find all the objects that are in packs: | |
if [ "$(ls -A .git/objects/pack)" ] | |
then |
This file contains hidden or 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
We the People of the United States, in Order to form a more perfect Union, | |
establish Justice, insure domestic Tranquility, provide for the common | |
defence, promote the general Welfare, and secure the Blessings of Liberty to | |
ourselves and our Posterity, do ordain and establish this Constitution for the | |
United States of America. | |
Article 1. | |
Section 1 | |
All legislative Powers herein granted shall be vested in a Congress of the |