Skip to content

Instantly share code, notes, and snippets.

View clixmods's full-sized avatar
🍊

Clément "Clix" GARCIA clixmods

🍊
View GitHub Profile
@clixmods
clixmods / steam_comments.py
Created July 29, 2025 06:43
Small Python CLI that downloads all comments from a Steam Workshop item (handles pagination, auto-installs requests, beautifulsoup4, tqdm).
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Download **all** comments from a Steam Workshop item.
Example usage
-------------
python steam_comments.py 2180904327 --out nuketown.json
"""
@clixmods
clixmods / UIBlur.shader
Created May 15, 2025 16:56 — forked from JohannesMP/UIBlur.shader
UI.Image Blur Shader with layering and masking support
Shader "Custom/UIBlur"
{
Properties
{
[Toggle(IS_BLUR_ALPHA_MASKED)] _IsAlphaMasked("Image Alpha Masks Blur", Float) = 1
[Toggle(IS_SPRITE_VISIBLE)] _IsSpriteVisible("Show Image", Float) = 1
// Internally enforced by MAX_RADIUS
_Radius("Blur Radius", Range(0, 64)) = 1