start new:
tmux
start new with session name:
tmux new -s myname
| #!/usr/bin/env python | |
| def cozimento( tempo_cozimento=0, a=0, b=0 ): | |
| output = False | |
| if tempo_cozimento and a and b: | |
| if a > tempo_cozimento < b: | |
| # Other stuff | |
| tempo_minimo = min( a, b ) | |
| tempo_maximo = max( a, b ) |
| /*! normalize.css 2012-02-07T12:37 UTC - http://github.com/necolas/normalize.css */article,aside,details,figcaption,figure,footer,header,hgroup,nav,section,summary{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none}[hidden]{display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}html,button,input,select,textarea{font-family:sans-serif}body{margin:0}a:focus{outline:thin dotted}a:hover,a:active{outline:0}h1{font-size:2em;margin:.67em 0}h2{font-size:1.5em;margin:.83em 0}h3{font-size:1.17em;margin:1em 0}h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.75em;margin:2.33em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}blockquote{margin:1em 40px}dfn{font-style:italic}mark{background:#ff0;color:#000}p,pre{margin:1em 0}pre,code,kbd,samp{font-family:monospace,serif;_font-family:'courier new',monospace;font-size:1em}pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word |
| syntax on " Syntax color | |
| set number " Numeration line by line | |
| colorscheme torte " Set a desert scheme to default | |
| " Search color | |
| hi Search cterm=none ctermbg=4 ctermfg=15 | |
| set hlsearch | |
| " History | |
| set history=700 | |
| " Autoread | |
| set autoread |
| /* | |
| smtpd.js is SMTP server written for node.js | |
| MIT License | |
| */ | |
| var tcp = require('tcp'); | |
| var sys = require('sys'); |