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
{ | |
"sys": { | |
"space": { | |
"sys": { | |
"type": "Link", | |
"linkType": "Space", | |
"id": "changeme" | |
} | |
}, | |
"id": "changeme", |
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
// ==UserScript== | |
// @name Scrollable Scratch Signatures | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @updateURL https://gist.githubusercontent.com/Blaze349/eb8eade386c0380e8e5fbec0d87a9283/raw/6adb2ade07eebb404f958a3ff274affb6ffaccdf/scrollablescratch.js | |
// @match https://scratch.mit.edu/* | |
// @grant none | |
// ==/UserScript== |
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 <cmath> | |
#include <iostream> | |
struct Point { | |
double x; | |
double y; | |
}; | |
double distLength(struct Point point1,struct Point point2) { | |
double xlength = point1.x - point2.x, ylength = point1.y - point2.y; |