Skip to content

Instantly share code, notes, and snippets.

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

TmatzXzonEv tmatzxzone

:octocat:
Kluless
View GitHub Profile
@tmatzxzone
tmatzxzone / download_gofile.sh
Last active May 24, 2024 01: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
Created May 7, 2024 22:33
Counter Strike 2 Config
//De sub tick cs2
//exec de_subtick_01.cfg
alias +jump_ "+jump;+jump"
alias -jump_ "-jump;-jump;-jump"
alias +forward_ "+forward;+forward"
alias -forward_ "-forward;-forward;-forward"
alias +left_ "+left;+left"
alias -left_ "-left;-left;-left"
alias +back_ "+back;+back"
@tmatzxzone
tmatzxzone / pixeldrain.js
Last active April 13, 2024 01:33
Tampermonkey script to convert folder url to single url
// ==UserScript==
// @name Convert pixeldrain Folder link to Single Link
// @namespace http://tampermonkey.net/
// @match https://pixeldrain.com/l/*
// @grant none
// @version 1.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" });