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 / app.js
Created February 27, 2017 11:09
footable.js empty error
$('.table').footable({
"toggleColumn": "last",
"expandFirst": true,
"empty": "no results",
"columns": [
{ "name": "id", "title": "ID", "breakpoints": "xs" },
{ "name": "firstName", "title": "First Name" },
{ "name": "lastName", "title": "Last Name" },
{ "name": "jobTitle", "title": "Job Title", "breakpoints": "xs" },
{ "name": "started", "title": "Started On", "breakpoints": "xs sm" },
@leylaKapi
leylaKapi / remote_zip_tar.sh
Created February 27, 2017 11:09
Remote zip or tar
//In remote
➜ ~ tar czvf compressed.tar.gz directory1
https://www.digitalocean.com/community/tutorials/an-introduction-to-file-compression-tools-on-linux-servers
//In Locale
➜ ~ scp -r username@ip:compressed.tar.gz /Users/johndoe/Desktop/backup.tar.gz
@leylaKapi
leylaKapi / info.sh
Created February 27, 2017 11:07
ERROR 1044 (42000): Access denied for user ''@'localhost' to database 'db'
mysql -u root -p
// No, you should run mysql -u root -p in bash, not at the MySQL command-line. If you are in mysql, you can exit by typing exit.
@leylaKapi
leylaKapi / info.md
Created February 27, 2017 11:05
PHP re-captcha to form
@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 / _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 / 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 / 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 / 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 / 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