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 <onny@project-insnaity.org> | |
# Contributor: Massimiliano Torromeo <massimiliano.torromeo@gmail.com> | |
# Contributor: Jonas Heinrich <onny@project-insnaity.org> | |
# Contributor: Joseph Orbegoso Pea <trusktr@gmail.com> | |
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
# 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
#!/bin/sh | |
# | |
# ~/.xinitrc | |
# | |
# Executed by startx (run your window manager from here) | |
if [ -d /etc/X11/xinit/xinitrc.d ]; then | |
for f in /etc/X11/xinit/xinitrc.d/*; do | |
[ -x "$f" ] && . "$f" | |
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
sleep 10 | |
while [ 1 ]; do | |
input swipe 700 380 1020 600 1000 | |
input tap 960 540 | |
input swipe 1220 700 900 480 1000 | |
input tap 960 540 | |
input swipe 1220 700 900 480 1000 | |
input tap 960 540 |
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
set-option -g default-shell /bin/zsh | |
set -g default-command /bin/zsh | |
set -g default-terminal "screen-256color" | |
# Choose your favorite prefix key. | |
unbind C-b | |
set -g prefix C-a | |
bind C-a send-prefix | |
#? |
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, |
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
/* | |
* Test 1 - for..in with hasOwnProperty check. | |
*/ | |
var counter = 0 | |
var i | |
var p | |
var start = performance.now() | |
for (i=0; i<1000; i+=1) { | |
for (p in window) { | |
if (window.hasOwnProperty(p)) {} |
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
let propCacheSymbol = Symbol() | |
class MultiClassPrototype { | |
constructor(propCache) { | |
this[propCacheSymbol] = propCache | |
} | |
} | |
// Just an idea: multiple inheritance... | |
// IMPORTANT NOTE: This assumes that the prototype of the classes are not |
OlderNewer