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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <project xmlns="https://maven.apache.org/POM/4.0.0" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>com.develogical</groupId> | |
| <version>1.0-SNAPSHOT</version> | |
| <artifactId>aepfacts</artifactId> | |
| <dependencies> | |
| <dependency> |
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
| \documentclass{article} | |
| \begin{document} | |
| \include{section1} | |
| \end{document} |
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
| " 2a. scan current file for %! TEX root = foo.tex | |
| let texfile = matchlist(getline(1), '%!TEX root = \(.*\)')[1] | |
| if texfile != "" | |
| return texfile | |
| endif |
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
| include $(GOROOT)/src/Make.inc | |
| TARG=foo | |
| GOFILES=\ | |
| foo.go \ | |
| include $(GOROOT)/src/Make.pkg |
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 | |
| set -e | |
| die() { | |
| echo "$1"; | |
| exit 1; | |
| } | |
| # Fetch and install LuaJIT/LuaRocks into the local directory |
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
| import atom | |
| import re | |
| import gdata.contacts.data | |
| import gdata.contacts.client | |
| import gdata.gauth | |
| # This script updates all contacts with email addresses @comlab.ox.ac.uk to | |
| # @cs.ox.ac.uk to go along with the renaming of our department. | |
| sourcename = "some-name-for-this-script-v1" |
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 | |
| set -e | |
| die() { | |
| echo "$1"; | |
| exit 1; | |
| } | |
| # Fetch and install Lua/LuaRocks/Kepler into the local directory |
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
| # Installs Mongrel/ZeroMQ/Sqlite into a sandboxed environment | |
| set -o errexit | |
| set -o nounset | |
| PWD=`pwd` | |
| SANDBOX="$PWD/sandbox" | |
| mkdir -p "$SANDBOX/src" | |
| pushd "$SANDBOX/src" |
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 | |
| set -e | |
| die() { | |
| echo "$1"; | |
| exit 1; | |
| } | |
| # Fetch and install Lua/LuaRocks into the local directory |
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
| require 'formula' | |
| class Go <Formula | |
| head 'https://go.googlecode.com/hg/', :revision => 'release' | |
| homepage 'http://golang.org' | |
| aka 'google-go' | |
| skip_clean 'bin' |