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 python | |
import sys | |
import os | |
import string | |
MERGE = "emacs" | |
QFLAG = "-Q" | |
EVAL = "--eval" | |
EVALFUNC = ["ediff-merge-files-with-ancestor"] |
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
(ediff-merge-files-with-ancestor file-a file-b file-ancestor &optional | |
startup-hooks merge-buffer-file) |
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
# Client maintainer: [email protected] | |
set(CTEST_SITE "rge.umiacs.umd.edu") | |
set(CTEST_BUILD_NAME "Linux64-Intel") | |
set(CTEST_BUILD_CONFIGURATION Debug) | |
set(CTEST_CMAKE_GENERATOR "Unix Makefiles") | |
set(dashboard_model Nightly) | |
# dashboard_root_name = Change name of "My Tests" directory | |
# dashboard_source_name = Name of source directory (CMake) | |
# dashboard_binary_name = Name of binary directory (CMake-build) |
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/bash | |
find . -type f -a \( -name '*.tex' -o -name '*.cmake' -o -name '*.bib' -o -name '*.md' -o -name '*.txt' \) -print -exec ~/clean-endings.sh {} ~/cleaning-log.txt \; |
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/bash | |
((sed -i .back 's/ *$//' $1 && rm $1.back) || true) | tee -a $2 |
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/bash | |
sed -e 's/[ ]*$//' -e :a -e '/^\n*$/{$d;N;ba' -e '}' $1 |
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
$ source .bash_profile | |
-bash: declare: -A: invalid option | |
declare: usage: declare [-afFirtx] [-p] [name[=value] ...] | |
-bash: complete: -D: invalid option | |
complete: usage: complete [-abcdefgjksuv] [-pr] [-o option] [-A action] [-G globpat] [-W wordlist] [-P prefix] [-S suffix] [-X filterpat] [-F function] [-C command] [name ...] |
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
install: | |
- sudo apt-get install texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended | |
- sudo apt-get install chktex | |
script: | |
- make | |
- chktex -W # Print version information. | |
- chktex -q -n 6 *.tex chapters.*.tex 2>/dev/null | tee lint.out | |
# If lint output is non-empty report an error. | |
- test ! -s lint.out |
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/bash | |
# (Replace `$HOME/code` with the location of your projects) | |
for f in $(find /Users/ibeekman -name node_modules -prune -o -follow -maxdepth 3 -name .travis.yml -print 2>/dev/null); do | |
(builtin cd "$(dirname $f)" && /usr/local/bin/update_travis_ci_status) | |
done |
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/local/bin/bash | |
if [ -e ".travis.yml" ]; then | |
if type ruby > /dev/null 2>&1 && type travis > /dev/null 2>&1; then | |
stat_file=".travis_status~" | |
status=$(travis branches 2>&1) | |
echo "$status" > $stat_file | |
# Ignore status file from git repo | |
if ! ([ -e .git/info/exclude ] && grep -q "$stat_file" .git/info/exclude); then | |
[ -d .git/info ] && echo "$stat_file" >> .git/info/exclude | |
fi |
OlderNewer