Skip to content
View AalbatrossGuy's full-sized avatar
πŸ–₯️
Programming Ofc
πŸ–₯️
Programming Ofc
  • Freelancer

Sponsoring

@tiangolo
@pwndbg
@4ngel2769

Highlights

  • Pro

Organizations

@open-clm-suite

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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 19 years old and am interested in making my career in software development and/or Cloud Computing. I have been programming since I was 13 and 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 are my first love and I have no intention of dropping it anytime. If my contribution graph is empty, it doesn't mean I'm slacking off, it just means that I'm contributing to private repos 😌

β†’Β I'm based in Asia.
β†’ I'm currently working on AvroMan.
β†’ I'm learning the French Language (A2) and learning about Computer Networks.
β†’ Hit me up for any collaborative projects.
β†’ Addicted to music and water.
β†’ Checkout my gists.
β†’ Checkout my server config file.

Skills

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

Socials

Github Stats




Pinned Loading

  1. Glut Glut Public

    My own file cloud server written from scratch in python

    CSS 1

  2. Pistony Pistony Public

    A Python wrapper for Engineer Man's Piston. A high performance general purpose code execution engine.

    Python 2

  3. DocNerd DocNerd Public

    An AI docstring generator because I find writing docstrings a big bore

    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:
  6. Extracting Signatures from PDFs Extracting Signatures from PDFs
    1
    # Signature Extraction From PDFs
    2
    
                  
    3
    - Related Links: [Link #1](https://stackoverflow.com/questions/72556172/how-to-locate-digital-signatures-in-pdf-files-with-python) [Link #2](https://pypi.org/project/signature-detect/) [Link #3](https://github.com/jsvine/pdfplumber/issues/756)
    4
    
                  
    5
    The core principle behind extracting a signature from a PDF involves identifying and isolating the signature's visual representation, whether it's a digitally embedded signature or a scanned image of a handwritten signature.<br>