Skip to content

Instantly share code, notes, and snippets.

@rogercampos
rogercampos / decrypt_session_cookie.rb
Created May 18, 2015 09:57
decrypt rails cookie data
@glennr
glennr / vim-uber-glory
Created September 8, 2011 19:05
Uber-Glory for VIM
" Strip trailing whitespace
function! <SID>StripTrailingWhitespaces()
" Preparation: save last search, and cursor position.
let _s=@/
let l = line(".")
let c = col(".")
" Do the business:
%s/\s\+$//e
" Clean up: restore previous search history, and cursor position
let @/=_s