This file contains 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
tools >Build System>new Build System | |
ile ekleyin | |
{ | |
"cmd": ["C:\\wamp\\bin\\mysql\\mysql5.6.17\\bin\\mysql", | |
"-u", "root", | |
"-P","", | |
"-h", "localhost", | |
"-e", "source $file", "-t"], | |
"selector": "source.sql", "quiet": true | |
} |
This file contains 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
<script> | |
// tarayıcı türleri ie,chrome,mozilla | |
var notification = window.Notification || window.mozNotification || window.webkitNotification; | |
// Kullanıcı izini | |
if ('undefined' === typeof notification) | |
alert('Web notification not supported'); | |
else | |
notification.requestPermission(function(permission){}); |
This file contains 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
<script language="JavaScript"> | |
/** | |
* Disable right-click of mouse, F12 key, and save key combinations on page | |
* By Arthur Gareginyan ([email protected]) | |
* For full source code, visit http://www.mycyberuniverse.com | |
*/ | |
window.onload = function() { | |
document.addEventListener("contextmenu", function(e){ | |
e.preventDefault(); | |
}, false); |
This file contains 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 | |
/** | |
* adasusbilisim[.]gmail.com | |
*/ | |
defined('BASEPATH') OR exit('No direct script access allowed'); | |
class Tarihhesapla { | |
private $msj = array(); | |
/** |
This file contains 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 keyExistsOn = (o, k) => k.split(".").reduce((a, c) => a.hasOwnProperty(c) ? a[c] || 1 : false, Object.assign({}, o)) === false ? false : true; |
This file contains 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
const mask = (res = "", regex) => { | |
if (res.replace(/\D+/gim, "").length == 0) return ""; | |
if (res.replace(/\D+/gim, "").length > regex.replace(/\D+/gim, "").length) | |
return res.slice(0, regex.replace(/\[|\]/gim, "").length); | |
let regexNumber = regex.match(/\d+/gim, ""), //sadece sayılar | |
totalLen = res.match(/\d+/gim, "").join("").length, //gelen değerin uzunluğu | |
number = res.match(/\d+/gim, "").join("") + new Array(regexNumber.join("").length - totalLen).fill("_").join(""), | |
len = 0, | |
rlen = 0; | |
let match = regex.replace(/\[\d+\]/gim, (m, k) => m.replace(/\[\d+\]/gim, "$" + rlen++)); |
This file contains 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
class sifrele { | |
protected $key; | |
protected $etype; | |
protected $mcmod; | |
protected $rand; | |
protected $iv; | |
public function __construct() | |
{ |
This file contains 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 | |
$email = '[email protected]'; | |
function mail_gizle($mail,$baslangic=2,$bitis=1) | |
{ | |
$e = explode('@',$mail); | |
list($name,$dom) = $e; | |
$say = strlen($name); | |
if($say > 7) | |
{ |
This file contains 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 rows = $("#accounts_table tbody tr"), | |
returnString = ""; | |
rows.each(function(i, item){ | |
var tdList = []; | |
$(item).find('span.account-name').each(function(s,subItem){ | |
tdList.push($(subItem).text()); | |
}); | |
returnString += tdList + "\n"; | |
}); | |
console.log(returnString); |
This file contains 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 | |
if(function_exists("imap_open")) | |
{ | |
$imapPath = '{imap.yandex.com.tr:993/imap/ssl}INBOX'; | |
$username = ''; | |
$password = ''; | |
$inbox = imap_open($imapPath,$username,$password) or die('Cannot connect to yandex: ' . imap_last_error()); | |
$emails = imap_search($inbox,'UNSEEN'); // okunmamış epostları göster https://www.php.net/manual/tr/function.imap-search.php | |
foreach($emails as $mail) | |
{ |
OlderNewer