Skip to content
View yukiarimo's full-sized avatar
πŸ–₯️
Coding
πŸ–₯️
Coding
Block or Report

Block or report yukiarimo

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

Hi πŸ‘‹, I'm Yuki Arimo

A JavaScript full-stack Developer, and a philosophy Vtuber from Canada.

yukiarimo

🌐 Socials:

Discord Medium Reddit Stack Overflow Twitch Twitter YouTube Codepen

πŸ’» Tech Stack:

CSS3 HTML5 Java JavaScript Markdown Python PowerShell TypeScript Swift Windows Terminal Heroku Firebase Anaconda Electron.js Express.js Flask jQuery NPM NodeJS Nodemon React Qt Socket.io Vite WordPress Apache Firebase MySQL Adobe Gimp Inkscape Krita Figma Adobe Photoshop Adobe Lightroom PyTorch Docker Docker CMake Postman TOR

πŸ“Š GitHub Stats:




πŸ† GitHub Trophies

✍️ Random Dev Quote

πŸ’° You can help me by Donating

Patreon

Pinned

  1. yuna-ai yuna-ai Public

    Your Private Companion. The future AGI takeover starts here!

    HTML 69 8

  2. solo-leveling solo-leveling Public

    System for self leveling up

    CSS 1

  3. yukiarimo yukiarimo Public

    This is my main portfolio

    HTML 2

  4. kawai-framework kawai-framework Public

    Cross platform native CSS and HTML library

    JavaScript 2

  5. Unix time converter Unix time converter
    1
    function timeConverter(UNIX_timestamp){
    2
        var a = new Date(UNIX_timestamp * 1000);
    3
        var months = ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'];
    4
        var year = a.getFullYear();
    5
        var month = months[a.getMonth()];
  6. Character AI Dialog Extractor Character AI Dialog Extractor
    1
    import json
    2
    from bs4 import BeautifulSoup
    3
    
                  
    4
    with open("Main - Rushia Uruha.html") as fp:
    5
        soup = BeautifulSoup(fp, "html.parser")