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
| package test.xml; | |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import nu.xom.Nodes; | |
| import nu.xom.Builder; | |
| import nu.xom.Document; | |
| import nu.xom.Element; |
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
| package test.xml; | |
| import java.io.InputStream; | |
| import javax.xml.parsers.DocumentBuilderFactory; | |
| import javax.xml.parsers.DocumentBuilder; | |
| import org.w3c.dom.Document; | |
| import org.w3c.dom.NodeList; | |
| import org.w3c.dom.Node; | |
| import org.w3c.dom.Element; |
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
| class Person | |
| { | |
| private String name ; | |
| private int id; | |
| /** | |
| * Receives the name and set in instance variable | |
| */ | |
| public void setName(String name){ | |
| this.name = name; |
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
| set nu | |
| set autoindent | |
| set winheight=999 | |
| set bg=dark | |
| set ts=4 | |
| set shiftwidth=4 | |
| set expandtab | |
| " make searches case-insensitive, unless they contain upper-case letters: | |
| set ignorecase |
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
| var MAP = {} | |
| function lunchCost(costs, orders) { | |
| costs = ensureInputIsArray(costs); | |
| orders = ensureInputIsArray(orders); | |
| costsize = costs.length; | |
| ordersize = orders.length; |
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 gs="git status" | |
| function gds(){ | |
| git diff --color=always --staged "$@" | less -rS | |
| } | |
| function gd(){ | |
| git diff --color=always "$@" | less -rS | |
| } |
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
| something else |
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
| https://drive.google.com/file/d/1yGUE5vHh1apYhjR6kjmqAwOHnE7PF1Oo/view?usp=drivesdk |
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
| apiVersion: argoproj.io/v1alpha1 | |
| kind: WorkflowTemplate | |
| metadata: | |
| name: my-app-batch | |
| namespace: appns | |
| spec: | |
| volumes: | |
| - name: all-configs | |
| configMap: | |
| name: my-app-batch-config |
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
| #!/bin/sh | |
| # Usage: | |
| # ./release-items.sh last-release-tag jira_number_prefix [-v] | |
| jira_prefix=$1 | |
| since_tag=$2 | |
| if [ -z "$3" ]; then | |
| lines=$(git log --oneline --first-parent "$since_tag"..HEAD | cut -d ' ' -f 5- | sed -nE "s/.*((:?${jira_prefix})\-[0-9]{3,6}).*/\1/p") |