About
MSc. University of Oxford

Oracle Certified DBA 11g, 10g, 9i, 8i
Oracle Application Developer Certified Professional
Oracle Database SQL Certified Expert
Oracle Advanced PL/SQL Developer Certified Developer
Oracle Database 11g Performance Tuning Certified Expert
Oracle Database 10g: Real Application Clusters Administrator Certified Expert


Email: Please run this in Ruby or irb to get my email.
1794884640.to_s(36)+'@gmail.com'
# or
[116,111,109,46,108,117,111].collect{|i| i.chr}.join+'@gmail.com'
In case you like Python.
a=[[1, 't', 'z'], [4, 'o', 'h'], [9, 'm', 'l'], [5, '.', 'o'], [8, 'l', 'x'], [7, 'u', 'f'], [12, 'o', 'o']] ''.join(zip(*a)[1]) + '@gmail.com'
My .vimrc file
:colorscheme default
:set hls!
syntax enable
filetype indent on
set et
set sw=4
set smarttab
map <f2> :w\|!python % <R>
"Press F12 to save the changes
:nmap <F12> <Esc>:w<CR>
:imap <F12> <Esc>:w<CR>
"Press F9 to close vi without saving
:nmap <F9> <Esc>:q!<CR>
:imap <F9> <Esc>:q!<CR>
" Press F6 to clear the screen
:imap <F6> <Esc>gg dG<CR>
:nmap <F6> <Esc>gg dG<CR>
" Press F5 to load RSS new
:nmap <F5> <Esc>:r! /home/oracle/my_ruby/news/news.rb<CR>
:nmap <F2> <Esc>:set rl!<CR>
" press \v to edit .vimrc
:nmap <Leader>v :e $MYVIMRC<CR>
" press Ctrl-N to auto-complete a word from the dictionary
:set dictionary-=/usr/share/dict/words dictionary+=/usr/share/dict/words
:set complete-=k complete+=k
" press F3 to lookup the word under cursor
map <F3> :exe ":!dict".expand(" -d wn <cword>")<CR>
" press F4 to translate
map <F4> :exe ":!/home/oracle/my_ruby/lab/translate.rb ".expand("<cword>")<CR>
" map control-backspace to deletethe previous word
:imap <C-BS> <C-W>
" press \s normal mode to do spellcheck
" press \ss to turn off spellcheck
nmap <Leader>s :setlocal spell spelllang=en_us<CR>
nmap <Leader>ss :setlocal nospell<CR>
No comments yet