I hereby claim:
- I am childnode on github.
- I am childnode (https://keybase.io/childnode) on keybase.
- I have a public key ASB5Io_7olQZZLAw0W5EQDfjqOhC9jdIYfj55j3xK4q6-go
To claim this, I am signing this object:
| .Python | |
| bin/ | |
| include/ | |
| lib/ | |
| pip-selfcheck.json | |
| playbook.retry |
| FROM jenkins/jenkins:${jenkinsVersion} | |
| ## note base : https://github.com/jenkinsci/docker/blob/master/Dockerfile | |
| … | |
| ## Manual install Plugins | |
| COPY myPlugin.hpi /usr/share/jenkins/ref/plugins/myPlugin.jpi | |
| RUN unzip -qqt "/usr/share/jenkins/ref/plugins/myPlugin.jpi" | |
| … |
| function git-guilty() { ./gradlew :test; [ "$?" != 0 ] && git reset --hard HEAD^ && git-guilty; } | |
| git-guilty | |
| echo "========== LAST WORKING =========" | |
| git describe | |
| git log -1 HEAD | |
| echo "========== SUSPICIOUS PATCH =========" | |
| git log -1 -p --stat HEAD@{1} | |
| git reset --hard origin/HEAD |
| apply plugin: 'groovy' | |
| sourceSets { | |
| main { | |
| groovy.srcDirs += "${rootProject.rootDir}/../src/main/groovy" | |
| } | |
| } |
| // inspired by https://discuss.gradle.org/t/how-to-run-defaults-tasks-of-sub-project-rather-than-default-tasks-of-root-project/6575/6 | |
| task runDefaultTasks { | |
| gradle.projectsEvaluated { | |
| subprojects.each { subproject -> | |
| //println subproject.path | |
| subproject.defaultTasks.each { | |
| //println subproject.path + ":" + it | |
| dependsOn subproject.path + ":" + it | |
| } |
| User-agent: * | |
| # from CONF-8749 | |
| Crawl-delay: 5 # per http://en.wikipedia.org/wiki/Robots.txt#Nonstandard_extensions, sets number of seconds to wait between requests to 5 seconds. may not work | |
| Request-rate: 1/5 # per http://en.wikipedia.org/wiki/Robots.txt#Extended_Standard, maximum rate is one page every 5 seconds. may not work | |
| # DISABLED FOR NOW Visit-time: 0600-0845 # per http://en.wikipedia.org/wiki/Robots.txt#Extended_Standard, only visit between 6:00 AM and 8:45 AM UT (GMT), may not work | |
| ## Confluence exclusions | |
| Disallow: /plugins/viewsource | |
| Disallow: /pages/viewpreviousversions.action |
I hereby claim:
To claim this, I am signing this object:
| for cask in $(brew cask list -1); do | |
| echo -n "${cask} : "; | |
| caskLatest=$(brew cask info $cask | head -1 | awk -F: '{print $2}' | tr -d '[[:space:]]'); | |
| caskCurrentDir=$(brew cask info $cask | grep -e "^$(brew --prefix).*/${cask}/"| head -1| awk '{print $1}'); | |
| [ ! -d $(dirname ${caskCurrentDir})/${caskLatest} ] && echo "outdated : ("$(basename ${caskCurrentDir})" -> "${caskLatest}")" || echo "current"; | |
| done |
| for i in /etc/ssh/ssh_host_*_key; do ssh-keygen -f $i -t $(echo $i | awk 'BEGIN {FS= "_"} { print $3}'); done |
| mkdir -p ~/fubu/; | |
| for i in $(./adb shell ls | grep -ve "^proc\b" | grep -v "^sys\b" | tr -s [:space:] ' '); do | |
| echo "====$i==="; | |
| ./adb pull -a /$i ~/fubu/$i; | |
| done |