Skip to content

Instantly share code, notes, and snippets.

View seyukun's full-sized avatar
:shipit:
I may be slow to respond.

yush seyukun

:shipit:
I may be slow to respond.
  • Kalytero Inc. | Sakura internet Inc.
  • Japan Tokyo
  • 23:35 (UTC +09:00)
View GitHub Profile
@seyukun
seyukun / ipdatagram.go
Last active April 17, 2025 13:26
IP Datagram Visualizer
package visualizer
import (
"fmt"
"net"
"strings"
)
func centerString(s string, width int) string {
if len(s) >= width {
@seyukun
seyukun / tun.go
Created April 17, 2025 05:21
Go: Create TUN
package main
import (
"fmt"
"os"
"unsafe"
"golang.org/x/sys/unix"
)