$ dotnet new console -o trelloCli
Welcome to .NET Core!
---------------------
Learn more about .NET Core: https://aka.ms/dotnet-docs
Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli-docs
Telemetry
---------
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
| ############################################################################ | |
| # # | |
| # ------- Useful Docker Aliases -------- # | |
| # # | |
| # # Installation : # | |
| # copy/paste these lines into your .bashrc or .zshrc file or just # | |
| # type the following in your current shell to try it out: # | |
| # wget -O - https://gist.githubusercontent.com/jgrodziski/9ed4a17709baad10dbcd4530b60dfcbb/raw/d84ef1741c59e7ab07fb055a70df1830584c6c18/docker-aliases.sh | bash | |
| # # | |
| # # Usage: # |
I hereby claim:
- I am jpinho on github.
- I am jpepinho (https://keybase.io/jpepinho) on keybase.
- I have a public key ASCDUXOhSJQ4CvD5usiIzr2PM0bvO5BCxCtfV-Kk70Da2go
To claim this, I am signing this object:
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
| Dim cmd As String | |
| cmd = "C:\\Java\\bin\\java.exe -Xmx1024m -Xms256m -jar """ & java-program-of-some-sort.jar" & """" & _ | |
| " --xml """ & someXmlFile & """" & _ | |
| " --xsd """ & someXsdFile & ".xsd" & """ > """ & outputFile & """" | |
| Dim WshShell As Object | |
| Dim oExec As Object | |
| Dim output As String | |
| Dim errOut As String | |
| Set WshShell = CreateObject("WScript.Shell") |
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 org.corp.component.web.utils; | |
| import com.fasterxml.jackson.databind.node.ArrayNode; | |
| import com.fasterxml.jackson.databind.node.TextNode; | |
| import com.jayway.jsonpath.Configuration; | |
| import com.jayway.jsonpath.DocumentContext; | |
| import com.jayway.jsonpath.JsonPath; | |
| import com.jayway.jsonpath.spi.json.JacksonJsonNodeJsonProvider; | |
| import com.jayway.jsonpath.spi.mapper.JacksonMappingProvider; | |
| import lombok.Getter; |