Skip to content
View Scurvyez's full-sized avatar
🏠
Working from home
🏠
Working from home
Block or Report

Block or report Scurvyez

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Scurvyez/README.md

Steve's GitHub stats Top Langs

public class Steve 
{
    public string Name { get; set; } = "Steve";
    public string Pronouns { get; set; } = "He / Him";
    public string Occupation { get; set; } = "Hobbyist programmer by night, wildlife ecologist by day";
    public string Discord { get; set; } = "steveo.o";
    public Dictionary<string, string> LikesDislikes { get; set; } = new Dictionary<string, string>
    {
        { "Likes", "Programming, wildlife, shaders, black coffee, climbing, synthwave, nice people" },
        { "Dislikes", "Bugs in code, environmental degradation, movies with bad endings" }
    };
}

⭕ Example shader written in HLSL. My, somewhat decent, attempt at Diablo's health guage.

Rimworld Modding

public class RimworldModding
{
    public static void Main()
    {
        List<RimworldMod> mods = new List<RimworldMod>
        {
            new RimworldMod("Pixel Wizardry")
                .AddDescription(
                    "Adds accessibility support for persons with color blindness.",
                    "Adds several new shaders for Rimworld textures with blending effects."),

            new RimworldMod("Random Chance")
                .AddDescription(
                    "Adds many new events and or situations which occur randomly based on certain factors"),

            new RimworldMod("Steve's Animals (formerly Bastyon)")
                .AddDescription(
                    "Adds new animals with varied abilities and events.",
                    "New pawn graphics system with animated textures."),

            new RimworldMod("Steve's Walls")
                .AddDescription(
                    "Introduces new powered walls with customizable glowing colors.")

            new RimworldMod("Fireflies")
                .AddDescription(
                    "Adds glowing fireflies that spawn in groups at night.",
                    "Performance improvements in progress (possibly a whole rewrite)."),

            new RimworldMod("Bones")
                .AddDescription(
                    "Enhances pawns by adding all 206 human bones with fracture hediffs.",
                    "Birthed out of a bet in the Official Rimworld Discord server. :)"),

            new RimworldMod("Medieval Overhaul")
                .AddDescription(
                    "Contributed code for RPG-style lootable buildings on various items.")
        };
    }
}

Personal Projects

public class UnityShenanigans
{
    public static void Main()
    {
        List<UnityProject> projects = new List<UnityProject>
        {
            new UnityProject("Solar Systems")
                .AddDescription(
                    "A realistic yet random solar system generator.",
                    "Based on real-world math and current scientific knowledge of the universe."),
        };
    }
}

Help me fuel my late-night coding sessions ☕

ko-fi

Pinned Loading

  1. Solar-Systems Solar-Systems Public

    C# 2

  2. Matryx Matryx Public

    C#

  3. PixelWizardry PixelWizardry Public

    A framework or... utility mod of sorts for RimWorld. It add several new shaders to the game written in hlsl. :)

    C#

  4. RandomChance RandomChance Public

    C#

  5. StevesDoors StevesDoors Public

    C#

  6. StevesWalls StevesWalls Public

    This mod adds two new walls to the game, each with 7 different colors.

    C#