This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
๐ Morning 184 commits โโโโโโโโโโโโโโโโโโโโโ 33.8% | |
๐ Daytime 193 commits โโโโโโโโโโโโโโโโโโโโโ 35.4% | |
๐ Evening 162 commits โโโโโโโโโโโโโโโโโโโโโ 29.7% | |
๐ Night 6 commits โโโโโโโโโโโโโโโโโโโโโ 1.1% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2025 Running 432.23 km | |
2025 Swimming 0.00 km | |
2025 Cycling 124.52 km | |
Last month 7.84 km |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
โถ Letting Go ................. Tanya Chua | |
โถ unravel .................... TK from Ling toโฆ | |
โถ ็ .......................... LiSA |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |