Skip to content

Instantly share code, notes, and snippets.

View eugenekolo's full-sized avatar
🛠️
Building the next great thing

Eugene Kolo eugenekolo

🛠️
Building the next great thing
View GitHub Profile
@SeanSullivan86
SeanSullivan86 / TreasureClassDropper.cpp
Created October 5, 2022 23:00
D2 TreasureClassDropper
#include "D2Structs.h"
#include <WinDef.h>
void __fastcall TreasureClassDropper_0055a6d0
(D2GameStrc* pGame, D2UnitStrc* pItemDropper, D2UnitStrc* pItemReceiver, D2TCExShortStrc* pParentTC,
uint presetQuality, uint ilvl, BOOL ignoreNoDrop, D2UnitStrc** pOutput, uint* itemCount, uint maxItems) {
D2Assert(pParentTC != nullptr, 0xf3a);
D2Assert(pOutput == nullptr || maxItems > 0, 0xf44);
@jbenet
jbenet / simple-git-branching-model.md
Last active March 12, 2024 12:16
a simple git branching model

a simple git branching model (written in 2013)

This is a very simple git workflow. It (and variants) is in use by many people. I settled on it after using it very effectively at Athena. GitHub does something similar; Zach Holman mentioned it in this talk.

Update: Woah, thanks for all the attention. Didn't expect this simple rant to get popular.