This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
Sphexish's profile picture

Remote Presentation

Started by Sphexish, 09 March 2013 - 07:05 PM
Sphexish #1
Posted 09 March 2013 - 08:05 PM
My friends were having troubles so I had to help them learn to code.
So I made this after a suggestion a friend had after I was annoyed when I constantly had to help them.

Here it is!
It's a work in progress so..

Tell me what you think and if you have any coding suggestions.

Sharer: Pastebin
Watcher: Pastebin

Watcher is used to watch the sharer. As the sharer run the program after the watcher starts his for best quality.

Video
http://www.youtube.com/watch?v=7-ow8fz_rPE&feature=youtu.be
Azhf #2
Posted 09 March 2013 - 08:05 PM
Seems legit, will check out. :)/>
Edit: You could also use lightshot to record a video, and put it on pastebin, and give him the link :)/>
Shnupbups #3
Posted 09 March 2013 - 08:11 PM
Awesome! I'll try this out later, once I finalize my screensaver's 1.1 version.
Sphexish #4
Posted 09 March 2013 - 08:19 PM
Cool! Thanks!
I will make a video!
Azhf #5
Posted 09 March 2013 - 08:38 PM
No prob. :P/>
Anyways, gotta upload AlphaTest of my OS :D/>
Sphexish #6
Posted 09 March 2013 - 08:55 PM
Alright
Heres the video
http://www.youtube.com/watch?v=7-ow8fz_rPE&feature=youtu.be
Azhf #7
Posted 09 March 2013 - 08:59 PM
Eh, I like that song.
Sphexish #8
Posted 09 March 2013 - 09:01 PM
That wasn't me
I actually didn't talk in this video
The other people talking are my friends, one calls me "Brando"..
amtra5 #9
Posted 11 March 2013 - 04:00 AM
CC Uni could use this :P/>
Appleeater #10
Posted 15 March 2013 - 10:10 AM
Hi! I love this program however I need to start the reciver on boot (by naming the file startup) and have it connect to the monitor automatically. Do you have any future plans for this/ can you customise the code to to this? It would be a good feature :P/>
Sphexish #11
Posted 16 March 2013 - 08:12 AM
I plan to make it so it refreshes everytime you run the program.. So it'll always be fresh when you connect.
elfin8er #12
Posted 22 March 2013 - 06:20 AM
Anyone else having the problem here you have to put a modem on every side of the computer?
theoriginalbit #13
Posted 22 March 2013 - 06:31 AM
I really like this program :)/>

Tell me what you think and if you have any coding suggestions.
There is a problem. and its with your nativeTerm


local nativeTerm = term.native or term
You shouldn't have it go to the native term it skips some nice stuff iirc, but lets just say term.native isn't around, and it goes to term, it will break your program, you will get a stack overflow because your functions will be recursively calling themselves.

this is how you fix it
Spoiler


local function deepCopyTable( source, destination )
  for k,v in pairs( source ) do
	if type( v ) == 'table' then
	  destination[k] = {}
	  deepCopyTable( v, destination[k] )
	else
	  destination[k] = v
	end
    sleep(0) -- incase its a BIG table.
  end
end

local nativeTerm = {}
deepCopyTable( term, nativeTerm )
PixelToast #14
Posted 22 March 2013 - 06:37 AM
o.o interesting
could be usefull for showing other players programs
Appleeater #15
Posted 22 March 2013 - 10:10 AM
Can I say that the creater of this program (Sphexish) has been banned. The only place you can currently contact him is via his server.

[Link to cracked server removed. Don't do that. -L]
Engineer #16
Posted 26 March 2013 - 12:22 PM
I like this idea.
For the future, an sharer that is editable on both sides?

Its a suggestion though. It will do the job in its current state after the bug fixes.
Engineer #17
Posted 26 March 2013 - 12:30 PM
How the badoodles did I double post(this was the same as my latest)
theoriginalbit #18
Posted 26 March 2013 - 03:28 PM
Its a suggestion though. It will do the job in its current state after the bug fixes.
I doubt there will be any bug fixes any time soon. as Appleeater pointed out, the OP is now banned.
Engineer #19
Posted 26 March 2013 - 08:39 PM
Its a suggestion though. It will do the job in its current state after the bug fixes.
I doubt there will be any bug fixes any time soon. as Appleeater pointed out, the OP is now banned.
Ooh.. well..
superaxander #20
Posted 26 March 2013 - 08:58 PM
Good program
theoriginalbit #21
Posted 27 March 2013 - 01:03 AM
Ooh.. well..
I've continued this by making CCPresenter… Check it out.