Skip to content

Instantly share code, notes, and snippets.

" calculadora científica no vim
" url: http://vivaotux.blogspot.com/2009/03/calculadora-cientifica-com-o-vim.html
" se tem suporte a python no vim
:command! -nargs=+ Calc :py print <args>
:py from math import *
" se você não tem suporte a python no vim mas tem o python instalado faça:
command! -nargs=+ Calc :!python -c "from math import *; print <args>"
" para ler mais dicas como esta: http://code.google.com/p/vimbook
@estefanionsantos
estefanionsantos / reset.css
Last active August 29, 2015 14:06
reset css
@charset "utf-8";
/**
Reset v1.2 | (c) 2010 - 2014
Estefanio NS <[email protected]>
http://estefanions.github.io/resetcss/
*/
*{text-align: left;font-weight: normal;font-size: 100%;
vertical-align: baseline;list-style: none;text-decoration: none;
outline:0;margin:0;padding:0;border:0 none;font-style: normal;
@charset "utf-8";
/**
Reset v1.2 | (c) 2010 - 2014
Estefanio NS <estefanions AT gmail DOT com>
http://estefanions.github.io/resetcss/
*/
*{text-align:left;font-weight:400;font-size:100%;list-style:none;text-decoration:none;outline:0;margin:0;padding:0;border:0;font-style:normal;vertical-align:top;background:0 0}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}article,aside,details,figcaption,figure,footer,header,hgroup,hr,main,menu,nav,section,summary{display:block}audio,canvas,video{display:inline-block}hr{height:1px;border-top:1px solid;margin:1em 0}input,select,textarea{vertical-align:middle}button,input{line-height:normal}button,html input[type=button],input[type=reset],input[type=submit]{cursor:pointer;-webkit-appearance:button}button,input[type=button],input[type=checkbox],input[type=radio],input[type=reset],
<div class="grid g12 bg">12</div>
<div class="row">
<div class="grid g1 bg">1</div>
<div class="grid g1 bg">1</div>
<div class="grid g1 bg">1</div>
<div class="grid g1 bg">1</div>
<div class="grid g1 bg">1</div>
<div class="grid g1 bg">1</div>
<div class="grid g1 bg">1</div>
<div class="grid g1 bg">1</div>
<table class="tb_border expand">
<thead>
<tr>
<th>#</th>
<th>Name</th>
<th>Occupation</th>
<th>User</th>
</tr>
</thead>
<tbody>
<table class="tab_hover"> ... </table>
<table class="tb_striped"> ... </table>
<div class="row">
<div class="grid g8 mobile12">
<div class="row">
<div class="grid g6 phone12">
<label for="first-name">First Name:</label>
<input id="first-name" type="text" />
</div>
<div class="grid g6 phone12">
<label for="last-name">Last Name:</label>
<input id="last-name" type="text" />
@estefanionsantos
estefanionsantos / initialtrace_image.html
Last active March 8, 2017 20:21
initialtrace_image.html
<img src="image.png" class="bo_radius" />
<img src="image.png" class="bo_polaroid_radius" />
<img src="image.png" class="bo_rounded" />
<img src="image.png" class="bo_polaroid_rounded" />
@estefanionsantos
estefanionsantos / initialtrace_buttons_default.html
Last active March 8, 2017 18:30
initialtrace_buttons_default.html
<button class="bt bt_primary">primary</button>
<button class="bt bt_secondary">secondary</button>
<button class="bt bt_dark">dark</button>
<button class="bt bt_light">light</button>
<button class="bt bt_standard">standard</button>