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
// ==UserScript== | |
// @name hckrnews balck out | |
// @include https://hckrnews.com/* | |
// @grant GM_addStyle | |
// @run-at document-start | |
// ==/UserScript== | |
GM_addStyle ( ` | |
* { | |
color: black !important; |
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
// ==UserScript== | |
// @name Bing Chat Auto Input | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://www.bing.com/search?*showconv=1* | |
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== | |
// @grant none | |
// ==/UserScript== |
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
____ _ _ _ | |
| _ \(_)_ __ _ __ ___ (_)_ __ | |_ | |
| |_) | | '_ \| '_ \ / _ \| | '_ \| __| | |
| __/| | | | | |_) | (_) | | | | | |_ | |
|_| |_|_| |_| .__/ \___/|_|_| |_|\__| | |
|_| |
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 download(filename, link) { | |
var element = document.createElement('a'); | |
element.setAttribute('href', link); | |
element.setAttribute('download', filename); | |
element.style.display = 'none'; | |
document.body.appendChild(element); | |
element.click(); | |
document.body.removeChild(element); | |
} |
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
docker-machine create -d virtualbox --engine-env HTTP_PROXY=http://192.168.99.1:7007 --engine-env HTTPS_PROXY=https://192.168.99.1:7007 --engine-opt dns=8.8.8.8 dev |
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
# GOAL: On a CentOS 6.7 minimal install, set up nginx as a reverse proxy to uWSGI Emperor with python 2.7.11 as a plugin to run Flask apps | |
# ::NOTE:: All instructions below are run as a sudoer, not as root. Talk to your sysadmins if you're not a sudoer. | |
# Install bare essentials: | |
sudo yum install -y epel-release | |
sudo yum groupinstall 'Development Tools' | |
sudo yum install -y vim openssl unzip nginx openssl-devel zlib-devel sqlite-devel bzip2-devel libffi-devel lapack-devel blas-devel libpng-devel freetype-devel | |
# Set SELINUX=disabled in the file below, and reboot, or this tutorial will get unnecessarily complicated: |
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
#!/bin/bash | |
## Update system | |
cd | |
yum update -y | |
## Install base package | |
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. Click Start, click in the Start Search box, type gpedit.msc, and then press ENTER. MMC will start with the Local Group Policy Editor open. | |
2. In the navigation tree, expand Computer Configuration, expand Administrative Templates, expand System, expand Troubleshooting and 3. Diagnostics, and click Windows Resource Exhaustion Detection and Resolution. | |
3. In the console pane, right-click Configure Scenario Execution Level, and then click Properties. | |
4. On the Setting tab, select Disabled, and then click OK. |
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
D/AndroidRuntime(25948): Shutting down VM | |
E/AndroidRuntime(25948): FATAL EXCEPTION: main | |
E/AndroidRuntime(25948): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.b8_show/com.example.b8_show.ui.ExclusiveServiceActivity}: android.view.InflateException: Binary XML file line #155: Error inflating class <unknown> | |
E/AndroidRuntime(25948): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2110) | |
E/AndroidRuntime(25948): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2135) | |
E/AndroidRuntime(25948): at android.app.ActivityThread.access$700(ActivityThread.java:140) | |
E/AndroidRuntime(25948): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1237) | |
E/AndroidRuntime(25948): at android.os.Handler.dispatchMessage(Handler.java:99) | |
E/AndroidRuntime(25948): at android.os.Looper.loop(Looper.java:137) | |
E/AndroidRuntime(25948): at android.app.ActivityThread.main(ActivityThread.java:4921) |
NewerOlder