Skip to content

Instantly share code, notes, and snippets.

View burakerdem's full-sized avatar
🏠
Working from home

Burak Erdem burakerdem

🏠
Working from home
View GitHub Profile
@burakerdem
burakerdem / gist:2947306
Created June 18, 2012 07:35 — forked from lucasfais/gist:1207002
Sublime Text 2 - Useful Shortcuts

Sublime Text 2 – Useful Shortcuts (Mac OS X)

General

⌘T go to file
⌘⌃P go to project
⌘R go to methods
⌃G go to line
⌘KB toggle side bar
⌘⇧P command prompt
@burakerdem
burakerdem / wp-config.php
Created June 21, 2012 10:48
Wordpress versiyonlama özelliğini kapatmak
define ('WP_POST_REVISIONS', false);
@burakerdem
burakerdem / wp-config.php
Created June 21, 2012 10:49
Wordpress versiyonlama özelliğini sınırlamak
define ('WP_POST_REVISIONS', 3);
@burakerdem
burakerdem / wp-versiyon-sil.sql
Created June 21, 2012 10:51
Wordpress versiyonlarını veritabanından silmek
DELETE a,b,c
FROM wp_posts a
LEFT JOIN wp_term_relationships b ON (a.ID = b.object_id)
LEFT JOIN wp_postmeta c ON (a.ID = c.post_id)
WHERE a.post_type = 'revision'
@burakerdem
burakerdem / degisken.less
Created June 27, 2012 13:44
LESS üzerinde değişken kullanımı
@mavi: #5B83AD;
@acik-mavi: @mavi + #111;
#baslik { color: @acik-mavi; }
@burakerdem
burakerdem / degisken.css
Created June 27, 2012 13:44
LESS değişken çıktısı.
#baslik { color: #6c94be; }
@burakerdem
burakerdem / stil.less
Created June 27, 2012 13:51
Arkaplan görsel yolunda LESS değişken kullanımı hatası.
@gorsel-yolu: "img/alt-klasor/";
#baslik {
background-image: url(@gorsel-yolu/gorsel.jpg);
}
@burakerdem
burakerdem / still.less
Created June 27, 2012 13:57
Arkaplan görsel yolunda LESS değişken kullanımı.
@gorsel-yolu: "img/alt-klasor/;
#baslik {
background-image: url("@{gorsel-yolu}/gorsel.jpg);
}
@burakerdem
burakerdem / url_title.php
Created July 10, 2012 21:06
CodeIgniter url_title()
url_title('Lorem Ipsum Dolor Sit Amet');
@burakerdem
burakerdem / url_title.php
Created July 10, 2012 21:07
CodeIgniter url_title() Türkçe
url_title('CodeIgniter ile Wordpress Benzeri Adresler Oluşturmak');