View gist:5a41de7f4a939f6b0d2022fcf28acf3f
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); |
View php mail gizleme
<?php | |
$email = 'ahmeeret@hotmail.com'; | |
function mail_gizle($mail,$baslangic=2,$bitis=1) | |
{ | |
$e = explode('@',$mail); | |
list($name,$dom) = $e; | |
$say = strlen($name); | |
if($say > 7) | |
{ |
View sifrele
class sifrele { | |
protected $key; | |
protected $etype; | |
protected $mcmod; | |
protected $rand; | |
protected $iv; | |
public function __construct() | |
{ |
View mask.js
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++)); |
View React Native json key Exist
var keyExistsOn = (o, k) => k.split(".").reduce((a, c) => a.hasOwnProperty(c) ? a[c] || 1 : false, Object.assign({}, o)) === false ? false : true; |
View Rent A Car Rezervason
<?php | |
/** | |
* adasusbilisim[.]gmail.com | |
*/ | |
defined('BASEPATH') OR exit('No direct script access allowed'); | |
class Tarihhesapla { | |
private $msj = array(); | |
/** |
View gist:2490ef3634089447b95220de5ef113c7
<script language="JavaScript"> | |
/** | |
* Disable right-click of mouse, F12 key, and save key combinations on page | |
* By Arthur Gareginyan (arthurgareginyan@gmail.com) | |
* For full source code, visit http://www.mycyberuniverse.com | |
*/ | |
window.onload = function() { | |
document.addEventListener("contextmenu", function(e){ | |
e.preventDefault(); | |
}, false); |
View Html5 Notification Kullanımı
<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){}); |
View sublime text 3 build mysql connect
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 | |
} |