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
{ | |
"final_space": true, | |
"console_title": true, | |
"console_title_style": "folder", | |
"blocks": [ | |
{ | |
"type": "prompt", | |
"alignment": "left", | |
"horizontal_offset": 0, | |
"vertical_offset": 0, |
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": "Quefrency Matrix Mapping", | |
"css": "@import url(http://fonts.googleapis.com/css?family=Work+Sans);\n.keylabel { font-family: 'Work Sans';}" | |
}, | |
[ | |
"Enc 1\n\n\n\n\n\n\n\n\nA9", | |
"M9\n\n\n\n\n\n\n\n\nA2", | |
{ | |
"x": 0.5 |
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
// | |
// GifSequenceWriter.java | |
// | |
// Created by Elliot Kroo on 2009-04-25. | |
// | |
// This work is licensed under the Creative Commons Attribution 3.0 Unported | |
// License. To view a copy of this license, visit | |
// http://creativecommons.org/licenses/by/3.0/ or send a letter to Creative | |
// Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA. |
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.io.*; | |
import java.net.URL; | |
import java.util.concurrent.*; | |
import java.util.concurrent.atomic.AtomicInteger; | |
import javafx.application.Application; | |
import javafx.beans.property.*; | |
import javafx.concurrent.*; | |
import javafx.event.EventHandler; | |
import javafx.scene.*; | |
import javafx.scene.control.*; |
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 javafx.animation.*; | |
import javafx.application.Application; | |
import javafx.beans.property.SimpleDoubleProperty; | |
import javafx.beans.value.ChangeListener; | |
import javafx.beans.value.ObservableValue; | |
import javafx.collections.*; | |
import javafx.concurrent.*; | |
import javafx.event.*; | |
import javafx.geometry.*; | |
import javafx.scene.Scene; |
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 javafx.animation.FadeTransition; | |
import javafx.application.Application; | |
import javafx.beans.property.ReadOnlyObjectProperty; | |
import javafx.beans.value.ChangeListener; | |
import javafx.beans.value.ObservableValue; | |
import javafx.collections.FXCollections; | |
import javafx.collections.ObservableList; | |
import javafx.concurrent.Task; | |
import javafx.concurrent.Worker; | |
import javafx.event.ActionEvent; |