Skip to content

Instantly share code, notes, and snippets.

View Sewer56's full-sized avatar

Sewer. Sewer56

View GitHub Profile
# Install Steps
This is a log of installation steps to set up Arch on my machine. For future keeping.
## Install Arch
```bash
pacman -S archinstall
archinstall
```
@Sewer56
Sewer56 / gist:4da6235c27ce71116c04f6fe0c147819
Created September 2, 2022 14:01
Sonic Riders Direct 2.0 Rant
Hi.
Since a screenshot of me has been included in this video (12:40), I feel like I'm inclined to comment; as I'm not very happy about it.
Before I start, I want to make it very clear. I speak on behalf of myself; not ExGearLabs or their development team. I've been generally uninvolved with Riders for a while now; and not part of any Riders server or dev group for 4 months at this point.
I'll start with the non-personal reasons.
I'm not very fond of a statement that I made (while emotionally extremely unstable); being used to misrepresent the actual situation at hand. With regards to the exporter; the communication has always been clear from the very beginning: It will be PUBLICLY released, when it is sufficiently done; that is the response anyone asking received. I have also made it EXTREMELY CLEAR that I would make an exporter myself should there have been no plans for a public release. This same information was also conveyed to the SRTE team, for example in this https://i.imgur.com/qz8vSUP.png conve
@Sewer56
Sewer56 / Enum.cs
Last active June 28, 2020 22:10
Example: Generic Enum with Implicit Conversion
using System;
using System.Diagnostics;
using System.Runtime.CompilerServices;
namespace Riders.Tweakbox.Misc
{
public struct Enum<T> where T : unmanaged, Enum
{
public T Value;