Skip to content

Instantly share code, notes, and snippets.

View jamiephan's full-sized avatar
🎯
Focusing

Jamie Phan jamiephan

🎯
Focusing
View GitHub Profile
@jamiephan
jamiephan / README.md
Last active September 20, 2024 12:22
A script to automatically add ALL items to your account in quixel

Script to add all items from quixel

As quixel is being removed, all items are free to aquire. This script is to automate the process to add items to your account (As of writing, a total of 18874 items)

Note: This script only tested in the latest version of Chrome.

How to use

  1. Copy the script from below (run.js)
  2. Login into https://quixel.com
@jamiephan
jamiephan / Hidden.bat
Last active September 20, 2024 00:12
Launch a batch file without showing the window, within one file and without third-party tools
@echo off
if not "%1"=="Opened_Via_PS" (
pushd %~dp0
REM //TODO: Use Env variable instead of passing checking arg.
rem Adopted from https://superuser.com/questions/62525/run-a-batch-file-in-a-completely-hidden-way
rem The " ^" at the end is similar to " \" for multi-line scripts.
rem Extend the %1 %2 (%3...) below if you have multiple command line args.
powershell.exe -NoLogo -NoProfile -WindowStyle Hidden -NonInteractive -ExecutionPolicy Bypass -Command ^
"(New-Object -ComObject WScript.Shell).Run('\"%cd%\%~n0%~x0\" Opened_Via_PS %1 %2', 0, 'false')"