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
import requests | |
token = 'YOUR.TOKEN.HERE' | |
query = 'THING TO SEARCH' | |
when = 'EARLIEST IT CAN BE POSTED (RELATIVE)' | |
excluding = 'STRING TO EXCLUDE' | |
requiring = 'STRING TO REQUIRE' | |
response = requests.get('http://0.0.0.0:5000/api?query=' + query + | |
'&time=' + when + |
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
companion object { | |
private fun bindPreferenceSummaryToValue(preference: Preference) { | |
preference.onPreferenceChangeListener = sBindPreferenceSummaryToValueListener | |
val sharedPreferences = PreferenceManager.getDefaultSharedPreferences(preference.context) | |
if (preference is CheckBoxPreference) { | |
sBindPreferenceSummaryToValueListener.onPreferenceChange( | |
preference, |
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/sh | |
#CYAN='\033[1;36m' | |
CYAN='\033[38;2;113;199;242m' | |
CYAN2='\033[38;2;180;230;255m' | |
BLUE='\033[38;2;34;152;211m' | |
PINK='\033[38;2;251;174;203m' | |
echo -e "$( | |
cat << EOF | |
${CYAN} | |
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
\033[38;2;113;199;242m x* | |
&@& | |
&@@@& | |
&@@@@@@ | |
@@@@@@@@x | |
@@@@@@@@@&0xx | |
0@@@@@@@@@@@@@ | |
&@@@@@@@@@@@@ | |
&@@@@@@@@@@@@@& | |
&@@@@@@@@@@@@@@@& |
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
#!/usr/bin/env python3 | |
""" | |
A userscript to display all things running on localhost. | |
Either that or to open up a localhost given a port as input. | |
""" | |
import os | |
from shlex import join | |
import psutil | |
from jinja2 import Template |
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 @chaoticvibing Twitter Blue Nerd - twitter.com | |
// @namespace Violentmonkey Scripts | |
// @match *://*.twitter.com/* | |
// @grant none | |
// @version 1.2.0 | |
// @author @chaoticvibing - GH @busybox11 - forked by GH @jso8910 | |
// @description 11/9/2022, 11:45:28 PM | |
// @updateURL https://gist.githubusercontent.com/jso8910/738753b00f4fbf850d2661deb0670a98/raw/2c228b25ddb1b36c22f3ad475ecb3f0dd8930660/twitterblue-nerd.js | |
// @downloadURL https://gist.githubusercontent.com/jso8910/738753b00f4fbf850d2661deb0670a98/raw/2c228b25ddb1b36c22f3ad475ecb3f0dd8930660/twitterblue-nerd.js |