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
# vim: set ft=sh: | |
# | |
# /etc/bash.bashrc.custom | |
# | |
## BEGIN ENVIRONMENT VARS | |
# Add local ruby gems to our PATH. How to add system-wide gems? | |
export PATH=$PATH:~/.gem/ruby/1.9.1/bin | |
# proper encoding for the linux terminal (ttys) |
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
# GITLAB | |
# Maintainer: @tvn87 | |
# App Version: 2.8 | |
server.modules += ( | |
"mod_simple_vhost", | |
"mod_proxy" | |
) | |
## The document root of a virtual host is document-root = |
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
# Maintainer: Jonas Heinrich <[email protected]> | |
# Contributor: Massimiliano Torromeo <[email protected]> | |
# Contributor: Jonas Heinrich <[email protected]> | |
# Contributor: Joseph Orbegoso Pea <[email protected]> | |
pkgname=gitlab-shell | |
pkgver=1.8.0 | |
pkgrel=2 | |
pkgdesc="Self hosted Git management software. (shell daemon)" | |
arch=(any) |
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
Moved to https://github.com/trusktr/.vimrc |
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
/* Joe Pea - Assignment 5 */ | |
// FILE: linked_list.h | |
// TEMPLATE CLASS PROVIDED: | |
// sequence<Item> (part of the namespace CISP430_A3) | |
// This is a container class for a sequence of items, | |
// where each List may have a designated item called the current item). | |
// The template parameter <value_type> is the data type of the items | |
// in the List. It may be any of the C++ built-in types (int, char, etc.), | |
// or a class with a default constructor, an assignment operator, |
NewerOlder