Have a look at this:
It's from a genome sequencing project from one of my CS classes. Do you notice anything odd about this database---perhaps a bit WTF-ish?
Have a look at this:
It's from a genome sequencing project from one of my CS classes. Do you notice anything odd about this database---perhaps a bit WTF-ish?
I am curious by nature, and I'm always looking to see whether there's something better over the horizon. I installed Ubuntu 8.04 Hardy Heron the day after it was released, and I was impressed. But I knew there were other fine Linux distros out there, like Fedora 9, OpenSUSE, Arch, and others.
Recently I've tried a few of these on my laptop, but I invariably return to Ubuntu Hardy Heron.
Why? Here:
Those are the four main reasons I like Ubuntu. At this point in the world of Linux distros, if Linux is ever to make any substantial gains into the desktop market, it will be Ubuntu that does it.
C-x-right
or C-x-left
to switch between buffers. Vim has the commands :bnext
and :bprevious
which do the same thing, which can be shortened to :bn
and :bp
. But with these lines in your .vimrc file:
map <C-Tab> :bn <CR>
map <C-S-Tab> :bp <CR>
ctrl+tab
and ctrl+shift+tab
to switch between buffers. Nifty, eh?
map <silent> <C-Tab> :bn! <CR>
map <silent> <C-S-Tab> :bp! <CR>