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
var ctx = modul.context; | |
function skin_Default() { | |
ctx.clearRect(0,0,50,50); | |
// modul.io DEFAULT SKIN | |
ctx.beginPath(); | |
// Here is a trick to random the modul's color: | |
ctx.fillStyle="rgba(" + Math.floor( Math.random() * 255) + "," + Math.floor( Math.random() * 255) + "," + Math.floor( Math.random() * 255) + ",1)"; | |
//eyes | |
ctx.fillRect(12,3, 4, 4); |
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
# Olive | |
A minimal image enlarger | |
[Demo](http://jsrun.it/rooofl/otwP) |
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
<audio> + random + autoplay |
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
RVB vibrations effect for text |
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
# Description: | |
# Makes Hubot appologies for its stupidness | |
# | |
# Dependencies: | |
# None | |
# | |
# Configuration: | |
# None | |
# | |
# Commands: |
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
// emission | |
function com(msg){ | |
var siblingModuls = modul.sonar(); | |
if(siblingModuls.length === 0){ | |
ui.log("Nothing sent, you seem alone…"); | |
}else{ | |
var modul1 = siblingModuls[0]; | |
var modulimg = modul1.image(); | |
modul1.send(msg); | |
ui.log("Your modul sent “"+msg+"”"); |
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
var activeGoto = false; | |
var posGoto = [0,0]; | |
function goto() { | |
var c = modul.coordinates(); | |
if (c[0] > posGoto[0]) { | |
modul.move("left"); | |
} else if (c[0] < posGoto[0]) { | |
modul.move("right"); | |
} | |
if (c[1] > posGoto[1]) { |
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
// follow | |
var activeFollow = false; | |
function follow(){ | |
var siblingModuls = modul.sonar(); | |
var c = modul.coordinates(); | |
if(siblingModuls.length === 0){ | |
ui.log("You seem alone…"); | |
}else{ | |
var modul1 = siblingModuls[0]; | |
var mc = modul1.coordinates(); |
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
var ctx = modul.context; | |
// Skin | |
function checkpt(ledColor){ | |
function circle(x, y, r, col){ | |
ctx.beginPath(); | |
ctx.fillStyle = col; | |
ctx.arc(x, y, r, 0, Math.PI * 2, false); | |
ctx.closePath(); | |
ctx.fill(); |
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
<figure> | |
<img src=\"$${src}\" width=\"$${width}\" height=\"$${height}\" alt=\"$${alt}\" /> | |
<figcaption>$${caption}</figcaption> | |
</figure> |
OlderNewer