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
| #include <iostream> | |
| #include <sstream> | |
| #include <string> | |
| #include <fstream> | |
| using namespace std; | |
| int main(){ | |
| string line; |
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
| { | |
| //mandatory | |
| uid:"setter_user_id", | |
| draft:false, | |
| timestamp: 158121845121, //in milliseconds | |
| title:"title", | |
| logo:"logo", | |
| grade:3, | |
| difficulty:1, //1=>easy, 2=>medium, 3=>hard | |
| language:1, //1=>english, 2=>bengali |
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
| import javafx.animation.AnimationTimer; | |
| import org.json.*; | |
| import java.io.BufferedReader; | |
| import java.io.IOException; | |
| import java.io.InputStreamReader; | |
| import java.net.HttpURLConnection; | |
| import java.net.MalformedURLException; | |
| import java.net.URL; | |
| import java.util.Observable; |