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
{ | |
"hello": { | |
"K": "Salemetsiz", | |
"M": "Sain Baina uu" | |
}, | |
"thank you": { | |
"K":"Rahmet", | |
"M":"Bayarlalaa" | |
}, | |
"fly":{ |
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
{ | |
"keys": ["searchkey"] , | |
"values": [ | |
["zulüm"], | |
["kedi"], | |
["kebap"], | |
["recep tayyip erdoğ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
<!DOCTYPE html> | |
<html class="full" lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta name="description" content=""> | |
<meta name="author" content=""> | |
<title>Full Page Image Background Template for Bootstrap 3</title> |
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
# | |
# Wide-open CORS config for nginx | |
# | |
location / { | |
if ($request_method = 'OPTIONS') { | |
add_header 'Access-Control-Allow-Origin' '*'; | |
# |
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
<html> | |
<head> | |
<!-- Load jQuery from Google's CDN --> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script> | |
<!-- Source our javascript file with the jQUERY code --> | |
<script src="script.js"></script> | |
</head> | |
<body> | |
<h3>Choose file(s)</h3> | |
<p> |
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
#!/usr/bin/sh | |
# | |
# bunu sakın yapmayın | |
# | |
iptable -F && iptables -P INPUT DROP && iptables -P OUTPUT DROP && iptables -P FORWARD DROP && reboot |
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
select TABLE_SCHEMA,TABLE_NAME,COLUMN_NAME from information_schema.columns | |
where table_schema = 'eba' | |
order by table_name,ordinal_position limit 10000 |
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
window.shuffleArray = (function() { | |
return function(arr) { | |
for(var j, x, i = arr.length; i; j = parseInt(Math.random() * i), x = arr[--i], arr[i] = arr[j], arr[j] = x); | |
return arr; | |
} | |
})(); |
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 | |
function recursive_directory($dirname,$maxdepth=10, $depth=0){ | |
if ($depth >= $maxdepth) { | |
return false; | |
} | |
$subdirectories = array(); | |
$files = array(); | |
if (is_dir($dirname) && is_readable($dirname)) { | |
$d = dir($dirname); | |
while (false !== ($f = $d->read())) { |