https://github.com/oracle/opengrok/releases/tag/1.0
cd D:\Software\opengrok-1.0
java -jar lib\opengrok.jar -W .\configuration.xml -c D:\Software\ctags58\ctags.exe -P -S -v -s D:\SOURCE_CODE -d .\grokdata| map = new HashMap(); | |
| map.put("name","intellect"); | |
| void modify(map){ | |
| map.get("name") | |
| map.put("name","trade"); | |
| map = new HashMap(); | |
| map.put("name","scf"); | |
| } |
https://github.com/oracle/opengrok/releases/tag/1.0
cd D:\Software\opengrok-1.0
java -jar lib\opengrok.jar -W .\configuration.xml -c D:\Software\ctags58\ctags.exe -P -S -v -s D:\SOURCE_CODE -d .\grokdata| $.ajax({ | |
| "url": "https://wondrx.metamug.net/movies/v1.0/movies", | |
| beforeSend: function(xhr){ | |
| xhr.setRequestHeader('Accept', 'application/json+dataset'); | |
| }, | |
| "success": function (json) { | |
| $("#movieList").dataTable( { | |
| "aaData": json.dataset | |
| }); |
| <Request method="GET"> | |
| <XRequest url="https://api.url.com/fetch" persist="true" method="POST" classname="com.mycompany.handler.APIResponseHandler"> | |
| <Param name="email" value="[email protected]"/> | |
| <Header name="Authorization" value="Bearer 7vaBhK323fau0H32fabbgOhcsiGAIgv"/> | |
| <Param name="foo">Some really long value that I want to send </Param> | |
| <Header name="Content-Type">application/json</Header> | |
| </XRequest> | |
| <Query> |
| var ajax = new XMLHttpRequest(); | |
| ajax.open('POST','https://api.metamug.com/backend/v1.0/resource'); | |
| ajax.onload=function(){ | |
| console.log(xhr.responseText); | |
| } | |
| ajax.send(); |
| @Grab('org.beykery:neuroph:2.92') | |
| import org.neuroph.core.*; | |
| import org.neuroph.nnet.Perceptron | |
| import org.neuroph.core.data.* | |
| NeuralNetwork neuralNetwork = new Perceptron(2, 1); | |
| DataSet trainingSet = new DataSet(2, 1) |
| java -jar C:/jgit/sh/file/location/jgit.sh %* |
| import org.w3c.dom.*; | |
| import javax.xml.parsers.*; | |
| import javax.xml.transform.*; | |
| import javax.xml.transform.dom.*; | |
| import javax.xml.transform.stream.*; | |
| DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance(); | |
| DocumentBuilder docBuilder = docFactory.newDocumentBuilder(); | |
| //root elements |
| CREATE TABLE `msgs` ( | |
| `id` INT PRIMARY KEY AUTO_INCREMENT, | |
| `msg` VARCHAR(256), | |
| `ts_create` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, | |
| `ts_update` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP | |
| ) |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>FORM PROCESSING</title> | |
| <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"> | |
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> | |
| </head> | |
| <body style="padding:4em;"> |