Skip to content

Instantly share code, notes, and snippets.

View jeongseup's full-sized avatar
🏃‍♂️
Running

Jeongseup jeongseup

🏃‍♂️
Running
View GitHub Profile
@jeongseup
jeongseup / spec.md
Last active January 7, 2026 07:40
spec

Social Persona Card System – Specification

Overview

This system extends the existing miniapp (BaseCord-style card) by:

  • Continuously collecting Farcaster activity for registered users (by fid).
  • Analyzing that activity into a structured social persona and metrics for self-promotion / simple CV.
  • Generating visual cards (like the existing design) driven by this structured data.
@jeongseup
jeongseup / toss-frontend-rules.mdc
Created September 15, 2025 15:02 — forked from toy-crane/toss-frontend-rules.mdc
토스 프론트엔드 가이드라인 기반으로 만든 Cursor rule
# Frontend Design Guideline
This document summarizes key frontend design principles and rules, showcasing
recommended patterns. Follow these guidelines when writing frontend code.
# Readability
Improving the clarity and ease of understanding code.
@jeongseup
jeongseup / nomad-architecture.md
Last active May 7, 2025 06:28
Scalable Nomad Architecture

Scalable Nomad Architecture Evolution (Multi-Client / Global Ready)

Initial Setup

  • Nomad Server: 1
  • Nomad Clients: 3
  • Use Case: Service discovery + load balancing with automatic failover

Before Failover

@jeongseup
jeongseup / .golangci.yml
Created April 29, 2025 07:05 — forked from maratori/.golangci.yml
Golden config for golangci-lint
# This file is licensed under the terms of the MIT license https://opensource.org/license/mit
# Copyright (c) 2021-2025 Marat Reymers
## Golden config for golangci-lint v2.1.5
#
# This is the best config for golangci-lint based on my experience and opinion.
# It is very strict, but not extremely strict.
# Feel free to adapt it to suit your needs.
# If this config helps you, please consider keeping a link to this file (see the next comment).
@jeongseup
jeongseup / memo.md
Last active September 3, 2025 03:01
Hyperliquid Testnet Validator Infos

Hyperliquid Testnet Validator Infos

Intro

Hello, I'm Jeongseup from Cosmostation.

This document is for sharing some information to prepare hyperliquid network joining as one of validators like us.

As you know, there is an offical docs link: https://github.com/hyperliquid-dex/node , But I wanted to share some personal experiences and insights to newbies like us :)

@jeongseup
jeongseup / gameSummary.json
Created May 30, 2024 15:47
GameSummaryDataSample
{
"metadata": {
"name": "Arcade Champion",
"imageUrl": "https://strapi-dev.scand.app/uploads/Arcade_Champion_Logo_2a24858b47.jpeg",
"explorerUrl": "https://suiscan.xyz/mainnet/object/0xf09c99aa87a706c4f010c8c6b86d0249ccf670a138dcbcc7af9f4da8573019fe",
"homePage": "https://www.bluejaygames.com",
"discord": "https://discord.com/invite/f9wUxgWSZJ",
"twitter": "https://x.com/BlueJayGamesInc"
},
"users": [
@jeongseup
jeongseup / sui-cli-helper
Created May 24, 2024 10:00
Sui CLI Helper
# simple test
sui move test
# The previous command runs all tests whose name contains sword.
sui move test sword
sui move test -h
# list envs
@jeongseup
jeongseup / Golang Anypb Testing Code
Last active March 5, 2024 05:56
Golang Anypb Testing Code
# Reademe
set your private key and validator address as a env. (If you don't know where your private key is, it is in a file called validator.key. or it should also be included in the mail you received during onboarding. )
PRIVATE_KEY="PUT YOUR PRIVATE KEY HERE"
VAL_ADDRESS="PUT YOUR VALIDATOR ADDRESS HERE"
All steps are necessary.
- Step 1