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
// ==UserScript== | |
// @name Startpage Options | |
// @grant GM_style.add | |
// @match *://startpage.com/* | |
// @match *://www.startpage.com/* | |
// @run-at document-begin | |
// ==/UserScript== | |
// Updated for May 2021 startpage element selector changes |
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 json | |
file_path = "/usr/share/vscodium-bin/resources/app/product.json" | |
with open(file_path, "r") as f: | |
config = json.load(f) | |
config["extensionsGallery"]["serviceUrl"] = "https://marketplace.visualstudio.com/_apis/public/gallery" | |
config["extensionsGallery"]["cacheUrl"] = "https://vscode.blob.core.windows.net/gallery/index" | |
config["extensionsGallery"]["itemUrl"] = "https://marketplace.visualstudio.com/items" |
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
# navigate to about:debugging#workers first | |
for (let k of document.getElementsByClassName("unregister-link")) k.click() | |
for (let k of document.getElementsByClassName("qa-unregister-button")) k.click() |
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
Vagrant.configure("2") do |config| | |
config.vm.define "default" do |default| | |
default.vm.hostname = "unisonbuild" | |
default.vm.provider "lxc" | |
default.vm.box = "zeitonline/bionic64-lxc" | |
# default.vm.box = "bento/ubuntu-18.04" | |
end | |
end |
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 TABLE android_metadata (locale TEXT); | |
INSERT INTO android_metadata VALUES ("en_US"); |
apk-tools 2.8.2, compiled for x86_64.
usage: apk COMMAND [-h|--help] [-p|--root DIR] [-X|--repository REPO] [-q|--quiet] [-v|--verbose] [-i|--interactive] [-V|--version] [-f|--force]
[--force-binary-stdout] [--force-broken-world] [--force-non-repository] [--force-old-apk] [--force-overwrite] [--force-refresh] [-U|--update-cache]
[--progress] [--progress-fd FD] [--no-progress] [--purge] [--allow-untrusted] [--wait TIME] [--keys-dir KEYSDIR] [--repositories-file REPOFILE]
[--no-network] [--no-cache] [--cache-dir CACHEDIR] [--arch ARCH] [--print-arch] [ARGS]...
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
Vagrant.configure("2") do |config| | |
# Other box urls: https://www.bram.us/2014/09/24/modern-ie-vagrant-boxes | |
config.vm.box = "modern.ie/win7-ie11" | |
config.vm.box_url = 'http://aka.ms/vagrant-win7-ie11' | |
# big timeout since windows boot is very slow | |
config.vm.boot_timeout = 500 | |
# Port forward WinRM (Windows Remote Management) and RDP |
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/sh | |
# default commands for osx to make it nicer to work with | |
########################## | |
# General UI?UX settings # | |
########################## | |
# Set hostname (hex of MVB9APPS) | |
sudo scutil --set ComputerName "0x4d56423941505053" | |
sudo scutil --set HostName "0x4d56423941505053" |
NewerOlder