Skip to content

Instantly share code, notes, and snippets.

Switch BWT at (951, 390) is connected to MNP, KSD, XEV, DOV, MFX, UAZ, SSZ, YUB
Switch PNL at (448, 791) is connected to MGX, ZNN, DUB, RWL, RIV, FOW
Switch EYE at (407, 292) is connected to MJX, RIY, KSP, FGD, QQS, LXJ, JUU
Switch TLX at (123, 380) is connected to HFK, PPQ, DKB, FDI, YZV, YGR, ZVK, FJX, COJ
Switch QRA at (127, 50) is connected to BUN, DGY, HLA, KWO, IOM, SBM, EGX, NBG, TXS
Switch JEQ at (145, 752) is connected to DLB, EAW, YAQ, UST, JAD, AJI, LYJ, VPR, VVC
Switch RZI at (383, 529) is connected to GRA, SIW, NFS, AKL, GWO, LMG, THB
Switch ADW at (609, 361) is connected to NHY, DTI, OOY, LDU, RKJ, IDK, XEF, CAG, GGZ, XXQ, YTE
Switch XNK at (630, 63) is connected to EJC, BUH, OAN, FFP, ONB
Switch JTG at (238, 981) is connected to SJW, HXJ, FQB, GDT, TUA
@cjddmut
cjddmut / EasingFunctions.cs
Last active August 11, 2025 10:50
Easing Functions for Unity3D
/*
* Created by C.J. Kimberlin
*
* The MIT License (MIT)
*
* Copyright (c) 2019
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
@maartenl
maartenl / List.java
Created November 20, 2012 08:00
An example of an iteration over a synchronized list, found in the javadoc.
List list = Collections.synchronizedList(new ArrayList());
synchronized (list) {
Iterator i = list.iterator(); // Must be in synchronized block
while (i.hasNext())
foo(i.next());
}