Skip to content
View yukiarimo's full-sized avatar
🖥️
Coding
🖥️
Coding

Sponsoring

@unslothai

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 there 👋

Pinned Loading

  1. yuna-ai yuna-ai Public

    Yuna Ai is a companion who joins me on the life-long journey of the Yuki Story project, and now travels with me as I explore the mysteries of this world and beyond.

    JavaScript 200 21

  2. aiflow aiflow Public

    Python library for LLM AI model evaluation and data management

    Python 8 1

  3. yukiarimo yukiarimo Public

    GitHub Profile Text

    1

  4. Web novel Downloader Web novel Downloader
    1
    function extractAndDownloadAllChapters() {
    2
      // Find all containers that hold chapter text
    3
      const chapterContainers = document.querySelectorAll('.cha-words');
    4
    
                  
    5
      // Initialize an array to hold all chapter texts
  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()];