Skip to content

Instantly share code, notes, and snippets.

@rolroralra
rolroralra / gcloud.md
Last active November 3, 2021 05:36
Google Cloud SDK (gcloud)
@rolroralra
rolroralra / Jenkins.md
Created August 27, 2020 10:58
Jenkins

How to install Jenkins in Docker

$ docker pull jenkins/jenkins

# -M : --no-create-home
# -s : --shell (login shell)
$ useradd -M -s /sbin/nologin jenkins
$ sudo mkdir /home/jenkins && sudo chown -R jenkins:jenkins /home/jenkins

$ docker run -d --name jenkins \
@rolroralra
rolroralra / TODO.md
Last active December 27, 2021 07:27
TODO.md
// XPath CheatSheet
// To test XPath in your Chrome Debugger: $x('/html/body')
// http://www.jittuu.com/2012/2/14/Testing-XPath-In-Chrome/
// 0. XPath Examples.
// More: http://xpath.alephzarro.com/content/cheatsheet.html
'//hr[@class="edge" and position()=1]' // every first hr of 'edge' class
@rolroralra
rolroralra / JSON.md
Last active August 16, 2022 08:10
JSON