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 m 0 0 | |
set m 0/0 | |
#setxkbmap -model pc104 -layout us,us -variant ,dvp -option grp:alt_shift_toggle | |
#setxkbmap -model pc104 -layout ro,us -variant cedilla,dvp -option grp:alt_shift_toggle | |
setxkbmap -model pc104 -layout ro | |
/usr/bin/setxkbmap -option "ctrl:nocaps" |
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 completeopt=menu,menuone | |
filetype on | |
filetype plugin on | |
filetype plugin indent on | |
" Fix for # deindent | |
":inoremap # X^H#" | |
inoremap # X# |
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
from subprocess import call | |
from setuptools import setup, find_packages | |
from setuptools.command.install import install | |
from setuptools.command.develop import develop | |
from setuptools.command.sdist import sdist | |
import os | |
version = '1.0' | |
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
[Configuration] | |
ColorCursor=#d0d0d0 | |
ColorForeground=#d0d0d0 | |
ColorBackground=#151515 | |
ColorPalette=#151515;#ac4142;#90a959;#f4bf75;#6a9fb5;#aa759f;#75b5aa;#d0d0d0;#505050;#ac4142;#90a959;#f4bf75;#6a9fb5;#aa759f;#75b5aa;#f5f5f5 | |
FontName=Ubuntu Mono 12 | |
MiscAlwaysShowTabs=FALSE | |
MiscBell=FALSE | |
MiscBordersDefault=TRUE | |
MiscCursorBlinks=FALSE |
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
global | |
maxconn 256 | |
defaults | |
mode http | |
timeout check 3000ms | |
timeout connect 5000ms | |
timeout client 50000ms | |
timeout server 50000ms |
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 | |
lessc -x prefixed-bootstrap.less | sed -e 's/\(.\+\).bootstrap \(.\+\)/.bootstrap \1\2/g' > bootstrap.min.css |
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 random | |
class Markov(object): | |
def __init__(self, open_file): | |
self.cache = {} | |
self.open_file = open_file | |
self.words = self.file_to_words() | |
self.word_size = len(self.words) | |
self.database() |
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
from setuptools import setup, find_packages | |
from setuptools.extension import Extension | |
from Cython.Build import cythonize | |
extensions = [ | |
Extension("my.package.foo.bar.module", ["my/package/foo/bar/module.pyx"]), | |
] | |
setup(name='my.package', ext_modules=cythonize(extensions)) |
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*faceName: Consolas | |
!xterm*faceSize: 12 | |
XTerm*faceName: xft:Consolas:style=Regular:size=13 | |
XTerm*vt100*geometry: 80x60 | |
XTerm*saveLines: 16384 | |
XTerm*loginShell: true | |
XTerm*charClass: 33:48,35:48,37:48,43:48,45-47:48,64:48,95:48,126:48 | |
XTerm*termName: xterm-color | |
XTerm*eightBitInput: false | |
XTerm*metaSendsEscape: true |