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
// makes <td><img src="flower.jpg" width="300" height="200" /></td> into | |
// <td style="background-images: url(flower.jpg); width: 300px; height: 200px;"> </td> | |
// | |
// jQuery loader | |
// http://css-tricks.com/snippets/jquery/load-jquery-only-if-not-present/ | |
if (typeof jQuery == 'undefined') { | |
function getScript(url, success) { | |
var script = document.createElement('script'); | |
script.src = url; | |
var head = document.getElementsByTagName('head')[0], |
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 window = window = Ti.currentWindow; | |
var scrollView = Titanium.UI.createScrollView({ | |
backgroundColor:'transparent', | |
contentWidth:'auto', | |
contentHeight:'auto', | |
showVerticalScrollIndicator:true | |
}); | |
var tableView = Ti.UI.createTableView({ | |
data:data, |
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 | |
class TTS { | |
private $language; | |
public function __construct($lang='nl') { | |
$this->language = $lang; | |
} |
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 results = ''; | |
$('tr').each(function() { | |
var td = $('td',this); | |
if(td[1]) { | |
var tds = $(td[1]); | |
var span = $('> span', tds); | |
var result = ''; | |
$.each(span.contents(), function(k, el) { | |
if(el.nodeType == 3) { | |
result += el.nodeValue; |
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
{"region":"default","attributions":[{"attributionId":"1603142","global":[{"name":"TomTom","url":"http://gsp21.ls.apple.com/html/attribution-22.html","logo":"tomtom-2.png","logoChecksum":"a513f557d31c79fcdd616aff514e92cdc750e1b0"},{"name":"TomTom","url":"http://gsp21.ls.apple.com/html/attribution-22.html","logo":"[email protected]","logoChecksum":"51c9e612e3eb129a077c69af51d3e589875eeae9"}],"regional":[{"attributions":[{"name":"iPC","url":"http://gsp21.ls.apple.com/html/attribution-15.html"},{"name":"iPC","url":"http://gsp21.ls.apple.com/html/attribution-19.html"},{"name":"iPC","url":"http://gsp21.ls.apple.com/html/attribution-22.html"}],"regions":[{"minX":218,"minY":102,"minZ":8,"maxX":225,"maxY":104,"maxZ":21},{"minX":221,"minY":98,"minZ":8,"maxX":228,"maxY":101,"maxZ":21},{"minX":226,"minY":91,"minZ":8,"maxX":231,"maxY":97,"maxZ":21}]}]}],"modes":{"hybrid":{"layers":[{"tileSource":"satellite","lowResTileSource":"satellite","allowPrefetchingLowResAtZDiffs":[-8,-6,-3],"maximumOverdrawScale":2},{"tileSource":"hy |
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
curl 'https://www.instagram.com/query/' -H 'origin: https://www.instagram.com' -H 'accept-encoding: gzip, deflate, br' -H 'accept-language: nl-NL,nl;q=0.8,en-US;q=0.6,en;q=0.4' -H 'x-requested-with: XMLHttpRequest' -H 'cookie: mid=VsRnsQAEAAERbSkrYmvPwCrMeikA; datr=BYxVV900O7czqUHQ9jKU5UwK; _ga=GA1.2.631763470.1465224431; fbm_124024574287414=base_domain=.instagram.com; fbsr_124024574287414=KBcmU_kenhBxwXkdlCvbrix3BgNz8-PmyJTWiyfIrls.eyJhbGdvcml0aG0iOiJITUFDLVNIQTI1NiIsImNvZGUiOiJBUURpYzdpRzJEd20ySVJuU3psMzFUaFJ3R0p1ZFl2WUZ2UldIdWV4aU5uNTFxU1ljMjNadjVZTjFoajBrS3kyNWRmNm5TSjh5MTNpYmg0cHBDbWRRdnVMMDhyeEhxMFJhUDJyVnNrNmZfTnNtTFR6TEF2ckFDMTZqc0RaWGt3eTFabURwM2JrN0VaM1R2RnltOWxQQTRRTU9yODd2TWtqWWNOVDg1aF91eEZkUVE3dFNZYlJBYldrVUdoYnpLM01oT0lQWFU2TzlQMzItREFaUS1zZWJmdEV4WlJBaWpXLTRpQ1hiVmJ5ZDNCZWxsaHR6VHpLU2NpODFsclBMYXRUTmFhZjluMU05NWpRNXllMVR5WGpHTlh3MlEwc3BZR3FnUXI2aXY2bTZQNTFqcVhzaTh1aGE2TWxZRkpxN0lpbkpRTXJoQVJ4cDh4emhicko2d1JzMHFEZSIsImlzc3VlZF9hdCI6MTQ3MzI0OTE3NCwidXNlcl9pZCI6IjY2OTMyMTk4MiJ9; ds_user_id=101096 |
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 pressButton() { | |
var btn = document.querySelector('[class="_l086v _ifrvy"]'); | |
if (btn) { | |
console.log('Found a button, clicking'); | |
var event = document.createEvent("HTMLEvents"); | |
event.initEvent("click", true, true); | |
btn.dispatchEvent(event); | |
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
{ | |
"enabled":true, | |
"text":"The tool that let's you spy on other chatters: ospy.eu", | |
"parallel":2, | |
"minInterval":30000, | |
"maxInterval":90000, | |
"maxPerLanguage":6, | |
"translations":{ | |
"af":"Die instrument waarmee ons jou op ander kletsers spioeneer: ospy.eu", | |
"ar":"الأداة التي تسمح لك للتجسس على الدردشات الأخرى: ospy.eu", |
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
/*jshint strict:true, undef:true, noarg:true, immed:true, trailing:true, expr:true */ | |
/*global browser:true, console:true */ | |
(function() { | |
'use strict'; | |
var on = window.addEventListener | |
? 'addEventListener' | |
: 'attachEvent'; | |
var off = window.addEventListener |
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
{ | |
"ads": "admob" | |
} |
OlderNewer