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
| myList.removeAll(Collections.singleton(null)); |
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
| // select input by name | |
| $('input[name="foo"]') |
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
| START wc = node:classes(name = "WireContainer") | |
| MATCH wc-[r]->y | |
| RETURN type(r), y.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
| git stash -p |
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
| curl --compressed www.domain.com |
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
| <entity-condition list="invoiceItems" entity-name="InvoiceItem"> | |
| <condition-list combine="and"> | |
| <condition-expr field-name="invoiceId" from-field="payAppl.invoiceId" /> | |
| <condition-list combine="or"> | |
| <condition-expr field-name="productId" value="16000" | |
| operator="equals" /> | |
| <condition-expr field-name="productId" value="54000" | |
| operator="equals" /> | |
| <condition-expr field-name="productId" value="60000" | |
| operator="equals" /> |
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
| <!-- A = B * C --> | |
| <calculate field="A" type="BigDecimal"> | |
| <calcop field="B" operator="multiply"> | |
| <calcop field="C" operator="get"/> | |
| </calcop> | |
| </calculate> | |
| <!-- A = A / 100 --> | |
| <calculate field="A" type="BigDecimal"> | |
| <calcop field="A" operator="divide"> |
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
| scp -p -P 29418 review.example.com:hooks/commit-msg .git/hooks/ |
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
| Generate properties file | |
| java -jar myinstaller.jar -options-template myinstaller.properties | |
| Install using properties file | |
| java -jar myinstaller.jar -options myinstaller.properties |
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
| git ls-files --deleted -z | xargs -0 git rm |