This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Toggles fullscreen for current window. | |
" Works exclusively on macvim http://code.google.com/p/macvim/ | |
fu! ToggleFullscreen() | |
if &go == "amge" | |
exec 'set go='."amg" | |
let g:old_lines=&lines | |
let g:old_columns=&columns | |
set lines=9999 | |
set columns=9999 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var main = document.getElementById("mainContainer"); | |
var capital = document.getElementById("capital"); | |
var capitalPane = document.getElementById("capitalPane"); | |
var application = document.getElementById("application") | |
var removeAds = function() { | |
application.style.marginRight = "0"; | |
capital.style.display = "none"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
inoremap <buffer> {<CR> {<CR>}<Esc>O | |
vnoremap <buffer> {<CR> S{<CR>}<Esc>Pk=iB |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Add handy QR Codes to Android Market. | |
// For ~/.js | |
var url = encodeURIComponent(window.location.href); | |
var title = $("h1.doc-banner-title").text(); | |
var dimentions = "276x276"; | |
var request_url = "http://chart.apis.google.com/chart?cht=qr&chs="+ | |
dimentions+ | |
"&chl=MECARD%3AN%3A"+ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Lined paper that follows the text | |
* Support: Chrome, FF 3.6+, Saf 5.1+, Opera 11.50+, IE10 | |
*/ | |
/* Just decorative */ | |
padding: 20px; | |
/* The font. Try changing font-size and see how the lines |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" _ _ _ _ _ | |
" __ _| |__ | |__ _ __ _____ _(_) __ _| |_(_) ___ _ __ ___ | |
" / _` | '_ \| '_ \| '__/ _ \ \ / / |/ _` | __| |/ _ \| '_ \/ __| | |
" | (_| | |_) | |_) | | | __/\ V /| | (_| | |_| | (_) | | | \__ \ | |
" \__,_|_.__/|_.__/|_| \___| \_/ |_|\__,_|\__|_|\___/|_| |_|___/ | |
iabbrev lofd ಠ_ಠ | |
iabbrev mv/ http://vasiliev.me/ | |
iabbrev widht width |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function! s:swap_lines( n1, n2 ) | |
let line1 = getline( a:n1 ) | |
let line2 = getline( a:n2 ) | |
call setline( a:n1, line2 ) | |
call setline( a:n2, line1 ) | |
endfunction | |
function! s:swap_up() | |
let n = line('.') | |
if n == 1 |
Ведётся для друзей (что тебе подарить?) и для себя (куда бы потратить деньги?). Если вы хотите меня порадовать, то можете купить что-нибудь из списка ниже или просто перевести мне денег в качестве комплимента. Перед тем, как что-либо купить, сообщите мне о своём намерении, чтобы не было пересечений в сезонные подарочные периоды. Исключение составляет только список «Прочее».
- The Official CIA Manual of Trickery and Deception — $17
- The CIA Document Of Human Manipulation: Kubark Counterintelligence — $17
- [Covert Persuasion: Psychological Tactics and Tricks to Win the Game](http://www.amazon.com/Covert-Persuasion-Psychological-Tactics-Tricks/dp/0470051418/ref=
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html, body { | |
height: 100%; | |
} | |
#sidebar { | |
position: relative; | |
float: left; | |
height: 100%; | |
display: -webkit-box; | |
display: -webkit-flex; |