Dark GTK2 theme

I found cool dark theme for GTK2. Pidgin looks cool.
http://www.gnome-look.org/content/show.php/Eidolon?content=91361

my urxvt configuration

My conf for urxvt

URxvt*geometry:          80x25
URxvt*background: #000000
URxvt*foreground: #ffffff
URxvt*inheritPixmap: false
URxvt*reverseVideo: false
URxvt*tintColor: #dfdfdf
!URxvt*font: -lfp-terminus-medium-r-normal-*-*-90-*-*-c-*-iso8859-5
URxvt*font: -*-terminus-medium-*-*-*-14-*-*-*-*-*-*-*
!URxvt*font xft:Monospace:pixelsize=21
!URxvt*font: xft:matto:antialias=true:size=8
!URxvt*font: xft:Bitstream Vera Sans mono:size=9
URxvt*scrollBar: true
URxvt*scrollBar_floating: true
URxvt*scrollBar_right: false
URxvt*scrollColor: #000000
URxvt*saveLines: 5500
!URxvt*termName: URxvt
URxvt*cursorColor: #d8d8d8
URxvt*colorBD: lightyellow
URxvt*colorUL: yellow

!colors
!black
URxvt*color0: #676767
URxvt*color8: #757575
!red
URxvt*color1: #EA6868
URxvt*color9: #FF7272
!green
URxvt*color2: #ABCB8D
URxvt*color10: #AFD78A
!yellow
URxvt*color3: #E8AE5B
URxvt*color11: #FFA75D
!blue
URxvt*color4: #71C5F4
URxvt*color12: #67CDE9
!magenta
URxvt*color5: #E2BAF1
URxvt*color13: #ECAEE9
!cyan
URxvt*color6: #21F1EA
URxvt*color14: #36FFFC
!white
URxvt*color7: #F1F1F1
URxvt*color15: #FFFFFF

offsets vs. pages

Last days I work a lot with javascript grids for jQuery and wonder:
1) why developers of these grids use pages in requests for data from server. When using offset gives more clean code on server side.
2) of using page number from response. So server has to send that what it receives. It's weird and useless.

So I rewrite some code in grid.

Query restriction in Goolge App Engine

Inequality Filters Are Allowed On One Property Only
I have an idea of web site that'll use plane with coordinates. So restriction above don't allow to query with two different param "between" conditions.

It's so pity. :(