←  Forum Games

ComputerCraft | Programmable Computers for Minecraft

»

The Ctrl+V Game

Locked

Kingdaro's Photo Kingdaro 31 May 2013

Rules are simple! Whenever you come into the topic, just paste whatever's on your clipboard! If it's code, surround it in code tags so it's more readable. If it's an image, put it in image tags. Of course, no porn or anything else that breaks forum rules. Also, don't post unless you actually have something to paste, or if you're commenting on someone's paste.

For the record, this is much more fun if you don't actually know what is on your clipboard, so I would consider taking a bit of code from some huge project you're working on and pasting it here cheating. But you're free to do so, at the expense of my respect and that of other forum members playing fair.

With that, let's see what's on my clipboard.

defs = {}
for category, groupText in data:gmatch('%[([%w-_]+)%]([^%[%]]*)') do
	defs[category] = {}
	for definition, props in groupText:gmatch('#%s*([^:]+)%s*:(/>/>/>/>/>.-);') do
		defs[category][definition] = {}
		for key, value in props:gmatch('%s*([^:]+)%s*:%s*([^:]+)%s*') do
			defs[category][definition][key] = value
		end
	end
end

And it's pastie time!
Quote

Lyqyd's Photo Lyqyd 31 May 2013

I'll allow it, but only until the first instance of inappropriate content. I'll shut it down the first time it happens. First and final warning for all potential posters.
Quote

Tjakka5's Photo Tjakka5 31 May 2013



Ah, me downloading some videos from youtube ^.^
...
What, I dont have time to watch over 30 videos on my computer...
I watch them in the night on my phone when everyone is sleeping...
Quote

M4sh3dP0t4t03's Photo M4sh3dP0t4t03 31 May 2013

Looks like a for statement in Java:
for(int i = 1; i<=10; i++){
Quote

Symmetryc's Photo Symmetryc 31 May 2013

Hehehe I was experimenting with LOVE 2D :P.
function love.load()
love.graphics.setBackgroundColor( 255, 255, 255 )
end

function love.draw()
end

function love.update(dt)
end

function love.focus(bool)
end

function love.keypressed( key, unicode )
end

function love.keyreleased( key, unicode )
end

function love.mousepressed( x, y, button )
end

function love.mousereleased( x, y, button )
end

function love.quit()
end

(Btw, if anyone can find a in-depth tutorial for beginners for LOVE, I'd LOVE you XD)
Quote

Cruor's Photo Cruor 31 May 2013

http://www.youtube.c...bwXjoOw#t=1858s

Asked Mikee to make 'HUD glasses' :P
Quote

Tiin57's Photo Tiin57 31 May 2013

[13:45:05] @Cranium Not crashed
[13:48:16] @Cranium I just checked the chair. No errors, and tests look good. I think it's you, jesusthekiller
Quote

Engineer's Photo Engineer 31 May 2013

http://pastebin.com/5d9J9dLE

I needed to show my friend what I made with Java, he wants to learn...
Quote

MudkipTheEpic's Photo MudkipTheEpic 31 May 2013

Posted Image

Someone advertising on my server.
Quote

H4X0RZ's Photo H4X0RZ 31 May 2013

http://dl.dropbox.co...91630/Space!.7z

Uh, the link to an adventure map -_-
Quote

Robotonic's Photo Robotonic 31 May 2013

I randomly had this still on.
Same as Mudkip has, I was the one who sent it.
Posted Image
Quote

Guest_ZetaNeta_* 31 May 2013

Talking from a newly installed debian wheezy after "lots of swearing" with UEFI and GPT. And making GPT boot on bios... and vice versa..... and other crazy stuff.
So my buffer seems free (:D)
Quote

billysback's Photo billysback 31 May 2013



showing my friend one of my favorite anime characters (I have no idea why I find him so funny >.<)... Apparently I don't copy and paste whilst coding as this was linked before me doing some coding o.o
Quote

diegodan1893's Photo diegodan1893 01 Jun 2013

I don't know why but this is what I have on my clipboard:

Quote

----------
Quote

H4X0RZ's Photo H4X0RZ 01 Jun 2013

Spoiler

Img of hello world in Piet.
Quote

Tjakka5's Photo Tjakka5 01 Jun 2013

Mason: Person that builds with stone or bricks.o
A builder.

Shipwright: One that builds ships.
Another builder.

Carpenter: Worker who makes wooden objects and stuctrues.


Oh, me trying to solve a riddle.
Quote

databrain's Photo databrain 01 Jun 2013

They may have misread
That's what was on my clipboard. It's what happens when I'm on steam and am about to say something, but then my friend says something, and I have to use CTRL+X and post that same message later, and say something else.
Quote

theoriginalbit's Photo theoriginalbit 01 Jun 2013

My clipboard
Spoiler

View PostEngineer, on 31 May 2013 - 02:45 PM, said:

http://pastebin.com/5d9J9dLE
I needed to show my friend what I made with Java, he wants to learn...
Hey, that looks familiar... where have i seen that before :P
Quote

GravityScore's Photo GravityScore 01 Jun 2013

private function update(event:Event):Void {
  if (frames < 120) {
   splash.alpha = Math.min(splash.alpha + 0.03, 1);
  } else {
   splash.alpha = Math.max(splash.alpha - 0.03, 0);
  }
  if (splash.alpha <= 0 && frames > 120) {
   Main.setScene("menu");
  }
  frames += 1;
}

I was experimenting with this epic language called Haxe earlier - just copy and pasting between files, standard stuff you do while coding :P
Quote
Locked