Skip to content

Instantly share code, notes, and snippets.

View superleeyom's full-sized avatar
📌
upgrading...

Leeyom Wang superleeyom

📌
upgrading...
View GitHub Profile
🌞 Morning 184 commits ███████░░░░░░░░░░░░░░ 33.8%
🌆 Daytime 193 commits ███████▍░░░░░░░░░░░░░ 35.4%
🌃 Evening 162 commits ██████▏░░░░░░░░░░░░░░ 29.7%
🌙 Night 6 commits ▏░░░░░░░░░░░░░░░░░░░░ 1.1%
@superleeyom
superleeyom / YTD Strava Metrics
Last active July 17, 2024 00:02
🏃My Strava Metrics
2024 Running 306.95 km
2024 Swimming 0.00 km
2024 Cycling 25.15 km
Last month 47.00 km
@superleeyom
superleeyom / 📊 Weekly development breakdown
Last active June 23, 2023 01:55
👨‍💻My Weekly Development Breakdown
Java 13 hrs 20 mins █████████████████▉░░░ 85.2%
Other 1 hr 54 mins ██▌░░░░░░░░░░░░░░░░░░ 12.2%
Text 20 mins ▍░░░░░░░░░░░░░░░░░░░░ 2.2%
XML 3 mins ░░░░░░░░░░░░░░░░░░░░░ 0.4%
Docker 0 secs ░░░░░░░░░░░░░░░░░░░░░ 0.0%
@superleeyom
superleeyom / 🎵 My Spotify Top Tracks
Last active July 24, 2022 01:56
🎧 Spotify | My Top Tracks
▶ Letting Go ................. Tanya Chua
▶ unravel .................... TK from Ling to…
▶ 炎 .......................... LiSA
@superleeyom
superleeyom / jenkins-groovy-script.groovy
Last active November 20, 2020 07:25
Jenkins里利用groovy脚本获取指定文件夹名称
import static groovy.io.FileType.DIRECTORIES
def list = [""]
new File('/var/lib/jenkins/workspace/unprod').eachFile (DIRECTORIES) { file ->
def fileName = file.name;
if(fileName.startsWith('lumi_')){
list.add(fileName + "/");
}
}
return list