╭─ SSH Connection Established ────────────────────────────────╮
│ tsing@github.com:22 [authenticated via key] ████████ 100% │
╰─────────────────────────────────────────────────────────────╯

Last login: $(date) from 192.168.1.1 ╭─[tsing@devbox]─[~/github.com/portfolio] 🐉 ╰─$ neofetch --ascii_distro arch --colors 2 7 4 6 1 7
╭─[tsing@devbox]─[~/metrics]
╰─$ ./system_analytics.py --live --export=github
╭─[tsing@devbox]─[~/containers]
╰─$ docker ps -a --format "table {{.Names}}\t{{.Status}}\t{{.Ports}}"
🐳 Container Orchestration Status click to expand
# docker-compose.dev.yml
version: '3.8'
services:
# Core Development Stack
python-env:
image: python:3.11-alpine
container_name: py_learning_env
status: Up 247 days (healthy) 🟢
volumes: [./src:/workspace]
command: ["python", "-c", "while True: learn()"]
java-workshop:
image: openjdk:17-jdk-alpine
container_name: java_compiler
status: Up 180 days (building) 🔨
environment:
- JAVA_OPTS=-Xmx2g -XX:+UseG1GC
typescript-engine:
image: node:18-alpine
container_name: ts_transpiler
status: Up 156 days (compiling) ⚡
ports: ["3000:3000", "5173:5173"]
# Health Check Results
CONTAINER ID NAMES STATUS HEALTH
a1b2c3d4e5f6 frontend_react Up 89 days (healthy) 🟢 Building UI magic
b2c3d4e5f6a1 backend_astro Up 67 days (optimizing) 🚀 SSG performance
c3d4e5f6a1b2 devtools_node Up 234 days (serving) ⚡ Development server
d4e5f6a1b2c3 utils_git Up 365 days (tracking) 📊 Version control
e5f6a1b2c3d4 editor_vim Up 999 days (editing) 🔧 Terminal mastery
f6a1b2c3d4e5 runtime_docker Up 42 days (managing) 🐳 Container orchestration
╭─[tsing@devbox]─[~/projects]
╰─$ find . -type d -name ".git" | wc -l && ls -la --color=always
Total repositories: 42
drwxr-xr-x 8 tsing developers 4096 Dec 27 2024 ./
drwxr-xr-x 5 tsing developers 4096 Dec 26 2024 ../
|
|
╭─[tsing@devbox]─[~/analytics]
╰─$ git log --graph --pretty=format:'%C(bold blue)%h%C(reset) %C(bold green)(%cr)%C(reset) %s' --all
╭─[tsing@devbox]─[~/social-api]
╰─$ curl -X GET "https://api.tsing.dev/v2/social" -H "Accept: application/json" | jq '.'
{
"api_version": "2.1.0",
"endpoints": {
"blog": {
"url": "https://tsingloong.xyz",
"description": "Technical insights & learning journey",
"status": "active",
"last_post": "2024-12-27T14:30:00Z"
},
"contact": {
"email": "ping@tsing.dev",
"pgp_key": "0x1337C0DE",
"response_time": "< 24h",
"office_hours": "UTC+8 09:00-18:00"
},
"version_control": {
"platform": "github.com/Tsingloong611",
"contributions": "daily",
"languages": ["Python", "Java", "TypeScript", "Bash", "Zsh"],
"interests": ["Web Dev", "System Design", "Open Source"]
}
},
"metadata": {
"generated_at": "2024-12-27T16:42:33Z",
"timezone": "Asia/Shanghai",
"motto": "Learn by doing, teach by sharing"
}
}
╭─[tsing@devbox]─[~/session]
╰─$ ./graceful_shutdown.sh && echo "Thanks for the visit! 🚀"