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
{ | |
"env": { | |
"browser": true, | |
"node": true, | |
"es6": true | |
}, | |
"plugins": ["react"], | |
"ecmaFeatures": { |
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
rd /s /q Display.Optimus | |
rd /s /q Display.NView | |
rd /s /q GFExperience | |
rd /s /q GFExperience.NvStreamSrv | |
rd /s /q GfExperienceService | |
rd /s /q LEDVisualizer | |
rd /s /q Miracast.VirtualAudio | |
rd /s /q MS.NET | |
rd /s /q MSVCRT | |
rd /s /q Network.Service |
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
#! /bin/bash | |
# Sometimes downloaded files in OS X contain extended attributes that disallow | |
# the files to be accessed by apache. Nuke the site from orbit. | |
rmextattr() { | |
find . | while read filename | |
do | |
while read attr | |
do | |
echo "removing ${attr} from ${filename}" | |
xattr -d "${attr}" "${filename}" |
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 | |
# When you want a easy way to get at all (or the latest) version of a certain python package from a PyPi index. | |
import sys | |
import logging | |
try: | |
from pip._internal import cmdoptions, main | |
from pip._internal.commands import commands_dict | |
from pip._internal.basecommand import RequirementCommand |
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
import simplejson | |
from flask import Flask, g, request | |
from couchdb.design import ViewDefinition | |
import flaskext.couchdb | |
app = Flask(__name__) | |
""" | |
CouchDB permanent view |
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
import aiohttp | |
import asyncio | |
import json | |
import sys | |
PRODUCT = "firefox" | |
SERVER_URL = "https://buildhub.stage.mozaws.net/v1/buckets/build-hub/collections/releases/search" | |
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
import asyncio | |
import json | |
import os | |
import re | |
from urllib.parse import urlparse | |
import async_timeout | |
import aiohttp | |
import backoff |