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
| www.domain.com | ^www\.resmed\.com$ | |
| www.domain.com | ^www\d?\.resmed\.com$ | |
| www3.domain.com | | |
| www.domain.com | ^(www\d?\.)?resmed\.com$ | |
| www3.domain.com | | |
| domain.com | |
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 buildQueryParams(params){ | |
| return Object.keys(params).map(function(key) { | |
| return encodeURIComponent(key) + '=' + encodeURIComponent(params[key]); | |
| }).join('&'); | |
| } |
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(){ | |
| "use strict"; | |
| /** | |
| * Constants | |
| */ | |
| var VERSION = '2.1'; |
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
| // run in console at twitter.com/username/likes (replace username with your username) | |
| (function(document,window) { | |
| function clearlikes(){ | |
| window.scrollTo(0,document.body.scrollHeight); | |
| Array.from(document.querySelectorAll('[data-testid="unlike"]')).forEach(function(el){ | |
| el.click(); | |
| }) | |
| setTimeout(clearlikes, 5000); | |
| } | |
| clearlikes(); |
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
| create or replace function dataset.array_int_least(x array<int64>) as | |
| ((select min(y) from unnest(x) as y)); | |
| create or replace function dataset.array_int_greatest(x array<int64>) as | |
| ((select max(y) from unnest(x) as y)); | |
| create or replace function dataset.array_timestamp_least(x array<timestamp>) as | |
| ((select min(y) from unnest(x) as y)); | |
| create or replace function dataset.array_timestamp_greatest(x array<timestamp>) as |
OlderNewer