wget -O - http://comopt.ifi.uni-heidelberg.de/software/TSPLIB95/tsp/pcb442.tsp.gz | gunzip > x.tsp
-O - means: Outputfile "None", write to console (such that gunzip gets name)
| " enable pathogen package manager | |
| " filetype off | |
| " call pathogen#infect() | |
| " call pathogen#helptags() | |
| " set nocompatible | |
| " filetype off | |
| " set rtp+=~/.vim/bundle/vundle/ | |
| " call vundle#rc() |
| " Vim syntax file | |
| " Language: Python | |
| " Maintainer: Zvezdan Petkovic <[email protected]> | |
| " Last Change: 2015 Sep 15 | |
| " Credits: Neil Schemenauer <[email protected]> | |
| " Dmitry Vasiliev | |
| " | |
| " This version is a major rewrite by Zvezdan Petkovic. | |
| " | |
| " - introduced highlighting of doctests |
| " use clipboard of either osx or other unix derivatives | |
| if has("unix") | |
| let s:uname = system("uname") | |
| set clipboard=unnamedplus " for ubuntu, ... | |
| if s:uname == "Darwin\n" | |
| " Do Mac stuff here | |
| set clipboard=unnamed " need other clipboard | |
| endif | |
| endif |
| " set nocompatible " be iMproved, required | |
| filetype off " required | |
| " set the runtime path to include Vundle and initialize | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| " alternatively, pass a path where Vundle should install plugins | |
| "call vundle#begin('~/some/path/here') | |
| " let Vundle manage Vundle, required |
| set -g mouse on | |
| set -g default-terminal "screen-256color" |
| - go to http://invisible-island.net/xterm/ and download source file (e.g. http://invisible-island.net/datafiles/release/xterm.tar.gz) | |
| - according to http://web.archive.org/web/20130125000058/http://www.frexx.de/xterm-256-notes/ configure with ./configure --enable-256-color | |
| - summarized: | |
| - ./configure --enable-256-color | |
| - sudo make | |
| - check colors with http://web.archive.org/web/20130125000058/http://www.frexx.de/xterm-256-notes/data/256colors2.pl, see http://web.archive.org/web/20130125000058/http://www.frexx.de/xterm-256-notes/ |
Install nvidia driver:
add-apt-repository ppa:graphics-drivers/ppa
apt-get update
apt-get install nvidia-<version number>
Verify installation by executing nvidia-settings -q NvidiaDriverVersion.
see http://www.gnu.org/software/bash/manual/bash.html#index-bind-129 for details
get list of keys of key bindings and their function: bind -p
...