Skip to content
View Airbus-A330's full-sized avatar
💀
Debugging...
💀
Debugging...

Organizations

@Flightex @aerex-bot
Block or Report

Block or report Airbus-A330

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

Welcome!

I am Airbus-A330 and I love making things. Check out some of my projects and try them out for yourself!

Project Description Link
Aerex My first Discord bot — a fun-filled multipurpose bot for your Discord! Invite
URL Shortener Lightweight URL Shortener API GitHub
Taylor Series Approximation for Pi Lightweight Pi approximation using arctan Taylor Series Gist
YouTube Shorts to Video UserScript Automatically convert YouTube Shorts to normal video format on the platform Gist

Hope to see you around!

Pinned

  1. gradebook gradebook Public

    AP Computer Science performance task

    JavaScript 5

  2. url-shortener url-shortener Public

    Small Express API for a URL shortener.

    JavaScript 3

  3. Tired of YouTube shorts? This will t... Tired of YouTube shorts? This will transform any YouTube short into a normal video. Paste this in Tampermonkey/Greasemonkey.
    1
    // ==UserScript==
    2
    // @name         Anti-Shorts
    3
    // @namespace    http://tampermonkey.net/
    4
    // @version      0.0.1
    5
    // @description  Tired of YouTube shorts? We are too! Transform any YouTube short into a normal video.
  4. Taylor Series Approximation for Pi Taylor Series Approximation for Pi
    1
    const pi = (iterations=10_000_000) => {
    2
      let π = 0.0; 
    3
    
                  
    4
      for (let i = 0; i < iterations; i++) {
    5
        let numerator = parseFloat(Math.pow(-1, i + 1));