Models | Examples |
---|---|
Display ads | Yahoo! |
Search ads |
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
Black="$(tput setaf 0)" | |
BlackBG="$(tput setab 0)" | |
DarkGrey="$(tput setaf 0)" | |
LightGrey="$(tput setaf 7)" | |
LightGreyBG="$(tput setab 7)" | |
White="$(tput setaf 7)" | |
Red="$(tput setaf 1)" | |
RedBG="$(tput setab 1)" | |
LightRed="$(tput setaf 1)" | |
Green="$(tput setaf 2)" |
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
Boolean.prototype.toggle = function() { | |
return !this.valueOf(); | |
} | |
/** | |
* @description Parses mixed type values into booleans. | |
* @param {Mixed} value | |
* @param {Boolean} nullOnFailure = false | |
* @return {Boolean} | |
*/ | |
Boolean.prototype.toBoolean: function(obj) { |
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
#!/bin/bash | |
ex='' | |
ex=$ex" --exclude /media/userName/07174FCC5FED4B6F " | |
ex=$ex" --exclude .adobe " | |
ex=$ex" --exclude .cordova " | |
ex=$ex" --exclude .android " | |
ex=$ex" --exclude android-sdk-linux " | |
ex=$ex" --exclude tmp " | |
ex=$ex" --exclude .thumbnails " |
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 pathToWatch = 'C:\\Users\\Arnon\\Downloads\\'; // Exploit!! | |
var copyTo = 'C:\\Users\\Arnon\\Desktop\\tst'; | |
module.exports = function(grunt) { | |
/** | |
* Initialize grunt | |
*/ | |
grunt.initConfig({ | |
watch: { |
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 docCookies = { | |
getItem: function (sKey) { | |
if (!sKey) { return null; } | |
return decodeURIComponent(document.cookie.replace(new RegExp("(?:(?:^|.*;)\\s*" + encodeURIComponent(sKey).replace(/[\-\.\+\*]/g, "\\$&") + "\\s*\\=\\s*([^;]*).*$)|^.*$"), "$1")) || null; | |
}, | |
setItem: function (sKey, sValue, vEnd, sPath, sDomain, bSecure) { | |
if (!sKey || /^(?:expires|max\-age|path|domain|secure)$/i.test(sKey)) { return false; } | |
var sExpires = ""; | |
if (vEnd) { |
OlderNewer