curl -X GET \
'https://api.mapwize.io/v1/places?api_key=${API_KEY}&venueId=56b20714c3fa800b00d8f0b5&isPublished=true'
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
[ | |
{ | |
name: ‘Mederic Morel’, | |
avatar: ‘mederic’, | |
ipAddress: ‘10.10.20.220’ | |
}, | |
{ | |
name: ‘Mathieu Gerard’, | |
avatar: ‘mathieu’, | |
ipAddress: ‘10.10.20.221’ |
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
import java.util.concurrent.ConcurrentLinkedQueue; | |
import java.util.concurrent.ExecutorService; | |
import java.util.concurrent.Executors; | |
import java.util.logging.Level; | |
import java.util.logging.Logger; | |
import javafx.animation.AnimationTimer; | |
import javafx.animation.Timeline; | |
import javafx.application.Application; | |
import javafx.scene.Scene; | |
import javafx.scene.chart.LineChart; |
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
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<!-- To edit (when generating a new project) --> | |
<groupId>fil.coo</groupId> | |
<artifactId>COO-TP1</artifactId> | |
<version>1.0-SNAPSHOT</version> | |
<name>COO-TP1</name> |
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
import akka.actor._ | |
import scala.concurrent.duration._ | |
import scala.concurrent._ | |
import akka.pattern.ask | |
import scala.concurrent.ExecutionContext.Implicits.global | |
import akka.util._ | |
import scala.util._ | |
class TestActor extends Actor { |