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
diff --git a/gtk/gtkscrolledwindow.c b/gtk/gtkscrolledwindow.c | |
index f1b5b5112e0455d650fda8aed2c0ecf634ea94e7..252be9e2c217102e4e0e150b6bbd28b3ff9eb420 100644 | |
--- a/gtk/gtkscrolledwindow.c | |
+++ b/gtk/gtkscrolledwindow.c | |
@@ -1207,23 +1207,12 @@ check_update_scrollbar_proximity (GtkScrolledWindow *sw, | |
} | |
static double | |
-get_wheel_detent_scroll_step (GtkScrolledWindow *sw, | |
- GtkOrientation orientation) |
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
{ | |
pkgs ? import <nixpkgs> { }, | |
... | |
}: | |
let | |
llvm = pkgs.llvmPackages_18; | |
in | |
pkgs.mkShell { | |
buildInputs = [ |
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
:root { | |
--custom-app-top-bar-height: 0px; | |
} | |
button[aria-label="Send a gift"], | |
div[aria-label="Start Video Call"], | |
div[aria-label*="Show User Profile"], | |
a[href="https://support.discord.com"], | |
section[aria-label="Channel header"] > div > div > div[class*="divider"], | |
section[aria-label="Channel header"] > div > div > div[class*="nicknames"], |
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
pacman -Sy xorg plasma-desktop xorg-xinit | |
sleep 1 | |
echo "exec startkde" > ~/.xinitrc | |
sleep 1 | |
startx |
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
// original: https://forum.wearedevs.net/t/34472 | |
import { T_INT, T_STRING, openProcess, callFunction } from 'memoryjs' | |
const printOffset = 0x11686E0 | |
const robloxProc = openProcess('Windows10Universal.exe') | |
const printFunc = (printOffset - 0x400000) + robloxProc.modBaseAddr | |
const print = (message: string) => callFunction(robloxProc.handle, [ { type: T_INT, value: 0 }, { type: T_STRING, value: message } ], T_INT, printFunc) |
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 axios from 'axios' | |
class OpenChatBot { | |
constructor(botToken) { | |
this.botToken = botToken; | |
} | |
askBot = async (content) => { | |
const response = await axios.post('https://cloud.openchat.so/api/chat/send', JSON.stringify({ | |
from: 'user', |
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
{ | |
"Synapse": { | |
"updated": true, | |
"exploit_version": "v2.18.2b", | |
"roblox_version": "version-5e79a2caa8534595", | |
"last_update": "2022-08-14", | |
"last_update_unix": 1660514641 | |
}, | |
"Script-Ware": { | |
"updated": 3, |
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
-- Made by Whoman#3561 | |
local vim = game:GetService('VirtualInputManager') | |
input = { | |
hold = function(key, time) | |
vim:SendKeyEvent(true, key, false, nil) | |
task.wait(time) | |
vim:SendKeyEvent(false, key, false, nil) | |
end, | |
press = function(key) |