Skip to content

Instantly share code, notes, and snippets.

View asilbalaban's full-sized avatar

Asil Balaban asilbalaban

View GitHub Profile
@asilbalaban
asilbalaban / index.html
Created August 25, 2014 12:42
google maps easy marker
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript" src="jquery.gmap.js"></script>
<script type="text/javascript">
jQuery(document).ready(function(){
var myLatlng = new google.maps.LatLng(41.010961, 28.900224);
var myLatlng2 = new google.maps.LatLng(39.872069, 32.861536);
var myLatlng3 = new google.maps.LatLng(39.903592, 41.271166);
@asilbalaban
asilbalaban / Default (Windows).sublime-mousemap
Created August 19, 2014 14:03
sublime text 2 insert snippet with mouse button
// C:\Users\Asil\AppData\Roaming\Sublime Text 2\Packages\User
[
{ "button": "button5", "command": "insert_snippet", "args": {"name": "Packages/User/ik.sublime-snippet"} }
]
@asilbalaban
asilbalaban / hover.css
Created August 18, 2014 11:06
CSS Only black and white to colorful transition + firefox support
img {
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
filter: gray; /* IE6-9 */
-webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */
}
img:hover {
filter: none;
-webkit-filter: grayscale(0%);
}
@asilbalaban
asilbalaban / send.php
Created August 7, 2014 11:16
dandik mail gönderme scripti. Çok uzun formlarda tek tek get işlemi yapmamak için zamanında böyle bir şey yazmışım
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
@asilbalaban
asilbalaban / preprint-sublime-snippet.sublime-snippet
Created July 16, 2014 09:17
sublime settings & and snippets
<snippet>
<content><![CDATA[
echo '<pre>';
print_r(\$${1:degisken});
echo '</pre>';
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>preprint</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<!-- <scope>source.python</scope> -->
@asilbalaban
asilbalaban / hover-color.css
Created July 8, 2014 13:21
css kullanarak resim siyah beyaz yapma ve hover olunca tekrar renklendirme (firefox destekli)
img.grayscale {
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
filter: gray; /* IE6-9 */
-webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */
}
img.grayscale:hover {
filter: none;
-webkit-filter: grayscale(0%);
}
@asilbalaban
asilbalaban / share.html
Created July 3, 2014 21:33
Social Popup Share
<a href="https://www.facebook.com/sharer/sharer.php?u=URLENCODED_URL&t=TITLE"
onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=300,width=600');return false;"
target="_blank" title="Share on Facebook">
</a>
<a href="https://twitter.com/share?url=URLENCODED_URL&via=TWITTER_HANDLE&text=TEXT"
onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=300,width=600');return false;"
target="_blank" title="Share on Twitter">
</a>
@asilbalaban
asilbalaban / border-box.css
Last active August 29, 2015 14:03
box sizing border-box
/* apply a natural box layout model to all elements */
*, *:before, *:after {
-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}
@asilbalaban
asilbalaban / kagit.txt
Created July 2, 2014 09:38
Kağıt Formatları
Uluslar Arası Kağıt Formatları
A4 - 21cm x 29.7cm
A6 - 10.5cm x 14.8cm
A5 - 14.8cm x 21cm
A3 - 29.7cm x 42cm
B5 - 17.6cm x 21cm
B4 - 25cm x 35.3cm
B3 - 35.3cm x 50cm
@asilbalaban
asilbalaban / a.css
Created June 4, 2014 11:16
css ul li divider
li + li:before{
content: " | ";
padding: 0 10px;
color: darken(@eflatun, 40%);
}