Skip to content
View ogatomo21's full-sized avatar

Block or report ogatomo21

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

小川 智也 / Tomoya Ogawa

Programmer / Blogger / Student

wakatime

Tomoya's GitHub stats Top Langs

Awards

  • Tech Kids Grand Prix 2023 総合優勝
  • OSAKA キッズプログラミングコンテスト 2023 最優秀賞

Links

Pinned Loading

  1. iepay iepay Public

    いえPay - 家庭・SOHO向けOSS決済システム

    PHP

  2. ogatomo21.github.io ogatomo21.github.io Public

    SNSリンク集もどき by Tomoya Ogawa

    HTML

  3. JavaScriptで数字1桁を2桁に変換するだけの1行スクリプト JavaScriptで数字1桁を2桁に変換するだけの1行スクリプト
    1
    const one2 = (num) => (num <= 9 ? `0${num}` : num);
  4. JavascriptでYYYY-MM-DD HH:MM:SSを簡単に取得... JavascriptでYYYY-MM-DD HH:MM:SSを簡単に取得するコード
    1
    const getYMD = () => {
    2
        const one2 = (num) => (num <= 9 ? `0${num}` : num);
    3
    
                  
    4
        const now = new Date();
    5
        const yy = now.getFullYear();
  5. renchinCalc renchinCalc Public

    レンチン電卓

    HTML