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 ChatBots Query | |
// @namespace http://tampermonkey.net/ | |
// @version 0.2 | |
// @description try to take over the world! | |
// @author You | |
// @match https://gemini.google.com/app?q=* | |
// @match https://chat.deepseek.com/?q=* | |
// @match https://aistudio.google.com/prompts/new_chat?q=* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=google.com |
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
/** | |
* @name Dark Matter | |
* @author Tropical#8908, Hammock#3110 | |
* @version 3.0.0 | |
* @description A cold, dark & frosty theme. | |
* @source https://github.com/DiscordStyles/DarkMatter/ | |
*/ | |
@import url('https://DiscordStyles.github.io/DarkMatter/src/base.css'); |
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 BlockWebsite | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://discord.com/* | |
// @icon https://icons.duckduckgo.com/ip2/iconfinder.com | |
// @grant none | |
// @run-at document-start |
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 Discord Mimic | |
// @namespace Discord | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://discord.com/* | |
// @icon https://t1.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=http://discord.com | |
// @grant GM_xmlhttpRequest | |
// @grant GM.setValue |
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
console.log('>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>') | |
console.log('SEARCHING...') | |
console.log('-----------------------------------------------------------') | |
globalSearch(window, 'prØØf') | |
console.log('>>> D O N E >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>') | |
function globalSearch(startObject, value, returnFirstResult = false) { | |
var stack = [[startObject, '']] |
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 Discord Copy SRC ALT+C | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://discord.com/* | |
// @icon https://icons.duckduckgo.com/ip2/discord.com.ico | |
// @grant none | |
// ==/UserScript== |
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
:: paste one by one, you will receive questions for each. | |
openssl genrsa -out appname.key 2048 | |
openssl req -new -key appname.key -out appname.csr | |
openssl x509 -in appname.csr -out appname.crt -req -signkey appname.key -days 365 | |
openssl pkcs12 -export -out CERTIFICATE.pfx -inkey appname.key -in appname.crt | |
signtool sign /f "path\to\CERTIFICATE.pfx" /p "password" /t http://timestamp.digicert.com /fd SHA256 "path\to\executable.exe" |
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
class Globals { | |
static String iconCachePath = "${Directory.current.path}\\cache"; | |
} | |
class WinUtils { | |
static Future<List<String>> runPowerShell(List<String> commands) async { | |
final io.ProcessResult result = await io.Process.run( | |
'powershell', | |
<String>['-NoProfile', ...commands], | |
); |
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
else if (method_name.compare("iconToBytes") == 0) | |
{ | |
const flutter::EncodableMap &args = std::get<flutter::EncodableMap>(*method_call.arguments()); | |
std::string iconLocation = std::get<std::string>(args.at(flutter::EncodableValue("iconLocation"))); | |
int iconID = std::get<int>(args.at(flutter::EncodableValue("iconID"))); | |
std::wstring iconLocationW = Encoding::Utf8ToWide(iconLocation); | |
HICON icon = getIconFromFile((LPWSTR)iconLocationW.c_str(), iconID); | |
std::vector<CHAR> buff; |
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
#include <Windows.h> | |
#include <shellapi.h> | |
#include <iostream> | |
#include <fstream> | |
#include <vector> | |
using namespace std; | |
HICON getIconFromFile(wstring file, int index = 0) | |
{ | |
HICON hIcon; | |
LPWSTR filePath = const_cast<LPTSTR>(file.c_str()); |
NewerOlder