Skip to content

Instantly share code, notes, and snippets.

View VovanR's full-sized avatar
😺
I may be slow to respond.

Vladimir Rodkin VovanR

😺
I may be slow to respond.
View GitHub Profile
@VovanR
VovanR / gist:8822642
Created February 5, 2014 12:30
Префиксы именования картинок
# Префиксы именования картинок
bgr- Фон
shadow- Тень
icon- Иконка
btn- Кнопка
img- Картинка
pattern- Текстура
sep- Разделитель
sprite- Спрайт
@VovanR
VovanR / gist:7716e8183592bdeec2df
Last active August 29, 2015 14:03
Django AMD with Require.js

Django AMD with Require.js

App options

apps/foo/templates/foo/index.html

{% load staticfiles %}

...

{# jQuery is global for third party modules #}
@VovanR
VovanR / scrolltop-button.html
Last active August 29, 2015 14:17
ScrollTop Button with jQuery
<!-- scrolltop begin -->
<div class="scrolltop-placeholder">
<div class="scrolltop scrolltop_hidden js-scrolltop">
<span class="scrolltop__caret"></span>
<span class="scrolltop__text">Top</span>
</div>
</div>
<!-- scrolltop end -->
@VovanR
VovanR / anchor.css
Last active January 22, 2017 12:31
jQuery anchor scroll
[name^="anchor-"] {
display: block;
}
@VovanR
VovanR / .Xresources
Last active May 10, 2021 12:28 — forked from vreon/.Xresources
molokai color theme for xterm and urxvt
! Molokai theme
! See: https://gist.github.com/vreon/845878
xterm*background: #101010
xterm*foreground: #d0d0d0
xterm*cursorColor: #d0d0d0
xterm*color0: #101010
xterm*color1: #960050
xterm*color2: #66aa11
xterm*color3: #c47f2c
xterm*color4: #30309b
@VovanR
VovanR / .Xresources
Created October 29, 2015 14:17
Atom One Light color theme for xterm and urxvt
! Atom One Light theme
xterm*background: #f9f9f9
xterm*foreground: #383a42
xterm*cursorColor: #d0d0d0
xterm*color0: #000000
xterm*color1: #E45649
xterm*color2: #50A14F
xterm*color3: #986801
xterm*color4: #4078F2
xterm*color5: #A626A4
@VovanR
VovanR / jade2html.sh
Last active December 13, 2017 11:10
jade2html
#!/bin/bash
# jade2html, version 0.1
#
# Convert .jade to .html
#
# Example (convert foo.jade to foo.html):
# jade2html foo
#
# github.com/VovanR
# Author: VovanR (Vladimir Rodkin)
@VovanR
VovanR / README.md
Last active November 2, 2015 07:17
Get artists list form Yandex.Music
@VovanR
VovanR / key-codes.js
Created March 20, 2017 10:01
KEY_CODES
const KEY_CODES = {
BACKSPACE: 8,
DELETE: 46,
};
export default KEY_CODES;