Skip to content

About me

OCP DBA 11g
OCP DBA 10g
11g, 10g, 9i, 8i

OCP
Oracle Application Developer Certified Professional

Oracle E-Business Suite R12 Applications Database Administrator Certified Professional

Email: Please run this in Ruby or irb, or with a pencil 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

:set cursorline
:colorscheme default
:set hls!

"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

Leave a Reply

You must be logged in to post a comment.