Skip to content

Instantly share code, notes, and snippets.

View conradogarciaberrotaran's full-sized avatar
🦆

Conrado García Berrotarán conradogarciaberrotaran

🦆
View GitHub Profile
@mgaitan
mgaitan / autofactory.py
Last active December 9, 2023 16:16
Automatically define factory boy recipes for dataclasses by inspecting the type annotations
## See https://github.com/FactoryBoy/factory_boy/issues/836
import inspect
from typing import List, get_args, get_origin
import factory
import factory.fuzzy
from dataclasses import dataclass, Field, MISSING, is_dataclass
from enum import Enum
from datetime import date, datetime
from decimal import Decimal
@apollyon600
apollyon600 / ModdingTutorial.md
Last active March 24, 2024 12:33
This is a quick tutorial using Harmony, you can come here after you've created your first mod in https://docs.reactor.gg/

Welcome to Apollo's Little Guide on how to start modding! And no I don't plan to make a video on this.

This is a tutorial after 5 days of modding, I may get some terms wrong

Yes, if you are determined you can understand a lot instead of asking for a spoonfeed

Let's get started! Head on to https://docs.reactor.gg and follow the documentation, come back here after you've got your first mod created!

Before getting into modding