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 javafx.application.Application; | |
| import javafx.scene.Scene; | |
| import javafx.scene.control.Button; | |
| import javafx.scene.control.TextField; | |
| import javafx.scene.input.KeyCode; | |
| import javafx.scene.layout.Pane; | |
| import javafx.scene.layout.VBox; | |
| import javafx.scene.shape.Circle; | |
| import javafx.stage.Stage; |
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
| var last = new Date(); | |
| function go() { | |
| console.log(100000 / (new Date() - last)); | |
| last = new Date(); | |
| setTimeout(go, 1000) | |
| } | |
| go(); |
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
| UserProfile = React.createClass({ | |
| componentWillMount() { | |
| loadFilePicker() | |
| }, | |
| filepicker(e) { | |
| console.log("filepicker event",e) | |
| }, |
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 Tryout { | |
| public static void main(String[] args) { | |
| String s = "Tere, TUDENG, 1234!"; | |
| String t = asenda(s); // "xxxx, xxxxxx, 1234!" | |
| System.out.println(t); | |
| } | |
| public static String asenda(String s) { | |
| String result = ""; | |
| for (int i = 0; i < s.length(); i++) { |
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
| /* | |
| * Main | |
| * Oskab mängu käivitada | |
| * Mäng | |
| * Oskab mängu seadistada | |
| * Oskab mängu töös hoida | |
| * Oskab mängu lõpetada | |
| * Mängija | |
| * Oskab küsida lasu kordinaate | |
| * Oskaba tagasisidet anda kui lask läks pihta |
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
| [ | |
| { | |
| "kg": 0.5, | |
| "m3": null, | |
| "estonia": { | |
| "zone1": 4.27, | |
| "zone2": 4.79, | |
| "zone3": 5.24, | |
| "zone4": 5.91 | |
| }, |
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
| package teema2; | |
| import javafx.application.Application; | |
| import javafx.scene.Node; | |
| import javafx.scene.Scene; | |
| import javafx.scene.control.Label; | |
| import javafx.scene.image.Image; | |
| import javafx.scene.layout.GridPane; | |
| import javafx.scene.layout.StackPane; | |
| import javafx.scene.paint.Color; |
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
| package teema2; | |
| import javafx.application.Application; | |
| import javafx.scene.Scene; | |
| import javafx.scene.control.Button; | |
| import javafx.scene.control.Label; | |
| import javafx.scene.control.PasswordField; | |
| import javafx.scene.control.TextField; | |
| import javafx.scene.input.KeyCode; | |
| import javafx.scene.layout.StackPane; |
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
| package teema2; | |
| import javafx.application.Application; | |
| import javafx.scene.Scene; | |
| import javafx.scene.control.Button; | |
| import javafx.scene.control.Label; | |
| import javafx.scene.control.PasswordField; | |
| import javafx.scene.control.TextField; | |
| import javafx.scene.input.KeyCode; | |
| import javafx.scene.layout.StackPane; |
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
| package teema2; | |
| import java.util.Arrays; | |
| import java.util.Scanner; | |
| /** | |
| * Loo laevade pommitamine, kus on vaid 1x1 | |
| * laevad ja kasutaja saab arvuti laevasid pommitada 9x9 maatriksil. | |
| */ | |
| public class Kordamine1_laevad_maatriksil { |