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 / Readme.md
Last active April 15, 2018 20:01
Sample: Using Contact Form 7 with Enfold

Using Contact Form 7

These codes for Ephemerid.

Disable Autop

First of all disable autop with this:

# wp-config.php
define('WPCF7_AUTOP', false);
KL00567-R06,0
KL00567-R08,0
KL00568-G01,2
KL00568-R01,6
KL00569-R01,1
KL00569-R03,0
KL00569-R05,0
KL00569-R07,0
KL00569-R08,0
KL00569-R12,3
@hayatbiralem
hayatbiralem / urunler.xml
Last active November 22, 2017 13:07
Temp
This file has been truncated, but you can view the full file.
[
{
"sku":"BL00001-R01",
"store_view_code":"",
"attribute_set_code":"Default",
"product_type":"",
"categories":"Default Category/BİLEKLİK",
"product_websites":"base",
"name":"BL00001-R01",
"short_description":"",
@hayatbiralem
hayatbiralem / ContextCmder-Disable.reg
Created January 19, 2017 10:25 — forked from jojobyte/ContextCmder-Disable.reg
Cmder Context (Right-Click) Menu for Windows 7/8
Windows Registry Editor Version 5.00
[-HKEY_CLASSES_ROOT\Directory\Background\shell\Cmder]
[-HKEY_CLASSES_ROOT\Directory\shell\Cmder]
@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",
@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 / 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 / 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 / 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}});
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
}