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
| skinparam roundcorner 10 | |
| skinparam sequence { | |
| ParticipantBackgroundColor #527BC6 | |
| ParticipantBorderColor #527BC6 | |
| ArrowColor Black | |
| LifeLineBorderColor Black | |
| ParticipantFontName Arial | |
| ParticipantFontSize 17 | |
| ParticipantFontColor White | |
| } |
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
| docker exec -i -t `docker ps | awk 'FNR == 2 { print $1; }'` /bin/bash |
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
| svn status --no-ignore | grep '^[I?]' | cut -c 9- | while IFS= read -r f; do rm -rf "$f"; done |
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
| <dependency>\n.*<groupId>(.*)</groupId>\n.*<artifactId>(.*)</artifactId>\n.*<version>(.*)</version>\n.*</dependency> |
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
| {% if site.lang == "ru" %} | |
| {% capture link1 %}{{ site.baseurl_root }}/en{{ page.url}}{% endcapture %} | |
| <a href="{{ link1 }}" >{% t global.english %}</a> | |
| {% else if site.lang == "en" %} | |
| {% capture link2 %}{{ site.baseurl_root }}{{ page.url }}{% endcapture %} | |
| <a href="{{ link2 }}" >{% t global.russian %}</a> | |
| {% endif %} |