This file contains hidden or 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
<?php | |
// Server info | |
$vst_hostname = 'server.vestacp.com'; | |
$vst_username = 'admin'; | |
$vst_password = 'p4ssw0rd'; | |
$vst_returncode = 'yes'; | |
$vst_command = 'v-add-mail-account'; | |
// New account info |
This file contains hidden or 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
// Türkçe soysimler/soyadlar | |
Abakıymış | |
Abala | |
Abçar | |
Abıç | |
Abık | |
Abıkan | |
Abınak | |
Abınç |
This file contains hidden or 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
// Türkçe meslek listesi | |
Acentacı | |
Acil durum yönetmeni | |
Adli tabip | |
Agronomist | |
Ağ yöneticisi | |
Aşçı | |
Aşçıbaşı | |
Ahşap tekne yapımcısı |
This file contains hidden or 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
:[^\n]+ | |
xxxx : bla bla bla |
This file contains hidden or 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
// Türkçe kız/kadın/bayan isimleri | |
Abendam | |
Açela | |
Açelya | |
Açılay | |
Adel | |
Adelya | |
Adile | |
Afitap |
This file contains hidden or 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
// Türkçe erkek isimleri | |
Abidin | |
Adnan | |
Affan | |
Agah | |
Ahi | |
Ahmed | |
Alican | |
Alişan |
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<newsMessage xml:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1" xml:noNamespaceSchemaLocation="http://iptc.org/std/nar/2006-10-01/XSD/NewsML-G2_2.9-spec-All-Core.xsd" standard="NewsML-G2" standardversion="2.9" conformance="core" xml:lang="tr_TR" xmlns="http://iptc.org/std/nar/2006-10-01/"> | |
<catalogRef href="http://www.iptc.org/std/catalog/catalog.IPTC-G2-Standards_19.xml" /> | |
<header> | |
<sent>2016-07-03T22:53:47Z</sent> | |
<sender>aa.com.tr</sender> | |
<priority>4</priority> | |
<channel qcode="AApackage:1"> | |
<name xml:lang="fr">Général</name> | |
<name xml:lang="sq">E Përgjithshme</name> |
This file contains hidden or 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
//daterangepicker.js | |
$(function() { | |
function cb(start, end) { | |
$('#reportrange span').html(start.format('MMMM D') + ' - ' + end.format('MMMM D')); | |
} | |
cb(moment().subtract(29, 'days'), moment()); | |
$('#reportrange').daterangepicker({ |
This file contains hidden or 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
// Türkçe sıra sayıları / Ordinal Numbers | |
for (var i = 1; i < 32; i++) { | |
if (i == 2) { var suffix = "nci"; } | |
else if (i == 3 || i == 4 || i == 13 || i == 14 || i == 23 || i == 24) { var suffix = "üncü"; } | |
else if (i == 6 ) { var suffix = "ncı"; } | |
else if (i == 9 || i == 10 || i == 19 || i == 29 || i == 39) { var suffix = "uncu"; } | |
else { var suffix = "inci"; } | |
console.log( i + '\'' + suffix); |
This file contains hidden or 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
// @yasinkuyu | |
// https://tr.wikipedia.org/wiki/T%C3%BCrk_alfabesindeki_harflerin_kullan%C4%B1m_s%C4%B1kl%C4%B1klar%C4%B1 | |
// Türk alfabesindeki harflerin kullanım sıklıkları | |
var alfabe = { | |
'A': 11.92, | |
'B': 2.844, | |
'C': 0.963, | |
'Ç': 1.156, | |
'D': 4.706, | |
'E': 8.912, |