Skip to content
View vlucas's full-sized avatar
🗯️
It's either a binary trap, or it's not.
🗯️
It's either a binary trap, or it's not.

Highlights

  • Pro

Organizations

@brightbit @alloyphp @stackboxcms

Block or report vlucas

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

Pinned Loading

  1. hyperspan hyperspan Public

    Hyperspan Web Framework

    JavaScript 2

  2. phpdotenv phpdotenv Public

    Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.

    PHP 13.4k 644

  3. sheetquery sheetquery Public

    Query Builder/ORM for Google Sheets

    TypeScript 88 12

  4. valitron valitron Public

    Valitron is a simple, elegant, stand-alone validation library with NO dependencies

    PHP 1.6k 255

  5. frisby frisby Public

    Frisby is a REST API testing framework built on Jest that makes testing API endpoints easy, fast, and fun.

    JavaScript 1.5k 201

  6. Stronger Encryption and Decryption i... Stronger Encryption and Decryption in Node.js
    1
    import { createCipheriv, createDecipheriv, randomBytes } from "crypto";
    2
    
                  
    3
    const ENCRYPTION_KEY: string = process.env.ENCRYPTION_KEY || ""; // Must be 256 bits (32 characters)
    4
    const IV_LENGTH: number = 16; // For AES, this is always 16
    5