Skip to content

Instantly share code, notes, and snippets.

let ct = {
host: null,
file: null,
sitekey: null,
a11y_tfe: null,
pingdom:
"safari" === tt.Browser.type &&
"windows" !== tt.System.os &&
"mac" !== tt.System.os &&
"ios" !== tt.System.os &&
import java.io.ByteArrayOutputStream;
import java.util.zip.DataFormatException;
import java.util.zip.Inflater;
public class Main {
private static byte[] Decompress(byte[] value) throws DataFormatException {
ByteArrayOutputStream output_stream = new ByteArrayOutputStream(value.length);
Inflater decompressor = new Inflater(true);
try {
decompressor.setInput(value);
@ad044
ad044 / quixel.py
Last active October 4, 2024 21:34
A script to download all assets from Quixel (not properly tested/incomplete)
import requests
import time
token = TOKEN
def get_assets(page):
url = "https://6UJ1I5A072-2.algolianet.com/1/indexes/assets/query?x-algolia-application-id=6UJ1I5A072&x-algolia-api-key=e93907f4f65fb1d9f813957bdc344892"
params = {
"page": page,