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
$Storage.set('lang','EN'); | |
var lang = $Storage.get('lang'); | |
$Storage.setJson('user',{ | |
'username':'james bond', | |
'password':'cbdb7e2b1ed566ceb796af2df07205a3' //bond007 | |
}); | |
var user = $Storage.getJson('user'); |
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
$(function() { | |
// auto size iframe | |
$('iframe[data-size]').each(function () { | |
var frame = $(this); | |
var size = frame.data('size').split('x'); | |
var rate = size[0]/size[1]; | |
frame.width(size[0]); | |
frame.height(frame.width()/rate); |
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 | |
/** | |
* uri ve file path yollarını combinler | |
* author: https://github.com/fatihgvn | |
* source: https://gist.github.com/fatihgvn/8cb5c3bd085c3a097fee0f2b4b005020 | |
* date: 19.08.2019 | |
*/ | |
class Combine | |
{ |
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
0-mail.com | |
0815.ru | |
0845.ru | |
0clickemail.com | |
0wnd.net | |
0wnd.org | |
10mail.com | |
10mail.org | |
10minutemail.cf | |
10minutemail.co.za |
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
var ajax = {}; | |
ajax.x = function () { | |
if (typeof XMLHttpRequest !== 'undefined') { | |
return new XMLHttpRequest(); | |
} | |
var versions = [ | |
"MSXML2.XmlHttp.6.0", | |
"MSXML2.XmlHttp.5.0", | |
"MSXML2.XmlHttp.4.0", | |
"MSXML2.XmlHttp.3.0", |