Skip to content

Instantly share code, notes, and snippets.

@ProGM
ProGM / find_useless_resources_unity.sh
Last active January 8, 2022 10:04
A useful script to identify Unity resource that are not referenced in the project
#!/bin/bash
GREEN='\033[0;32m'
RED='\033[0;31m'
YELLOW='\033[0;33m'
NC='\033[0m'
rm unused_files.log &> /dev/null
grep -r . --include=\*.meta --exclude=*{Editor,Gizmos}* -e 'guid' | while read line; do
#!/usr/bin/env python
"""
This is a super dumb script to test pytables write speeds/compression ratios
for various algorithms and various data sparsities.
TJL Feb 2014
"""
import os