ark_adius
About myself
Most of my time are consumed by studies and jod. In my time off I try to keep myself close to my girlfriend, Gosia and also I do some sport or just wasting it with my buddies.
Right now I am studing IT on Warsaw Uniwersity of Technology, I am working in TouK, currently I make there things connected with SOA i.e. Apache ServiceMix, Apache ODE, Intalio, BPEL, but earlier … too many things to write about it here ;)
Sport
- I realy like skiing on board
(Sabinov - 2008)
(Kasprowy - 2008)
Unfortunately I do not live in Alps, so casual:
- Bike (Nothing cans better make my day than start it with some riding, I think then about poor user in traffics and in overcrowded public transport)
- Gym, because “What does not kill me, makes me stronger” (F. Nietzsche)
- Swiming
- Football (or Soccer), Foosball and Footsal ;)
Music
Main aims
MAKE WORLD UNDER ME! Howevrer, following the sentence: “He who would learn to fly one day must first learn to stand and walk and run and climb and dance; one cannot fly into flying” (F. Nietzsche). For now I want:
- Gather resources for living at decent level in my own cosy flat
- Besides my work, I would love to develop myself and take part in some interesting projects not only for money
- Se at least half of world
- Live and and look like a twenty forever
Projects
You can see brief ot them at Home Page and If you click on any of them you will see more detailed description
Computer grafics:
- balls (C++)
Internet programming:
- piex9 (java)
Compilers:
- YAIP (C++)
- Network Designer (java)
Java:
Beside that I did many tiny and nobody useful projects in C or Pascal. Below I put some of them:
Others
.vimrc
" Colors, indent width
colorscheme desert
set tabstop=4
set shiftwidth=4
set expandtab
" Will disable compatibilyt with vi
set nocompatible
" Convenient indention
set autoindent
set smartindent
" Switching paste mode
set pastetoggle=<F6>
" Do not show all results of searching
set nohls
" incrementing search
set incsearch
" Showing tabs
set listchars=tab:>-
set list
" Remember cursor position after close vim
autocmd BufReadPost *
\ if line("'\"") > 0 && line("'\"") <= line("$") |
\ exe "normal g`\"" |
\ endif
" Fancy function which cans completion functions by typing <Tab>
function! InsertTabWrapper(direction)
let col = col('.') - 1
if !col || getline('.')[col - 1] !~ '\k'
return "\<tab>"
elseif "backward" == a:direction
return "\<c-p>"
else
return "\<c-n>"
endif
endfunction
inoremap <Tab> <C-R>=InsertTabWrapper("backward")<cr>
inoremap <S-Tab> <C-R>=InsertTabWrapper("forward")<cr>
Most of that is taken from here



