Skip to content

Instantly share code, notes, and snippets.

View mucahit's full-sized avatar
👨‍💻

Mucahit Tutuncu mucahit

👨‍💻
View GitHub Profile
@for $index from 1 through 6 {
h#{$index}{
font: 32px/42px trajan-pro-1,trajan-pro-2;
}
}
{
"caret_extra_bottom": 3,
"caret_extra_top": 3,
"caret_extra_width": 2,
"color_scheme": "Packages/Seti_UI/Scheme/Seti.tmTheme",
"highlight_line": true,
"ignored_packages":
[
"Vintage"
],
@mucahit
mucahit / .zshrc
Created May 25, 2015 10:39
My .zshrc file
# Path to your oh-my-zsh installation.
export ZSH=/Users/muco/.oh-my-zsh
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
ZSH_THEME="robbyrussell"
@mucahit
mucahit / post.class.php
Last active August 29, 2015 14:04
dipnot : postla alınan değerlere filtreleme uygulanmamıştır
<?php
class method{
public $return;
public $values = [];
//POST method function
public function post($names){
$type = gettype($names);
if($type == 'array')
@mucahit
mucahit / class.session.php
Last active August 29, 2015 14:03
Session class with php ♥
<?php
class sess
{
public static function create($array){
foreach ($array as $key => $value) {
#create session
$_SESSION[$key] = $value;