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

Block or report yukiarimo

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 204 25

  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()];