This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function($){ | |
var imagesLoaded = function(selector, onComplete, onProgress) { | |
var $images = $(selector).find('img'); | |
var success = 0; | |
var error = 0; | |
var iteration = 0; | |
var total = $images.length; | |
var check = function(el, status) { | |
iteration++; | |
var data = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Usage: bash path/to/bash/scripts/docker-checkout.sh app_name | |
prefix="/Users/omuryanikoglu/Docker/apps/" | |
suffix="/app" | |
directory="$prefix$1$suffix" | |
if [ -d "$directory" ]; then | |
echo "App directory exists!" | |
docker-compose stop | |
cd $directory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="class">asd</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form class="modal-form ajax-form form-horizontal form-new-address" action="//www.barcin.com/address" method="post" > | |
<div class="form-group"> | |
<div class="col-xs-12"> | |
<label class="control-label required" for="address_title">Adres Tanımı (Ev, İş, Okul)</label> | |
<input type="text" id="address_title" name="address[title]" required="required" maxlength="30" pattern=".{2,}" class="form-control form-control" /> | |
</div> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html | |
{ | |
font-family:sans-serif; | |
-ms-text-size-adjust:100%; | |
-webkit-text-size-adjust:100%; | |
-webkit-font-smoothing:antialiased!important; | |
-ms-overflow-style:scrollbar; | |
overflow-y:scroll\9 | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function BPMap(id, options){ | |
if(!BPMap.googleMapsLoaded()) { return; } | |
options = options || {}; | |
if(!id || !options.lat || !options.lng) return; | |
options.latlong = {lat: options.lat, lng: options.lng}; | |
options.zoom = options.zoom || 17; | |
options.type = options.type || 'roadmap'; | |
options.title = options.title || 'Konumum'; | |
options.content = options.content || false; | |
var map = new google.maps.Map(document.getElementById(id), {center: options.latlong, zoom: options.zoom, streetViewControl: false, panControl: false, mapTypeId: options.type, mapTypeControl: false, zoomControlOptions: {position: google.maps.ControlPosition.LEFT_CENTER}}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# https://github.com/Microsoft/TypeScript/issues/2302#issuecomment-144959412 | |
find . -name "*.js" -exec bash -c 'mv "$1" "$(sed "s/\.js$/.ts/" <<< "$1")"' - '{}' \; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- ordered by id --> | |
<select name="city"> | |
<option value="">Choose...</option> | |
<option value="1">Adana</option> | |
<option value="2">Adıyaman</option> | |
<option value="3">Afyonkarahisar</option> | |
<option value="4">Ağrı</option> | |
<option value="5">Amasya</option> | |
<option value="6">Ankara</option> | |
<option value="7">Antalya</option> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
For this issue: https://github.com/inuitcss/inuitcss/issues/228 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (typeof String.prototype.toLatinFromTurkish !== "function") { | |
String.prototype.toLatinFromTurkish = function() { | |
var string = this; | |
var letters = { | |
"Ğ":"G", | |
"Ü":"U", | |
"Ş":"S", | |
"İ":"I", | |
"Ö":"O", | |
"Ç":"C", |