Skip to content

Instantly share code, notes, and snippets.

View honnamkuan's full-sized avatar
🧩
Solving puzzles

hn honnamkuan

🧩
Solving puzzles
View GitHub Profile
@honnamkuan
honnamkuan / script.sh
Last active June 29, 2023 10:18
tool-less speed test command
curl -s https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py | python3
@honnamkuan
honnamkuan / MsgViewer.app
Last active July 12, 2022 12:05
osx_msg_outlook_preview
on run {input, parameters}
repeat with inp in input
set f to quoted form of (POSIX path of (inp as text))
do shell script "open -n -a OutlookPreview.app --args " & f
end repeat
end run
import com.cloudbees.hudson.plugins.folder.properties.FolderCredentialsProvider
import com.cloudbees.plugins.credentials.common.StandardCredentials
import com.cloudbees.hudson.plugins.folder.Folder
def creds = com.cloudbees.plugins.credentials.CredentialsProvider.lookupCredentials(
com.cloudbees.plugins.credentials.common.StandardCredentials.class, Jenkins.instance, null, null)
creds.eachWithIndex {
it,
i ->println "\n========== [Global] Credential ${i+1} Start =========="
it.properties.each {
println it
@honnamkuan
honnamkuan / global_scope.groovy
Last active December 30, 2022 12:23
List all Jenkins credentials
def creds = com.cloudbees.plugins.credentials.CredentialsProvider.lookupCredentials(
com.cloudbees.plugins.credentials.common.StandardCredentials.class,
Jenkins.instance,
null,
null
);
for (int i; i < creds.size(); i++) {
println "\n========== Credential ${i+1} Start =========="
creds[i].properties.each { println it }
println "========== Credential ${i+1} End ==========\n"