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
xterm*termName: xterm-256color | |
XTerm*locale: true | |
XTerm*metaSendsEscape: true | |
Xterm*saveLines: 4096 | |
xterm*faceName: Inconsolata | |
xterm*faceSize: 13 | |
! special | |
*.foreground: #d0d0d0 | |
*.background: #151515 |
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
"use strict"; | |
const input = document.getElementById('input'); | |
const chat = document.getElementById('chat'); | |
input.addEventListener('keydown', processKeydown); | |
function processKeydown(event) { | |
if( event.which === 9 && input.value.length === 0 ) { | |
event.preventDefault(); | |
const last = getLastReply(); |
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
// Evento - v1.0.0 | |
// by Erik Royall <[email protected]> (http://erikroyall.github.io) | |
// Dual licensed under MIT and GPL | |
// Array.prototype.indexOf shim | |
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf | |
if (!Array.prototype.indexOf) { | |
Array.prototype.indexOf = function (searchElement /*, fromIndex */ ) { | |
'use strict'; |
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
<!doctype html> | |
<html lang="en"> <!-- Set the language attribute to the language of your web page -->> | |
<head> | |
<title>HTML5 Stiff Bones</title> | |
<meta charset="utf8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Sets width to device default --> | |
<!-- Note: Add "maximum-scale=1.0; user-scalable=0;" attributes to viewport meta tag to prevent user scaling --> | |
<meta name="description" content=""> <!-- Your site's description --> | |
<meta http-equiv="X-UA-Compatible" content="chrome=1"> <!-- Chrome Frame: HTML5 support for IE 7,8,9 versions --> | |
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
# 0 is too far from ` ;) | |
set -g base-index 1 | |
# Automatically set window title | |
set-window-option -g automatic-rename on | |
set-option -g set-titles on | |
#set -g default-terminal screen-256color | |
set -g status-keys vi | |
set -g history-limit 10000 |