Skip to content

Instantly share code, notes, and snippets.

View hayatbiralem's full-sized avatar

Ömür Yanıkoğlu hayatbiralem

View GitHub Profile
@hayatbiralem
hayatbiralem / imagesLoaded.js
Last active November 26, 2015 15:32
Images loaded function without imagesLoaded library
(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 = {
@hayatbiralem
hayatbiralem / docker-checkout.sh
Last active February 22, 2016 08:58
Helper shell scripts for Docker
# 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
@hayatbiralem
hayatbiralem / SassMeister-input-HTML.html
Created July 13, 2016 15:35 — forked from mmintel/SassMeister-input-HTML.html
Generated by SassMeister.com.
<div class="class">asd</div>
<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>
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
}
@hayatbiralem
hayatbiralem / multiple-maps-on-bp.js
Last active September 27, 2016 08:53
Multiple Maps on BP
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}});
@hayatbiralem
hayatbiralem / change-extension-script.sh
Last active October 2, 2016 21:00
Bash script for change file extensions in a directory
#!/bin/bash
# https://github.com/Microsoft/TypeScript/issues/2302#issuecomment-144959412
find . -name "*.js" -exec bash -c 'mv "$1" "$(sed "s/\.js$/.ts/" <<< "$1")"' - '{}' \;
@hayatbiralem
hayatbiralem / cities-in-turkey--ordered-by-id.html
Last active June 17, 2024 11:29
List of cities in Turkey (HTML Select Option)
<!-- 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>
@hayatbiralem
hayatbiralem / SassMeister-input-HTML.html
Last active November 9, 2016 15:16
[utilities.spacing] improve list definitions and let vertical/horizontal directions
For this issue: https://github.com/inuitcss/inuitcss/issues/228
@hayatbiralem
hayatbiralem / String.toLatinFromTurkish.js
Created November 23, 2016 15:22
Bir metin içindeki Türkçe karakterleri Latin karakterlere dönüştürür.
if (typeof String.prototype.toLatinFromTurkish !== "function") {
String.prototype.toLatinFromTurkish = function() {
var string = this;
var letters = {
"Ğ":"G",
"Ü":"U",
"Ş":"S",
"İ":"I",
"Ö":"O",
"Ç":"C",