Skip to content

Instantly share code, notes, and snippets.

View theoseo's full-sized avatar

Suhong Seo theoseo

View GitHub Profile
@theoseo
theoseo / TAILSCALE_WSL2_SETUP.md
Created February 1, 2026 07:48
[한글/Korean] OpenClaw + WSL2 + Tailscale Setup Guide

WSL2 + Tailscale + OpenClaw 설정 가이드

WSL2 환경에서 Tailscale을 통해 OpenClaw 원격 접속


구성 방법

외부 PC (Tailscale)
@theoseo
theoseo / TAILSCALE_WSL2_SETUP.en.md
Created February 1, 2026 07:44
[English] OpenClaw + WSL2 + Tailscale Setup Guide

WSL2 + Tailscale + OpenClaw Setup Guide

Remote access to OpenClaw on WSL2 via Tailscale


Architecture

Remote PC (Tailscale)
@theoseo
theoseo / install_docker-ce.sh
Last active September 25, 2018 14:22
install docker-ce
sudo apt-get update
sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo apt-key fingerprint 0EBFCD88
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
@theoseo
theoseo / install_gcloud_sdk.sh
Last active September 18, 2018 03:05
shell for install google cloud sdk in ubuntu
#https://cloud.google.com/sdk/docs/#deb
#curl, gnupg etc must be installed
export CLOUD_SDK_REPO="cloud-sdk-$(lsb_release -c -s)"
echo "deb http://packages.cloud.google.com/apt $CLOUD_SDK_REPO main" | sudo tee -a /etc/apt/sources.list.d/google-cloud-sdk.list
curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -
sudo apt-get update && sudo apt-get install google-cloud-sdk
@theoseo
theoseo / pg-pong.py
Created August 7, 2017 07:49 — forked from karpathy/pg-pong.py
Training a Neural Network ATARI Pong agent with Policy Gradients from raw pixels
""" Trains an agent with (stochastic) Policy Gradients on Pong. Uses OpenAI Gym. """
import numpy as np
import cPickle as pickle
import gym
# hyperparameters
H = 200 # number of hidden layer neurons
batch_size = 10 # every how many episodes to do a param update?
learning_rate = 1e-4
gamma = 0.99 # discount factor for reward