Skip to content

Instantly share code, notes, and snippets.

View yodogawa404's full-sized avatar

Shion Takeuchi yodogawa404

View GitHub Profile
@yodogawa404
yodogawa404 / index.html
Last active July 8, 2023 19:33
制御文字バリデーションツール
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
</head>
<body>
<h1>制御文字バリデーションツール</h1>

Keybase proof

I hereby claim:

  • I am yodogawa404 on github.
  • I am yodogawa404 (https://keybase.io/yodogawa404) on keybase.
  • I have a public key ASDgnS2SEbCUQlkspBxDYAgNvy3DDojI2KI4snfrKXpgSQo

To claim this, I am signing this object:

@yodogawa404
yodogawa404 / 10to16.go
Last active January 11, 2021 20:43
Goの練習で作った10進数を16進数に変換するやつ
package main
import (
"fmt"
"os"
"strconv"
)
func main() {
fmt.Println("10to16 by yodogawa404\n10進数を16進数に変換\n")