Seja bem-vindo ao website do Estanislau


Herdeiro a caminho....

by Alexandre Estanislau, Saturday 03 July 2010 - 15:42:39   email to someone  printer friendly 
1 ano e alguns meses se passaram do casamento da Marisa e eu, e com muita felicidade temos a notícia de que nosso filhote está a caminho !!!

Estamos na sexta semana de gestação, o feto está medindo 6,4mm e o coraçãozinho batendo a milhão :-)

Meu .vimrc

by Alexandre Estanislau, Tuesday 08 June 2010 - 16:18:22   email to someone  printer friendly 

" .vimrc
" Written by Matt Roper <matt@mattrope.com>"
" Feel free to use any or all of this file in your own vimrc file.


" Don't use vi compatibility; I want all the new features in Vim
set nocompatible

set nobackup
set mouse-=a
set tags=tags


" Version 6.0-specific stuff
if version >= 600
    syntax enable
    filetype on
    filetype plugin on
    filetype indent on
else
    syntax on
endif

" Wrap text at n chars with a line break
set textwidth=80
set wrap
set lbr
"" To keep console portability I used to break my lines around 76~78 char
"" I'm trying this to make Vim more like other editors. Out of the box when  you write
"" a line two long for the screen it continues on the line below and is numbered as one
"" line. With these settings it breaks them like most other editors at my specified
"" 80 chars. Not sure if I will keep it but worth a test. -> Prolly good for Vim newbies


"set prefered line enders
set ffs=unix,dos,mac

"""""""""""""""""""""""""""""""
"User Interface Options
"""""""""""""""""""""""""""""""
"Always show the status bar with file name e.t.c.
set laststatus=2
" 0=never, 1=only if more then one file/buffer/tab
"Show %of file remaining in statusbar
" and how far into the file overall I am.


" Low priority filename suffixes for filename completion {{{
set suffixes-=.h        " Don't give .h low priority
set suffixes+=.aux
set suffixes+=.log
set wildignore+=*.dvi
set suffixes+=.bak
set suffixes+=~
set suffixes+=.swp
set suffixes+=.o
set suffixes+=.class
" }}}

set showfulltag         " Get function usage help automatically
set showcmd             " Show current vim command in status bar
set showmatch           " Show matching parentheses/brackets
set showmode            " Show current vim mode

"set background=dark

set bs=2                " allow backspacing over everything in insert mode
set viminfo='20,\"50    " read/write a .viminfo file, don't store more
                        " than 50 lines of registers
set history=50          " keep 50 lines of command line history
set ruler               " show the cursor position all the time
set nohlsearch          " don't highlight search matches
set selection=exclusive " don't include character under cursor in selection
set incsearch           " incremental (emacs-style) search
set vb t_vb=            " kill the beeps! (visible bell)
set wildmenu            " use a scrollable menu for filename completions
"set ignorecase          " case-insensitive searching

" Indentation / tab replacement stuff
set shiftwidth=2        " > and < move block by 4 spaces in visual mode
set sts=2
set et                  " expand tabs to spaces
set autoindent              " always set autoindenting on

" Move text, but keep highlight
vnoremap > ><CR>gv
vnoremap < <<CR>gv

colorscheme koehler
"colorscheme darkblue

" Key mappings {{{

" Allow the . to execute once for each line in visual selection
vnoremap . :normal .<CR>" Make ' function behave like ` usually does and then change ` to replay
" recorded macro a (as if @a was typed).  In visual mode, ` (which now acts
" like @a) should function on all selected lines.
noremap ' `
nnoremap ` @a
vnoremap ` :normal @a<CR>" Make tab perform keyword/tag completion if we're not following whitespace
inoremap <tab> <c-r>=InsertTabWrapper()<cr>" Make F7 spellcheck the buffer
noremap <F7> <Esc>:call IspellCheck()<CR><Esc>" Programming Keys:
"   F9  = Make
"   F10 = Next Error
"   F11 = Prev Error
inoremap <F9> <Esc>:make<CR>inoremap <F10> <Esc>:cnext<CR>inoremap <F11> <Esc>:cprev<CR>noremap <F9> <Esc>:make<CR>noremap <F10> <Esc>:cnext<CR>noremap <F11> <Esc>:cprev<CR>" Buffer Switching:
"   F2 = next buffer
"   F3 = previous buffer
"   F4 = kill buffer
inoremap <F2> <Esc>:bn<CR>inoremap <F3> <Esc>:bp<CR>inoremap <F4> <Esc>:bd<CR>noremap <F2> <Esc>:bn<CR>noremap <F3> <Esc>:bp<CR>noremap <F4> <Esc>:bd<CR>" Make p in Visual mode replace the selected text with the "" register.
vnoremap p <Esc>:let current_reg = @"<CR>gvdi<C-R>=current_reg<CR><Esc>" Key mappings }}}

" Autocommands {{{
if has("autocmd")

    " When vim is used in a console window, set the title bar to the
    " name of the buffer being editted.
    if !has("gui_running")
        auto BufEnter * let &titlestring="VIM - ".expand("%:p")
    endif

    " In text and LaTeX files, always limit the width of text to 76
    " characters.  Also perform logical wrapping/indenting.
    autocmd BufRead *.txt set tw=76 formatoptions=tcroqn2l
    autocmd BufRead *.tex set tw=76

    " Programming settings {{{
    augroup prog
        au!
        au BufRead *.c,*.cc,*.cpp,*.h,*.java set formatoptions=croql cindent nowrap nofoldenable
        au BufEnter *.java      map <C-Return> :w\|:!javac %<CR>        au BufEnter *.c         map <C-Return> :w\|:!gcc %<CR>        au BufEnter *.cc,*.cpp  map <C-Return> :w\|:!g++ %<CR>        au BufLeave *.java,*.c,*.cc unmap <C-Return>        " Don't expand tabs to spaces in Makefiles
        au BufEnter  [Mm]akefile*  set noet
        au BufLeave  [Mm]akefile*  set et

        " Set up folding for python
        au FileType python set nofoldenable foldmethod=indent
    augroup END
    " }}}


    " Reread configuration of Vim if .vimrc is saved {{{
    augroup VimConfig
        au!
        autocmd BufWritePost ~/.vimrc       so ~/.vimrc
        autocmd BufWritePost vimrc          so ~/.vimrc
    augroup END
    " }}}


"    " C programming auto commands {{{
"    augroup cprog
"        au!
"
"        " When starting to edit a file:
"        "   For C and C++ files set formatting of comments and set C-indenting on.
"        "   For other files switch it off.
"        "   Don't change the order, it's important that the line with * comes first.
"        "autocmd FileType *      set formatoptions=tcql nocindent comments&
"        "autocmd FileType c,cpp  set formatoptions=croql comments=sr:/*,mb:*,el:*/,://
"
"        " Automatic "folding" in C code.  This is cool.
"        "if version >= 600
"        "    "au FileType c set foldenable foldmethod=indent
"        "    au FileType c,cpp set nofoldenable foldmethod=syntax
"        "    au FileType c,cpp syn region Block start="{" end="}" transparent fold
"        "    "au FileType c syn region Comment start="/\*" end="\*/" fold
"        "endif
"    augroup END
"    " }}}

endif " has("autocmd")
" }}}

" Functions {{{

" IspellCheck() {{{
function! IspellCheck()
    let l:tmpfile = tempname()

    execute "normal:w!" . l:tmpfile . "\<CR>"
    if has("gui_running")
        execute "normal:!xterm -e ispell " . l:tmpfile . "\<CR>"
    else
        execute "normal:! ispell " . l:tmpfile . "\<CR>"
    endif
    execute "normal:%d\<CR>"
    execute "normal:r " . l:tmpfile . "\<CR>"
    execute "normal:1d\<CR>"
endfunction
" IspellCheck }}}

" InsertTabWrapper() {{{
" Tab completion of tags/keywords if not at the beginning of the
" line.  Very slick.
function! InsertTabWrapper()
    let col = col('.') - 1
    if !col || getline('.')[col - 1] !~ '\k'
        return "\<tab>"
    else
        return "\<c-p>"
    endif
endfunction
" InsertTabWrapper() }}}

" Functions }}}

" Settings for specific syntax files {{{
let c_gnu=1
let c_comment_strings=1
let c_space_errors=1

"let perl_fold=1          " turn on perl folding capabilities
" }}}

Vagas para Desenvolvedor Linux em Gravataí-RS

by Alexandre Estanislau, Friday 28 May 2010 - 16:59:17   email to someone  printer friendly 
Pessoal, abaixo a descrição de vaga que temos na equipe em que trabalho. Foi por este anúncio que cheguei nela.

Se quiserem tirar alguma dúvida, podem entrar em contato.

A Catho RS informa a disponibilidade de 3 vagas para Desenvolvedor Linux (linguagem C, compilador GCC), para trabalhar com desenvolvimento de drivers, bibliotecas de interface com aplicações e homologação em clientes fora do estado.

Benefícios: Assistência Médica / Medicina em grupo, Assistência Odontológica, Estacionamento, Restaurante na empresa, Transporte fornecido pela empresa.
Regime de contratação: CLT (Efetivo)
Horário: Horário comercial.

Faixa Salarial: De R$ 4.001,00 a R$ 5.000,00
Idiomas: Inglês (Intermediário)

Contato: renata.moutinho@cathoconsultoria.com.br

Learn Linux, 101: Debian package management

by Alexandre Estanislau, Friday 14 May 2010 - 18:27:50   email to someone  printer friendly 
Learn how to install, upgrade, and manage packages on your Linux® system. This article focuses on the Advanced Packaging Tool, or APT, which is the package management system used by Debian and distributions derived from Debian, such as Ubuntu. You can use the material in this article to study for the LPI 101 exam for Linux system administrator certification, or just to explore the best ways to add new software and keep your system current.

Read article here

Learn Linux, 101: RPM and YUM package management

by Alexandre Estanislau, Friday 14 May 2010 - 18:25:13   email to someone  printer friendly 
Learn how to install, upgrade and manage packages on your Linux® system. This article focuses on the Red Hat Package Manager (RPM) developed by Red Hat, as well as the Yellowdog Updater Modified (YUM) originally developed to manage Red Hat Linux systems at Duke University's Physics department. You can use the material in this article to study for the LPI 101 exam for Linux system administrator certification, or just to explore the best ways to add new software and keep your system current.

Read the article here
Go to page       >>  

News Categories

http://www.dreamhost.com/r.cgi?180483hosting.html|STANLEY_INSANE

Main Menu

    Welcome

    Username:

    Password:


    Remember me

    [ ]
    [ ]

    July 2010

    No events for this month.

    SMTWTFS




    123
    45678910
    11121314151617
    18192021222324
    25262728293031

    RSS Feeds

    Our news can be syndicated by using these rss feeds.
    rss1.0
    rss2.0
    rdf

    Powered by

    e107
    PHP
    MySQL