- PO donne les prios dans le backlog mais on peut en disucter avec l'équipe
- Le PO ne fait que des user story et pas de taches
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
| out, err := exec.Command("dateee").Output() | |
| if err != nil { | |
| log.Fatal(err) | |
| } | |
| fmt.Printf("The date is %s\n", out) | |
| out, err := exec.Command("/bin/sh", "-c", "vault list secret").Output() | |
| if err != nil { | |
| log.Fatal(err) | |
| } |
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
| group 'fr.baruch' | |
| version '1.0-SNAPSHOT' | |
| buildscript { | |
| ext.kotlin_version = '1.1.3' | |
| repositories { | |
| mavenCentral() | |
| } | |
| dependencies { |
Created by Yuki Hattori (@yhatt)
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
| <!-- $theme: gaia --> | |
| <!-- page_number: true --> | |
| <!-- template: invert --> | |
|  |
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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
{
"builders":[{
"type": "docker",
"image": "ubuntu",
"export_path": "image.tar"
}],
"provisioners":[
{
"type": "shell",
Packer
-
Packer is used to build image from a base image, perform provisions and store (commit) the final image.
-
We use provisioners and Packer templates to do the actual work to create the final image.
-
We use Ansible for provisioning.
JENKINS_HOST=admin:ritmxadmin@localhost:8081 curl -sSL "http://$JENKINS_HOST/pluginManager/api/xml?depth=1&xpath=///shortName|///version&wrapper=plugins" | perl -pe 's/.?([\w-]+).?([^<]+)()(</\w+>)+/\1 \2\n/g'|sed 's/ /:/'
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
| #alias | |
| alias l='ls -l' | |
| alias la='ls -la' | |
| alias rtl='ls -rtl' | |
| alias vi='vim' | |
| alias ..='cd ..' | |
| #json | |
| alias fjson='python -m json.tool' |