Skip to content

Instantly share code, notes, and snippets.

View WizardCell's full-sized avatar
🏠
Working from home

Mohammad Mossa WizardCell

🏠
Working from home
View GitHub Profile
template <class T>
void ShuffleArray(T& InArray)
{
const int32 LastIndex = InArray.Num() - 1;
for (int32 i = 0; i < LastIndex; ++i)
{
int32 Index = FMath::RandRange(0, LastIndex);
if (i != Index)
{
InArray.Swap(i, Index);
@pethaniakshay
pethaniakshay / ccleaner serial keys.txt
Created May 28, 2019 17:23 — forked from azizurrehman/ccleaner serial keys.txt
CCleaner 5.13.5460 Serial Keys Free
C2YW-IAHG-ZU62-INZQ-WZPC
C2YW-2BAM-ADC2-89RV-YZPC
C2YW-XFCX-ABIG-GZD4-8ZPC
C2YW-XK32-GBVV-N3BH-2ZPC
C2YW-JKW5-KK79-XHR2-4ZPC
C2YW-QTRT-ZVCG-PQDK-CZPC
C2YW-GP33-TPIU-BGM8-AZPC
Source: http://windowsloaders.com/ccleaner-professional-plus-crack-for-windows/
@maxtruxa
maxtruxa / Antonyms.md
Last active September 1, 2025 15:35
A list of common terms used in programming and their respective antonyms.

Antonym List

Note: The table headings (positive/negative) are not necessarily meaningful.

Positive Negative
acquire release
add remove (e.g. an item), subtract (arithmetic)
advance retreat
allocate deallocate (correct), free (common)
allow deny