Filter | Description | Example |
---|---|---|
allintext | Searches for occurrences of all the keywords given. | allintext:"keyword" |
intext | Searches for the occurrences of keywords all at once or one at a time. | intext:"keyword" |
inurl | Searches for a URL matching one of the keywords. | inurl:"keyword" |
allinurl | Searches for a URL matching all the keywords in the query. | allinurl:"keyword" |
intitle | Searches for occurrences of keywords in title all or one. | intitle:"keyword" |
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 # dependency | |
url = "<your url>" # webhook url, from here: https://i.imgur.com/f9XnAew.png | |
# for all params, see https://discordapp.com/developers/docs/resources/webhook#execute-webhook | |
data = { | |
"content" : "message content", | |
"username" : "custom username" | |
} |
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
# Use this to block Spotify ad servers | |
# sources: | |
# https://www.reddit.com/r/Piracy/comments/4kn6rq/comprehensive_guide_to_blocking_ads_on_spotify/ | |
# https://gist.github.com/teomaragakis/cb187d880c9a3ca2c8a2 | |
# https://gist.github.com/Shujito/b7a8f8f971b22f49b4313d7d3e8e6931 | |
# https://gist.github.com/rifkyekayama/f7c43e470f23878b20416e68f73829dc | |
# https://gist.github.com/shokoylele/8f4160a102480471cb946fbd800bc86a | |
############## Begin manual list | |
# 127.0.0.1 spclient.wg.spotify.com # might block the entire Spotify app from working too |
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
#include <iostream> | |
#include <string> | |
#include <windows.h> | |
enum color { red = 12, yellow = 14, white = 15, DEFAULT_VALUE = 7 }; | |
const char* ERROR_LABEL = "[ERR]"; // error | |
const char* WARNING_LABEL = "[WARN]"; // warning | |
const char* INFO_LABEL = "[INFO]"; // info |