Skip to content
View kyosheek's full-sized avatar
⚙️
Open for part-time job opportunities
⚙️
Open for part-time job opportunities
Block or Report

Block or report kyosheek

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

Pinned

  1. svelte-grid svelte-grid Public

    Interactive grid implementation in Svelte

    Svelte 1

  2. ffxiv-gatheroute ffxiv-gatheroute Public

    Repository with FFXIV Gatheroute application source code

    Vue 1

  3. A script that adds smooth scroll to ... A script that adds smooth scroll to every anchor element with ID as href
    1
    Object.entries(document.querySelectorAll('[href^="#"]'))
    2
        .forEach(([ index, node ]) => {
    3
            node.addEventListener('click', (event) => {
    4
                event.preventDefault();
    5
    
                  
  4. YouTrack integration with Discord YouTrack integration with Discord
    1
    const entities = require('@jetbrains/youtrack-scripting-api/entities');
    2
    const http = require('@jetbrains/youtrack-scripting-api/http');
    3
    
                  
    4
    exports.rule = entities.Issue.onChange({
    5
      title: 'Sends message when new issue is created',