Skip to content
View na2hiro's full-sized avatar
💽
Remix!
💽
Remix!

Organizations

@indeedeng
Block or Report

Block or report na2hiro

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. Kifu-for-JS Kifu-for-JS Public

    JavaScriptで動く将棋の棋譜再生盤とそのブックマークレット `kifu-for-js`、JSON棋譜フォーマット(JKF)の定義とKIF, KI2, CSAからの変換ライブラリ `json-kifu-format`、将棋のモデル`shogi.js`を含むmonorepo

    TypeScript 109 16

  2. json-kifu-format json-kifu-format Public archive

    JSON棋譜フォーマット(JKF)の定義とKIF, KI2, CSAからの変換ライブラリ

    TypeScript 83 13

  3. remix-auth-twitter remix-auth-twitter Public

    Remix Auth plugin for Twitter OAuth 2.0 & 1.0a

    TypeScript 17 5

  4. namespaced-fieldset namespaced-fieldset Public

    A tiny React utils which gives uncontrolled `<input>` elements a power of namespaces, and allows constructing complex objects

    TypeScript 13

  5. Remix request cheatsheet Remix request cheatsheet
    1
    # Remix request cheatsheet
    2
    |Navigates?|declarative?|Makes GET, triggers loader|Makes POST, triggers action|No requests
    3
    |-----------|------------|--------------------------|---------------------------|-----------
    4
    |navigates|declarative|[`<Link to="">`](https://remix.run/docs/en/v1/api/remix#link)<br>[`<Form method="get">`](https://remix.run/docs/en/v1/api/remix#form)|[`<Form method="post">`](https://remix.run/docs/en/v1/api/remix#form)|[`<Link to="#...">`](https://remix.run/docs/en/v1/api/remix#link)|
    5
    |navigates|imperative|[`navigate()`](https://remix.run/docs/en/v1/other-api/react-router)<br>[`setSearchParams()`](https://reactrouter.com/docs/en/v6/api#usesearchparams)|[`submit()`](https://remix.run/docs/en/v1/api/remix#usesubmit)|[`navigate("#")`](https://remix.run/docs/en/v1/other-api/react-router)|