24 posts
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:
PastebinWatcher:
PastebinWatcher 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
177 posts
Location
Murrika
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 :)/>
671 posts
Location
That place over there. Y'know. The one where I am.
Posted 09 March 2013 - 08:11 PM
Awesome! I'll try this out later, once I finalize my screensaver's 1.1 version.
24 posts
Posted 09 March 2013 - 08:19 PM
Cool! Thanks!
I will make a video!
177 posts
Location
Murrika
Posted 09 March 2013 - 08:38 PM
No prob. :P/>
Anyways, gotta upload AlphaTest of my OS :D/>
24 posts
Posted 09 March 2013 - 08:55 PM
177 posts
Location
Murrika
Posted 09 March 2013 - 08:59 PM
Eh, I like that song.
24 posts
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"..
321 posts
Location
Melbourne, Australia
Posted 11 March 2013 - 04:00 AM
CC Uni could use this :P/>
51 posts
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/>
24 posts
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.
132 posts
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?
7508 posts
Location
Australia
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 )
2217 posts
Location
3232235883
Posted 22 March 2013 - 06:37 AM
o.o interesting
could be usefull for showing other players programs
51 posts
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]
1522 posts
Location
The Netherlands
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.
1522 posts
Location
The Netherlands
Posted 26 March 2013 - 12:30 PM
How the badoodles did I double post(this was the same as my latest)
7508 posts
Location
Australia
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.
1522 posts
Location
The Netherlands
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..
620 posts
Location
Holland
Posted 26 March 2013 - 08:58 PM
Good program
7508 posts
Location
Australia
Posted 27 March 2013 - 01:03 AM
Ooh.. well..
I've continued this by making CCPresenter… Check it out.