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
// 1. | |
// Navigation Timing | |
// | |
new PerformanceObserver((entryList) => { | |
for (const entry of entryList.getEntries()) { | |
console.log('NavigationTiming:', entry); | |
} | |
}).observe({type: 'navigation', buffered: true}); | |
// 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
var xValue = []; | |
var yValue = []; | |
var dataFound = true; | |
try { | |
var xValue = data.series[0].fields[0].values.buffer; | |
var yValue = data.series[0].fields[1].values.buffer; | |
} | |
catch (e) { |
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
{ | |
"barmode": "stack", | |
"legend": { | |
"bgcolor": "#fff", | |
"orientation": "h" | |
}, | |
"margin": { | |
"b": 30, | |
"l": 45, | |
"pad": 4, |
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
SELECT table, | |
formatReadableSize(sum(bytes)) as size, | |
min(min_date) as min_date, | |
max(max_date) as max_date | |
FROM system.parts | |
WHERE active | |
GROUP BY table |
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 beaconCatcherAddress = "https://rum.revampix.com/beacon/catcher.php" | |
addEventListener('fetch', event => { | |
event.respondWith(handle(event, event.request)) | |
}) | |
async function asyncFetch(request) { | |
let response = fetch(request) | |
.then( | |
function() {}, |
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 scriptProperties = PropertiesService.getScriptProperties(); | |
var pageSpeedApiKey = ''; | |
var pageSpeedMonitorUrls = [ | |
'https://www.example-url-here.de' | |
]; | |
function createHeadingIfNoteExist() { | |
var spreadsheet = SpreadsheetApp.getActiveSpreadsheet(); | |
var sheet = spreadsheet.getSheetByName('Sheet1'); | |
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
<?php | |
$mysqlCommandPath = 'mysql'; | |
$mysqldumptCommandPath = 'mysqldump'; | |
$remoteDbUnsername = ''; | |
$remoteDbPassword = ''; | |
$remotePort = ''; | |
$remotHost = ''; | |
$remoteDb = ''; |
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
(function() { | |
function createCheckCacheCookie() { | |
var expireHours = 8; | |
var date = new Date(); | |
date.setTime(date.getTime() + (expireHours*60*60*1000)); | |
document.cookie = "assumedColdCache=true" + "; expires=" + date.toUTCString() + "; path=/"; | |
} | |
function cacheCookieExists() | |
{ |
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
<?php | |
$mysqlCommandPath = 'to be filled'; | |
$mysqldumptCommandPath = 'to be filled'; | |
$remoteDbUnsername = 'to be filled'; | |
$remoteDbPassword = 'to be filled'; | |
$remotePort = 'to be filled'; | |
$remotHost = 'to be filled'; | |
$remoteDb = 'to be filled'; |
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
<action type="dataflow/convert_adapter_io" method="load"> | |
<var name="type">file</var> | |
<var name="path">var/import</var> | |
<var name="filename"><![CDATA[coupons_test.csv]]></var> | |
<var name="format"><![CDATA[csv]]></var> | |
</action> | |
<action type="dataflow/convert_parser_csv" method="parse"> | |
<var name="delimiter"><![CDATA[,]]></var> | |
<var name="enclose"><![CDATA["]]></var> |
NewerOlder