Skip to content
View evaera's full-sized avatar
  • San Francisco
  • 18:09 (UTC -07:00)

Highlights

  • Pro

Organizations

@RoStrap @rojo-rbx

Block or report evaera

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.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse
evaera/README.md

Hi, I'm Eryn!

Pinned Loading

  1. matter matter Public archive

    A modern ECS library for Roblox.

    Lua 141 31

  2. roblox-lua-promise roblox-lua-promise Public

    Promise implementation for Roblox

    Lua 353 86

  3. plasma plasma Public archive

    A declarative, immediate mode UI widget library for Roblox.

    Lua 43 12

  4. Cmdr Cmdr Public

    Extensible command console for Roblox developers

    Luau 519 153

  5. moonwave moonwave Public

    Moonwave is a tool for generating documentation from comments in Lua source code.

    Rust 243 30

  6. Best Practices for Clean Code Best Practices for Clean Code
    1
    1. Use descriptive and obvious names.
    2
        - Don't use abbreviations, use full English words. `player` is better than `plr`.
    3
        - Name things as directly as possible. `wasCalled` is better than `hasBeenCalled`. `notify` is better than `doNotification`.
    4
        - Name booleans as if they are yes or no questions. `isFirstRun` is better than `firstRun`.
    5
        - Name functions using verb forms: `increment` is better than `plusOne`. `unzip` is better than `filesFromZip`.