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
@namespace url(http://www.w3.org/1999/xhtml); | |
@-moz-document domain("powdertoy.co.uk") { | |
/* Links */ | |
html { | |
background-image: url('http://img88.imageshack.us/img88/843/backgroundnu.jpg') !important; | |
background-attachment: fixed !important; | |
background-repeat: repeat !important; | |
} |
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
@namespace url(http://www.w3.org/1999/xhtml); | |
/** | |
* (Original) Background pattern used from http://www.dinpattern.com/2011/08/29/charcoal/ | |
* New one used from http://www.noqta.it/dromoscopio/ #40 | |
* CSS changes colours, soon background images if I wanna. | |
* To apply, get Stylish for Firefox(Or other custom style platform SEE #1), then make a new CSS style for | |
* * powdertoy.co.uk | |
* and paste this file into the editor box. | |
** HOW TO INSTALL ON VARIOUS PLATFORMS: | |
* Opera: http://www.opera.com/docs/usercss/ |
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
require "socket" --luaBot | |
s = socket.tcp() | |
passLine = io.read() | |
--[initial configuration] | |
network = "chat.eu.freenode.net" | |
nick = "jenn4|luabot" | |
user = nick mode = "8" | |
realname = "luaBot" | |
channels = "#jenn4" -- You can stack channels like #chan1,chan2 with no spaces! |
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
#Define the necessary variables here. | |
network = "chat.eu.freenode.net" | |
port = 6667 | |
nick = "jenn4|ExpBot" | |
user = nick | |
realname = "ExpBot" | |
passw = "none" | |
prefix = "!!" | |
channels = "#jenn4" | |
mode = "8" |
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
-- ExpBot II (Experimental Bot V2.1) - An simple IRC bot written in Lua - the programming language. | |
-- jenn4 - [email protected] | |
print("<< Please, enter your password >>") | |
require "socket" | |
s = socket.tcp() | |
-- Passwords are received from the standard input. | |
passLine = io.read() | |
-- Configuration. |
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
x = {} | |
y = {} | |
--Trilateration point 1 | |
x.solid_1 = 4 --x coordinate | |
y.solid_1 = 2 --y coordinate | |
--Trilateration point 2 | |
x.solid_2 = 7 --x coordinate | |
y.solid_2 = 8 --y coordinate |
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
local socket = require "socket" | |
local s = socket.tcp() | |
local debug = true | |
local nick = "Chen-4" | |
local user = "jenn4" | |
local realname = "ExpBot" | |
local passLine = io.read() --Passwords are received from the standard input. |
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
require "socket" | |
function main() | |
x = 0 | |
y = 0 | |
z = 0 | |
print("Starting count:") | |
socket.sleep(1) |
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
require "android" | |
require "socket" | |
io.read() | |
function main() | |
local run = true | |
local i, j = 10000, 99999 | |
while run do |
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
function main() | |
io.write("Press enter to start.") | |
io.read() | |
local x = 0 | |
while true do | |
local f = io.open("1904142.txt", "a") | |
local x = x + math.random() |
OlderNewer