It looks like you're new here. If you want to get involved, click one of these buttons!
A simple tool to test websites and the like. It can also be used to get data from a server. IDK, could prevent someone from getting a virus or something.
function setup()
parameter.text("Site", "http://")
parameter.action("Test", testSite)
parameter.action("Go", go)
parameter.boolean("ReturnData", false)
parameter.boolean("ReturnHeaders", false)
parameter.action("Clear Output", output.clear)
globeColor = color(0, 0, 255, 255)
connecting = false
end
function draw()
background(0, 0, 0, 255)
pushMatrix()
fontSize(500)
fill(globeColor)
Comments
Sorry, text got cut off.
You can fix your post by pressing on the gear icon in the top-right corner.
@em2 Yeah, I knew that, but for some reason, this forum doesn't like emojis, and posts that have emojis will get cut off at the emoji...
Maybe that should be posted as a bug on the bug thread. It probably has something to do with the backend. "ᄒ" [U+FFBE] is the highest visible unicode char supported. U+10000 and beyond do not display and are treated as EOF. A few emoji are in that range, but most of the older ones should work fine.