View MCPSimpleJSON_1.java
This file contains 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 mcp.json.sample; | |
import org.json.simple.JSONObject; | |
public class MCPSimpleJSON_1 { | |
public static void main(String[] args) { | |
MCPSimpleJSON_1 msj = new MCPSimpleJSON_1(); | |
System.out.println(msj.getJson()); |
View MCPSimpleJSON_2.java
This file contains 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 mcp.json.sample; | |
import org.json.simple.JSONArray; | |
import org.json.simple.JSONObject; | |
public class MCPSimpleJSON_2 { | |
public static void main(String[] args) { | |
MCPSimpleJSON_2 msj = new MCPSimpleJSON_2(); |
View MCPSimpleJSON_3.java
This file contains 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 mcp.json.sample; | |
import org.json.simple.JSONArray; | |
import org.json.simple.JSONObject; | |
public class MCPSimpleJSON_3 { | |
public static void main(String[] args) { | |
MCPSimpleJSON_3 msj = new MCPSimpleJSON_3(); |
View duration.js
This file contains 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 dt_1 = new Date('2018-06-11 03:10:14 AM'); // create date object 1 June 11, 2018 3:10:14 AM | |
var dt_2 = new Date('2018-06-11 11:17:23 PM'); // create date object 2 June 11, 2018 11:17:23 PM | |
console.log(Ext.Date.diff(dt_1, dt_2, Ext.Date.YEAR) + " Years"); | |
console.log(Ext.Date.diff(dt_1, dt_2, Ext.Date.MONTH) + " Months"); | |
console.log(Ext.Date.diff(dt_1, dt_2, Ext.Date.DAY) + " Days"); | |
console.log(Ext.Date.diff(dt_1, dt_2, Ext.Date.HOUR) + " Hours"); | |
console.log(Ext.Date.diff(dt_1, dt_2, Ext.Date.MINUTE) + " Minutes"); | |
console.log(Ext.Date.diff(dt_1, dt_2, Ext.Date.SECOND) + " Seconds"); |
View gist:e9e8a0523183ea301232b16af94e9837
This file contains 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 dt_1 = new Date('2018-06-11 03:10:14 AM'); // create date object 1 June 11, 2018 3:10:14 AM | |
var dt_2 = new Date('2018-06-11 11:17:23 PM'); // create date object 2 June 11, 2018 11:17:23 PM | |
console.log(Ext.Date.diff(dt_1, dt_2, Ext.Date.YEAR) + " Years"); | |
console.log(Ext.Date.diff(dt_1, dt_2, Ext.Date.MONTH) + " Months"); | |
console.log(Ext.Date.diff(dt_1, dt_2, Ext.Date.DAY) + " Days"); | |
console.log(Ext.Date.diff(dt_1, dt_2, Ext.Date.HOUR) + " Hours"); | |
console.log(Ext.Date.diff(dt_1, dt_2, Ext.Date.MINUTE) + " Minutes"); | |
console.log(Ext.Date.diff(dt_1, dt_2, Ext.Date.SECOND) + " Seconds"); | |
dt_1 = new Date('2018-06-11 03:10:14 AM'); // create date object 1 June 11, 2018 3:10:14 AM | |
dt_2 = new Date('2019-06-19 11:17:23 PM'); // create date object 2 June 19, 2019 11:17:23 PM |