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
.tiles article:nth-child(1) > .image:before, | |
.tiles article:nth-child(7n) > .image:before { | |
background-color: #7ecaf6; | |
} | |
.tiles article:nth-child(2) > .image:before, | |
.tiles article:nth-child(8n) > .image:before { | |
background-color: #f2849e; | |
} |
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
curl -v -XPOST -d @w1.json -H 'Content-Type: application/json' -H 'Accept: application/json' -H 'Authorization: Bearer t-o-k-e-n' https://api.w1.ru/KiiioskApi/merchant | |
{ | |
"PromoCode":"WLnAtQE", | |
"UserTypeId":"Personal", | |
"Url":"http://demo.kiiiosk.ru/", | |
"ResultUrl": "http://api.kiiiosk.ru/v1/callbacks/w1/payments/2/notify", | |
"Category": "WebDesign", | |
"CurrencyId": 643, | |
"Title": "demo.kiiiosk.ru", |
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
{ | |
"bold_folder_labels": true, | |
"caret_style": "phase", | |
"color_scheme": "Packages/Color Schemes by carlcalderon/Calydon/Calydon light.tmTheme", | |
"folder_exclude_patterns": | |
[ | |
"coverage", | |
"node_modules", | |
"vendor", | |
".git", |
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
.directive "infinitescroll", -> | |
scope: | |
value: '=ngModel' | |
link: (scope, element, attrs) -> | |
element.append scope.value | |
# template | |
%infinitescroll{'ng-model' => 'data'} | |
# controller |
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
mac: | |
export PATH=$HOME/.rbenv/bin:$PATH | |
eval "$(rbenv init -)" | |
alias bmm="bundle exec middleman" | |
export ANT_HOME=/usr/local/Cellar/ant/1.9.3/libexec | |
export ANDROID_HOME=/Users/heretge/adt-bundle-mac-x86_64-20131030/sdk | |
export SDK_ROOT=$ANDROID_HOME | |
export JAVA_HOME=/Library/Java/Home | |
export PATH=$PATH:$JAVA_HOME:$ANT_HOME:$ANDROID_HOME/platform-tools:$ANDROID_HOME/tools |
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
$('#line1, #line2').each(function(){ | |
var x = $(this).find('div:first').width(90); | |
x.html(x.attr('h')); | |
}); |