Skip to content
View NachoToast's full-sized avatar

Highlights

  • Pro

Organizations

@UoA-Discords
Block or Report

Block or report NachoToast

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
NachoToast/README.md

Pinned

  1. Jukebot Jukebot Public

    Yet another discord.js music bot.

    TypeScript 1

  2. Create an array of coordinate object... Create an array of coordinate objects {x, y} of points on a circle within set bounds.
    1
    function make_circle_coordinates(top = 0, left = 0, bottom = 300, right = 300, points = 20, visual = true) {
    2
        // e.g. top: 20, left: 20, right: 1900, bottom: 800
    3
        let center = {
    4
            x: (left + right) / 2,
    5
            y: (top + bottom) / 2
  3. Color gradient function for TypeScript. Color gradient function for TypeScript.
    1
    /** Valid values are from 0 to 255 (inclusive) */
    2
    export interface Colour {
    3
        red: number;
    4
        blue: number;
    5
        green: number;
  4. SimpleCustomGasFramework SimpleCustomGasFramework Public

    RimWorld modding framework for adding custom gasses.

    C# 2

  5. UoA-Discords/server-registry-api UoA-Discords/server-registry-api Public archive

    API for our UoA Discord server registry.

    TypeScript

  6. Verify a recaptcha v3 token. Verify a recaptcha v3 token.
    1
    <?php
    2
    function verify_captcha($token) {
    3
    
    
    4
        $threshold = 0.5; // Score must be > threshold to pass captcha.
    5
        // Default is 0.5, although the majority of users will get 0.9