Roses are red, Voilets are red, Trees are red, Your garden's on fire.
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 Advanced Topics Linker | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Replace explore with Advanced Topics link | |
// @author Dylan5797 (and hiccup01) | |
// @match https://scratch.mit.edu/* | |
// @grant none | |
// ==/UserScript== | |
/* jshint -W097 */ |
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
#!/usr/bin/env node | |
// Minecraft server > Scratch Status | |
// by hiccup01 | |
// hiccup01.com | |
// Copyright (c) 2016 hiccup01 <[email protected]> | |
//Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | |
//The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. |
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
#!/bin/bash | |
#This is a shell script created by hiccup01 to install kea on Mac OSX. | |
VERSION="0.0.1" #Installer version | |
BVERSION="0.2.2" #Browser version | |
echo "Thanks for installing kea" | |
echo "You are running Mac OSX kea installer version $VERSION for kea version $BVERSION." | |
echo "This installer was created by hiccup01 (hiccup01.com)" | |
sleep 1 | |
echo "At some points you may be prompted to enter your password. Type it and press \"enter\". (It will not display your password on screen)" | |
sleep 3 |
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 searchterm = encodeURI(prompt("Enter your search term")); | |
if searchterm = null { | |
console.log("Error: null is invalid input.") | |
} else { | |
var url = "http://wiki.scratch.mit.edu/w/index.php?title=Special%3ASearch&profile=default&search=" + searchterm + "&fulltext=Search"; | |
window.open(url); | |
} |
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
int incomingByte = 0; // for incoming serial data | |
void setup() { | |
Serial.begin(9600); // opens serial port, sets data rate to 9600 bps | |
int tonePin = 9; | |
} | |
void loop() { |
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
$(document).ready(function(){ | |
var scratch_player = $(".stage"); | |
var url = window.location.href; | |
url = url.substr(33,40); | |
$(scratch_player).empty(); | |
$(scratch_player).append("<script src='https://phosphorus.github.io/embed.js?id=", url, "&auto-start=false&light-content=false'></script>"); | |
}); | |
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
DOCTYPE? HTML | |
<html> | |
<head> | |
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script> | |
<script> | |
$("#go").click(function() { | |
var iframe = $("#ifm"); | |
var url = $('#urlbar').val(); | |
$("iframe").attr("src", url); | |
</head> |
NewerOlder