Skip to content

Instantly share code, notes, and snippets.

View HarkTu's full-sized avatar

Shtiliyan Karamfilov HarkTu

View GitHub Profile
@wikiti
wikiti / !FAB-CLAIM-README.md
Last active March 22, 2025 19:24
A script to automatically add all Quixel MegaScans items to your FAB account

Important

As per the beginning of 2025, Quixel assets are no longer free to claim, so this script is not useful anymore.

Note

This script was built for educational purposes. Due to how FAB APIs are built to handle search pagination, all assets might not be claimable through this script. With the last script update, a total of ~600 scanned pages, with ~14k assets. Please note that, by clicking on the "Claim All" quixel button, you'll already have claimed all assets for future free usage, beyond 2024 (official response). This script simply makes sure that assets are added to a library.

Script to add all quixel megascan items to your FAB account

As quixel megascan items will stop being free after 2024. So, this script will go through all Quixel MegaScan items and add them to your account. Quixel would be working on a tool to automatically add all resources to you

@jamiephan
jamiephan / README.md
Last active April 3, 2025 11:10
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
@sgeraldes
sgeraldes / Check-Nahimic.ps1
Last active March 9, 2025 23:17
Disable Nahinic Service
# Check Nahimic service status
$nahimicService = Get-Service -Name "Nahimic service" -ErrorAction SilentlyContinue
if ($nahimicService) {
if ($nahimicService.Status -eq "Running") {
Write-Host "Nahimic service is currently running." -ForegroundColor Yellow
Write-Host "Advice: If you're experiencing issues related to Nahimic or high CPU/RAM usage, consider stopping and disabling the service."
}
else {
Write-Host "Nahimic service is present but currently not running." -ForegroundColor Green
@scarpa27
scarpa27 / menu.reg
Created June 11, 2022 11:59
add jetbrains context menu open folder as project toolbox ide subitem
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\JetBrains]
"Icon"="C:\\Users\\%username%\\AppData\\Local\\JetBrains\\Toolbox\\bin\\jetbrains-toolbox.exe"
"MUIVerb"="JetBrains"
"Position"="Top"
"SubCommands"="JBRIDER;JBIDEA;JBSTUDIO"