8000 AalbatrossGuy (AG) ยท GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
View AalbatrossGuy's full-sized avatar
๐Ÿ–ฅ๏ธ
Programming Ofc
๐Ÿ–ฅ๏ธ
Programming Ofc

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.

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. 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 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.
  • ๐Ÿ“ Checkout my gists

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:
  6. Extracting Signatures in Python (Bot... Extracting Signatures in Python (Both Digital and Image)
    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>
0