- Finder > Preferences > Advanced > Show All Filename Extensions
- Source Code Pro (must be installed from google fonts or else vs code breaks) : https://fonts.google.com/specimen/Source+Code+Pro
| # aliases | |
| alias ll='ls -al' | |
| alias g='./gradlew' | |
| alias check8080='lsof -i -n -P | grep TCP | grep 8080' | |
| # lol osx | |
| export BASH_SILENCE_DEPRECATION_WARNING=1 | |
| # colors plz | |
| set TERM xterm-256color; export TERM |
| using UnityEngine; | |
| namespace FBD | |
| { | |
| public static class Extensions | |
| { | |
| public static Transform FindInHierarchy(this Transform t, string name) | |
| { | |
| for (int c = 0; c < t.childCount; c++) | |
| { |
| using UnityEngine; | |
| using System.Collections; | |
| public class Screenshake : MonoBehaviour | |
| { | |
| public float shakeAmount = 0.7f; | |
| public float decreaseFactor = 1.0f; | |
| private float shake; | |
| private bool shakeEnded = true; |
| [ | |
| { | |
| "hex": "#EFDECD", | |
| "name": "Almond", | |
| "rgb": "(239, 222, 205)" | |
| }, | |
| { | |
| "hex": "#CD9575", | |
| "name": "Antique Brass", | |
| "rgb": "(205, 149, 117)" |