Skip to content

Instantly share code, notes, and snippets.

View Valium007's full-sized avatar
🔮
Focusing

Valium007

🔮
Focusing
  • Earth
  • 03:28 (UTC +05:30)
View GitHub Profile
#!/usr/bin/env bash
WORK_DIR=$GITHUB_WORKSPACE
VERSION=1
LLVM_VERSION=17
cd $WORK_DIR
wget https://snapshots.linaro.org/gnu-toolchain/12.3-2023.06-1/arm-linux-gnueabihf/gcc-linaro-12.3.1-2023.06-x86_64_arm-linux-gnueabihf.tar.xz
tar -xf *.xz
rm *.xz
@Valium007
Valium007 / Discord Token Login Tool.txt
Created October 13, 2021 05:32
Simple script to login discord account with token
javascript:function login(token) { setInterval(() => { document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"` }, 50); setTimeout(() => { location.reload(); }, 2500); } function NEWTOKEN(){ var NEW = prompt("Enter the token to login :)"); return NEW } login(NEWTOKEN())