Skip to content

Instantly share code, notes, and snippets.

View leylaKapi's full-sized avatar
💭
I may be slow to respond.

Leyla Kapi Kurtul leylaKapi

💭
I may be slow to respond.
  • Hamburg / Germany
View GitHub Profile
@leylaKapi
leylaKapi / adding-custom-font-icons-to-sencha-touch
Created April 18, 2014 15:23
adding-custom-font-icons-to-sencha-touch
@include icon-font('SenchaConIcons', inline-font-files(
'senchacon-icons/senchacon-icons.woff', woff,
'senchacon-icons/senchacon-icons.ttf', truetype,
'senchacon-icons/senchacon-icons.svg', svg
))

Setting up and installing rbenv, ruby-build, rubies, rbenv-gemset, and bundler

This guide enables you to install (ruby-build) and use (rbenv) multiple versions of ruby, isolate project gems (gemsets and/or bundler), and automatically use appropriate combinations of rubies and gems.

TL;DR Demo

# Ensure system is in ship-shape.

aptitude install git zsh libssl-dev zlib1g-dev libreadline-dev libyaml-dev

@leylaKapi
leylaKapi / server-base.sh
Last active August 28, 2015 11:43 — forked from ismailakbudak/server-base.sh
server-base.sh
## Run this script with root user
## Fancy echo
fancy_echo() {
printf "\n%b\n" "$1"
}
fancy_echo "Updating system packages ..."
apt-get -y update
apt-get -y upgrade
@leylaKapi
leylaKapi / deploy-user-ruby-2.2.2-environment.sh
Last active August 28, 2015 11:43 — forked from ismailakbudak/deploy-user-ruby-environment.sh
deploy-user-ruby-2.2.2-environment.sh
## Run this command with deploy user
# define user home path
user_path=/home/deploy
## Fancy echo
fancy_echo() {
printf "\n%b\n" "$1"
}
fancy_echo "Installing rbenv..."
git clone git://github.com/sstephenson/rbenv.git $user_path/.rbenv
@leylaKapi
leylaKapi / deploy-user.sh
Last active August 28, 2015 11:43 — forked from ismailakbudak/deploy-user.sh
deploy-user.sh
# Deploy group
deploy_group=deploy
# Deploy user
deploy_user=deploy
# Github usernames for access with ssh to deploy user
usernames=(tayfunoziserikan ismailakbudak)
# Check user is exist
id -u $deploy_user &> /dev/null
if [ $? -ne 0 ]
@leylaKapi
leylaKapi / style.scss
Created February 24, 2016 09:38 — forked from daz/style.scss
Bootstrap styling for jQuery UI autocomplete
.ui-autocomplete {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
float: left;
display: none;
min-width: 160px;
_width: 160px;
padding: 4px 0;
@leylaKapi
leylaKapi / new.html.haml
Created February 27, 2017 10:58
Payment with a Bank
%form{:action => @teb.url, :method => 'post'}
.form-inputs
-#= f.input :pan
.form-group
%label= t('activerecord.attributes.payment.card_number')
%input{name: 'pan', type: 'number',class: ''}
.form-group
%label= t('activerecord.attributes.payment.end_year')
%input{name: 'Ecom_Payment_Card_ExpDate_Year', type: 'text'}
.form-group
@leylaKapi
leylaKapi / _navbar.haml
Created February 27, 2017 11:02
Navbar active class in rails
%nav.menu
.logo
= link_to path do
= image_tag 'logo-index.png', class: 'logo-img'
%ul.main-menu
%li.menu-item{class: "#{set_active_class 'welcome'}"}
= link_to root_path, data: {no_turbolink: false} do
%i.fa.fa-home
= t('navbar.home_page')
%li.menu-item{class: "#{set_active_class 'editor_payment'}"}
@leylaKapi
leylaKapi / commit_undo.sh
Created February 27, 2017 11:04
git undo commit revert, reset
git log
git reset --hard COMMITID
git revert COMMITID
git checkout e3a3f28
git checkout feature/something
git merge e3a3f28
@leylaKapi
leylaKapi / info.md
Created February 27, 2017 11:05
PHP re-captcha to form