Skip to content

Instantly share code, notes, and snippets.

View eduardosanzb's full-sized avatar

Eduardo Sánchez eduardosanzb

View GitHub Profile

Its mainly in the prefix of a child node (the envelope is not complete):

        <q1:ReportRequest Created="2016-06-10" ID="1">
            <q1:ns1:Requestor>
     

I'm setting the prefix ns1 in my json

 'ns1:Requestor': [...]
@eduardosanzb
eduardosanzb / cloudSettings
Last active November 15, 2017 17:37
VSCode settings
{"lastUpload":"2017-11-15T17:37:52.008Z","extensionVersion":"v2.8.5"}
/**
* Small hack to automate tinder.com; With a friendly api
*/
function Tinder() {
const tinder = {};
tinder._waitTime = 8000
tinder.waitForIt = () => new Promise(resolve => (setTimeout(() => (resolve()), tinder._waitTime)));
tinder._run = true;