Skip to content
View AalbatrossGuy's full-sized avatar
🖥️
Programming Ofc
🖥️
Programming Ofc

Block or report AalbatrossGuy

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

Hi 👋 My name is AalbatrossGuy

Student Developer...

I am currently 18 years old and am interested in making my career in software development or A.I & Cloud Computing. I have learnt quite a few languages and tech stacks over the years and I'm proficient in most of them. I code because computer and programming is my first love and I have no intention of dropping it anytime.

  • 🌍  I'm based in Asia.
  • 🚀  I'm currently working on Glut.
  • 🧠  I'm learning the French Language (A2) and reviewing the concepts of C.
  • 🤝  Hit me up for any collaborative projects.
  • ⚡  Addicted to music and water.

Skills

C Python HTML5 CSS3 Flask Heroku Firebase PostgreSQL Django RustGNU BashVimNeovimFast APIMySQLDockerRaspberry Pi

Socials

Badges

Pinned Loading

  1. Glut Glut Public

    My own file cloud server written from scratch in python

    CSS

  2. Aurora Aurora Public

    Inspired by Delta but much better and advanced than Delta...

    Python

  3. pistonpy pistonpy Public

    An unofficial wrapper for Engineer Man's Piston API

    Python 3

  4. Uploading Large Files in Chunks via ... Uploading Large Files in Chunks via Flask
    1
    @app.route("/upload", methods=["GET", "POST"])
    2
    def upload():
    3
        if request.method =="POST":
    4
            for file in request.files: # Get the file using flask.request from your <input> tag 
    5
                if file.startswith('file'):
  5. How to create thumbnail of a video i... How to create thumbnail of a video in python using OpenCV & moviepy
    1
    from dotenv import load_dotenv
    2
    from moviepy import VideoFileClip
    3
    import cv2
    4
    
                  
    5
    def create_thumbnail(file) -> None: