Skip to content

Instantly share code, notes, and snippets.

View tmatzxzone's full-sized avatar
:octocat:
Kluless

TmatzXzonEv tmatzxzone

:octocat:
Kluless
  • Malaysia
  • 10:04 (UTC +08:00)
View GitHub Profile
@tmatzxzone
tmatzxzone / null.cfg
Created April 10, 2026 19:38
Null bind cs2 no kappachungus
// null binds on WASD
joy_side_sensitivity 1
joy_forward_sensitivity 1
alias "+a" "rightleft -1 0 0; alias +d ad"
alias "left1" "rightleft -1 0 0; alias +d ad"
alias "ad" "rightleft 1 0 0; alias -d add; alias -a ada"
alias "-a" "rightleft 0 0 0; alias +d right1; alias -d right2; alias -a left2; alias +a left1"
alias "left2" "rightleft 0 0 0; alias +d right1; alias -d right2; alias -a left2; alias +a left1"
@tmatzxzone
tmatzxzone / download_gofile.sh
Last active December 5, 2024 17:15 — forked from Zorg64/download_gofile.sh
Bash script to download files from gofile.io
#!/bin/bash
# Prompts the user for a URL if not provided as a command-line argument.
# Extracts the ID from the given URL to use in API requests.
function promptForURL() {
local url="$1"
until [ -n "$url" ]; do
read -p "URL: " url
done
id=$(sed 's|.*gofile.io/d/||g' <<< "$url")
@tmatzxzone
tmatzxzone / autoexec.cfg
Last active April 10, 2026 19:38
Counter Strike 2 2026 Config
//Improve Fps Kot
cl_showhelp "0"
cl_lagcompensation "1"
cl_predictweapons "1"
cl_resend "6"
cl_timeout "9999999"
r_eyegloss "0"
r_eyemove "0"
r_eyeshift_x "0"
@tmatzxzone
tmatzxzone / pixeldrain.js
Last active April 10, 2026 19:36
Tampermonkey script to convert folder url to single url
// ==UserScript==
// @name Bypass pixeldrain download (gallery)
// @namespace http://tampermonkey.net/
// @match https://pixeldrain.com/l/*
// @grant none
// @version 2.0
// @author TmatzXzonEv
// ==/UserScript==
(function() {
'use strict';
@tmatzxzone
tmatzxzone / pixeldrain.js
Created March 20, 2024 19:57
Convert Pixeldrain Folder Link to Single link using browser console
// Extract file IDs and construct single URLs
const fileData = window.viewer_data.api_response.files;
const singleUrls = fileData.map(file => `https://pixeldrain.com/u/${file.id}`);
// Construct log message
const logMessage = ["Single URLs:"];
singleUrls.forEach(url => logMessage.push(url));
// Create a Blob containing the log message
const blob = new Blob([logMessage.join("\n")], { type: "text/plain" });