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
{ | |
"copyright": "Copyright INRIX Inc.", | |
"versionNumber": "5.2", | |
"createdDate": "2018-08-18T18:21:13Z", | |
"responseId": "d268dd86-1beb-481e-8b5a-cde30e90b311", | |
"result": [ | |
{ | |
"structured_rates": [], | |
"currencyIso": "EUR", | |
"peps": [ |
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
{"location_models":[{"title":"john","latitude":45.0886846,"longitude":7.6480669},{"title":"Mehrdad","latitude":45.0886846,"longitude":7.6480669},{"title":"Anthonio","latitude":45.1852194,"longitude":7.21505912},{"title":"karmez","latitude":45.0886846,"longitude":7.6480669} | |
,{"title":"Luigi","latitude":45.0886846,"longitude":7.6480669},{"title":"Emmanuelle","latitude":45.0828366,"longitude":7.1252194},{"title":"Rozita","latitude":45.0852194,"longitude":7.6505912},{"title":"Mary","latitude":45.6505912,"longitude":7.6646322}]} |
This file has been truncated, but you can view the full file.
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
{ | |
"timetable": { | |
"arrivals": [ | |
{ | |
"through_the_stations": "Milan (Lampugnano) → Lugano → Bellinzona → Splügen → Chur → Dornbirn → Bregenz → Lindau → Munich central bus station", | |
"datetime": { | |
"timestamp": 1517416500, | |
"tz": "GMT+01:00" | |
}, | |
"line_direction": "Route 076 direction Munich central bus station", |
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
{ | |
"result": [ | |
{ | |
"advertise": { | |
"id": 0, | |
"album": { | |
"id": 0, | |
"thumbnails": [ | |
{ | |
"id": "2", |
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
{ | |
"placemarks": [ | |
{ | |
"address": "Lesserstraße 170, 22049 Hamburg", | |
"coordinates": [ | |
10.07526, | |
53.59301, | |
0 | |
], | |
"engineType": "CE", |
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
public class GenericMethodTest | |
{ | |
// generic method printArray | |
public static < E > void printArray( E[] inputArray ) | |
{ | |
// Display array elements | |
for ( E element : inputArray ){ | |
System.out.printf( "%s ", element ); | |
} | |
System.out.println(); |
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
public interface Vegetarian{} | |
public class Animal{} | |
public class Deer extends Animal implements Vegetarian{} | |
//When we apply the reference variable facts to a Deer object reference, the following declarations are legal | |
Deer d = new Deer(); | |
Animal a = d; | |
Vegetarian v = d; | |
Object o = d; |
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
public class ThreadDemo extends Thread { | |
private Thread t; | |
private String threadName; | |
ThreadDemo(String name) { | |
threadName = name; | |
System.out.println("Creating " + threadName); | |
} | |
public void run() { | |
System.out.println("Running " + threadName); |
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
<!DOCTYPE html> | |
<html ng-app> | |
<head> | |
<title>Hello World, AngularJS - ViralPatel.net</title> | |
<script type="text/javascript" | |
src="../bower_components/angular/angular.min.js"></script> | |
</head> | |
<body> | |
Write some text in textbox: | |
<input type="text" ng-model="sometext" /> |
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
<!DOCTYPE html> | |
<html ng-app> | |
<head> | |
<title>Hello World, AngularJS - ViralPatel.net</title> | |
<script type="text/javascript" | |
src="../bower_components/angular/angular.min.js"></script> | |
</head> | |
<body> | |
Write some text in textbox: | |
<input type="text" ng-model="sometext" /> |