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
StructType([ | |
StructField("additional_minidumps", ArrayType(StringType(), containsNull = False), nullable = True), | |
StructField("addons", ArrayType(StringType(), containsNull = False), nullable = True), | |
StructField("addons_checked", BooleanType(), nullable = False), | |
StructField("address", StringType(), nullable = True), | |
StructField("app_notes", StringType(), nullable = True), | |
StructField("build_id", StringType(), nullable = True), | |
StructField("classifications", StructType([ | |
StructField("jit", StructType([ | |
StructField("category", StringType(), nullable = True), |
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
/* | |
* This is to be used from a Firefox scratchpad: | |
* - enable chrome devtools: in about:config set "devtools.chrome.enabled" to true | |
* - open scratchpad: Tools -> Web Developer -> Scratchpad | |
* - make it run as chrome: choose Environment -> Browser | |
* - click "Run" | |
*/ | |
(function() { | |
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 http = require('http'); | |
var fs = require('fs'); | |
function fail(request, response, msg) { | |
response.writeHead(413, {'Content-Type': 'text/plain'}); | |
response.end(msg); | |
} | |
function postRequest(request, response, callback) { | |
var queryData = ""; |
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
/* Usage: | |
1. open about:healthreport | |
2. open a Web Console panel in that page | |
3. Pop the console out and expand it | |
4. Copy this JS code to the clipboard | |
5. Paste it into the command prompt at the bottom of the console | |
*/ | |
let reporter = Components.classes["@mozilla.org/datareporting/service;1"].getService(Components.interfaces.nsISupports).wrappedJSObject.healthReporter; |
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
#!/usr/bin/env python | |
# encoding: utf-8 | |
import sys | |
import getopt | |
from datetime import datetime, timedelta | |
from subprocess import call | |
help_message = ''' | |
-h, --help | |
-s, --start_date <start_date> |