Team:
This is a read-only snapshot of the ComputerCraft forums,
taken in April 2020.
CubeLink Industries [Icube OS V1.0 beta OUT SOON]
Started by rex41043, 04 April 2012 - 06:39 PMPosted 04 April 2012 - 08:39 PM
CubeLink Industries Programming
CubeLink Industries is just some thing that I do on a server
but the programs on here are made by rex41043 and darkdave23
and we are going to show the programs we made to the world!
so we hope you like them and happy programming!
and if you want you can make a app by replying to this topic!
showing off what you have made!
Team:
rex41043/abthouse29 - Lead Developers
I Cube
THERE A STILL A LOT OF UPDATES TO COME
DUE TO THIS THE UPDATE PROGRAM WILL NOT WORK!
I cube is the OS that we made so far it comes with a nice startup and a update program.
This update program downloads updates form pastebin so you dont have to keep re-downloading the hole
floppy disk installer BTW it uses a floppy disk to install.
there will be more added soon so have fun with I cube!
DOWNLOAD:
Just put the files that are in the .zip info a floppy and reboot the computer
with the floppy then run the install!
BANNER:
[url="http://www.computercraft.info/forums2/index.php?/topic/1110-cubelink-industries-developers-wanted/page__fromsearch__1/"][img]http://i47.tinypic.com/2mcsg9i.jpg
Posted 04 April 2012 - 09:06 PM
Hello, I could be a programmer?
Something I've made: http://www.computercraft.info/forums2/index.php?/topic/1101-apisprogramsutilitiesmads-programs/ xD
Something I've made: http://www.computercraft.info/forums2/index.php?/topic/1101-apisprogramsutilitiesmads-programs/ xD
Posted 04 April 2012 - 09:11 PM
I can help code, I'm very good with the HTTP API, so I can help with an auto-updater 'n all that cool stuff.
Posted 04 April 2012 - 10:19 PM
Would help too
Posted 04 April 2012 - 11:38 PM
sweet you can you send me your skype in a email if you have 1 it just makes it a lot ezyer my email is rex41043@gmail.comHello, I could be a programmer?
Something I've made: http://www.computerc...smads-programs/ xD
sweet you can you send me your skype in a email if you have 1 it just makes it a lot ezyer my email is rex41043@gmail.comWould help too
Posted 04 April 2012 - 11:40 PM
o your 1st job wolvan can you make a logo/banner forWould help too
CubeLink Industries and to the 2 of u when i have a email form you i will give you a ip to a private test server! have fun
Posted 04 April 2012 - 11:43 PM
Some special requests? Size? Colors? Text?o your 1st job wolvan can you make a logo/banner forWould help too
CubeLink Industries and to the 2 of u when i have a email form you i will give you a ip to a private test server! have fun
Posted 05 April 2012 - 01:05 AM
I'll help, I made a auto updater with and without pastebin in another post
Posted 05 April 2012 - 03:31 AM
na just do and u plezSome special requests? Size? Colors? Text?o your 1st job wolvan can you make a logo/banner forWould help too
CubeLink Industries and to the 2 of u when i have a email form you i will give you a ip to a private test server! have fun
that wood be real nice and can u make it read off a file for what it need to download and what to save it asI'll help, I made a auto updater with and without pastebin in another post
Posted 05 April 2012 - 07:36 AM
na just do and u plezSome special requests? Size? Colors? Text?o your 1st job wolvan can you make a logo/banner forWould help too
CubeLink Industries and to the 2 of u when i have a email form you i will give you a ip to a private test server! have funthat wood be real nice and can u make it read off a file for what it need to download and what to save it asI'll help, I made a auto updater with and without pastebin in another post
Here:
Server:version = "1.0" pastebin = "change to pastebin Id" while true do id, message = rednet.recieve() if message == "check" then rednet.send(id, version) elseif message == "update" then rednet.send(id, pastebin) end end
Client:version = 1.0 programname = "startup" function update() rednet.broadcast("check") id, message = rednet.receive() if version == message then else rednet.send(id, "update") id, message = rednet.receive() write("Update available! Would you like to update? [y/n] ") input = read() if input == "y" then shell.run("pastebin", "get", message, programname) shell.run(programname) end end end update()
Change the server's version and change the pastebin I'd to the files ID on pastebin (pastebin.com/* <—)
Posted 05 April 2012 - 09:11 AM
sweet but its not what we need for this OS i'm thinking of makeing it so the program reads off the file that tell the update program what to download and what to save it asna just do and u plezSome special requests? Size? Colors? Text?o your 1st job wolvan can you make a logo/banner forWould help too
CubeLink Industries and to the 2 of u when i have a email form you i will give you a ip to a private test server! have funthat wood be real nice and can u make it read off a file for what it need to download and what to save it asI'll help, I made a auto updater with and without pastebin in another post
Here:Server:version = "1.0" pastebin = "change to pastebin Id" while true do id, message = rednet.recieve() if message == "check" then rednet.send(id, version) elseif message == "update" then rednet.send(id, pastebin) end end
Client:version = 1.0 programname = "startup" function update() rednet.broadcast("check") id, message = rednet.receive() if version == message then else rednet.send(id, "update") id, message = rednet.receive() write("Update available! Would you like to update? [y/n] ") input = read() if input == "y" then shell.run("pastebin", "get", message, programname) shell.run(programname) end end end update()
Change the server's version and change the pastebin I'd to the files ID on pastebin (pastebin.com/* <—)
Posted 05 April 2012 - 05:59 PM
sweet but its not what we need for this OS i'm thinking of makeing it so the program reads off the file that tell the update program what to download and what to save it asna just do and u plezSome special requests? Size? Colors? Text?o your 1st job wolvan can you make a logo/banner forWould help too
CubeLink Industries and to the 2 of u when i have a email form you i will give you a ip to a private test server! have funthat wood be real nice and can u make it read off a file for what it need to download and what to save it asI'll help, I made a auto updater with and without pastebin in another post
Here:Server:version = "1.0" pastebin = "change to pastebin Id" while true do id, message = rednet.recieve() if message == "check" then rednet.send(id, version) elseif message == "update" then rednet.send(id, pastebin) end end
Client:version = 1.0 programname = "startup" function update() rednet.broadcast("check") id, message = rednet.receive() if version == message then else rednet.send(id, "update") id, message = rednet.receive() write("Update available! Would you like to update? [y/n] ") input = read() if input == "y" then shell.run("pastebin", "get", message, programname) shell.run(programname) end end end update()
Change the server's version and change the pastebin I'd to the files ID on pastebin (pastebin.com/* <—)
That's what it does, you can add a read() function asking what you want to save it as and replace the "programname" with the users inout
Posted 05 April 2012 - 09:27 PM
ya but for the way that we will need it to work it needs to read what it needs to DOWNLOAD OFF A FILE and have it run with out a update serversweet but its not what we need for this OS i'm thinking of makeing it so the program reads off the file that tell the update program what to download and what to save it asna just do and u plezSome special requests? Size? Colors? Text?o your 1st job wolvan can you make a logo/banner forWould help too
CubeLink Industries and to the 2 of u when i have a email form you i will give you a ip to a private test server! have funthat wood be real nice and can u make it read off a file for what it need to download and what to save it asI'll help, I made a auto updater with and without pastebin in another post
Here:Server:version = "1.0" pastebin = "change to pastebin Id" while true do id, message = rednet.recieve() if message == "check" then rednet.send(id, version) elseif message == "update" then rednet.send(id, pastebin) end end
Client:version = 1.0 programname = "startup" function update() rednet.broadcast("check") id, message = rednet.receive() if version == message then else rednet.send(id, "update") id, message = rednet.receive() write("Update available! Would you like to update? [y/n] ") input = read() if input == "y" then shell.run("pastebin", "get", message, programname) shell.run(programname) end end end update()
Change the server's version and change the pastebin I'd to the files ID on pastebin (pastebin.com/* <—)
That's what it does, you can add a read() function asking what you want to save it as and replace the "programname" with the users inout
Posted 05 April 2012 - 10:29 PM
Done :)/>/>Some special requests? Size? Colors? Text?o your 1st job wolvan can you make a logo/banner for CubeLink Industries and to the 2 of u when i have a email form you i will give you a ip to a private test server! have funWould help too
Post this as HTML in your signature
[url="http://www.computercraft.info/forums2/index.php?/topic/1110-cubelink-industries-programming-programmers-wanted/"][img]http://img714.imageshack.us/img714/5373/cyberlink.gif[/img][/url]
Posted 06 April 2012 - 02:11 AM
ya but for the way that we will need it to work it needs to read what it needs to DOWNLOAD OFF A FILE and have it run with out a update serversweet but its not what we need for this OS i'm thinking of makeing it so the program reads off the file that tell the update program what to download and what to save it asna just do and u plezSome special requests? Size? Colors? Text?o your 1st job wolvan can you make a logo/banner forWould help too
CubeLink Industries and to the 2 of u when i have a email form you i will give you a ip to a private test server! have funthat wood be real nice and can u make it read off a file for what it need to download and what to save it asI'll help, I made a auto updater with and without pastebin in another post
Here:Server:version = "1.0" pastebin = "change to pastebin Id" while true do id, message = rednet.recieve() if message == "check" then rednet.send(id, version) elseif message == "update" then rednet.send(id, pastebin) end end
Client:version = 1.0 programname = "startup" function update() rednet.broadcast("check") id, message = rednet.receive() if version == message then else rednet.send(id, "update") id, message = rednet.receive() write("Update available! Would you like to update? [y/n] ") input = read() if input == "y" then shell.run("pastebin", "get", message, programname) shell.run(programname) end end end update()
Change the server's version and change the pastebin I'd to the files ID on pastebin (pastebin.com/* <—)
That's what it does, you can add a read() function asking what you want to save it as and replace the "programname" with the users inout
To run it without a server, you need a pastebin account and make it read from a pastebin link and if u make anew version, you edit that pastebin file
Posted 06 April 2012 - 05:13 AM
ya the idea form haveing it read form a file is that its bilt in to update that 1st and then read form the file and do that updates like to so if u want to code the update stuff u canya but for the way that we will need it to work it needs to read what it needs to DOWNLOAD OFF A FILE and have it run with out a update serversweet but its not what we need for this OS i'm thinking of makeing it so the program reads off the file that tell the update program what to download and what to save it asna just do and u plezSome special requests? Size? Colors? Text?o your 1st job wolvan can you make a logo/banner forWould help too
CubeLink Industries and to the 2 of u when i have a email form you i will give you a ip to a private test server! have funthat wood be real nice and can u make it read off a file for what it need to download and what to save it asI'll help, I made a auto updater with and without pastebin in another post
Here:Server:version = "1.0" pastebin = "change to pastebin Id" while true do id, message = rednet.recieve() if message == "check" then rednet.send(id, version) elseif message == "update" then rednet.send(id, pastebin) end end
Client:version = 1.0 programname = "startup" function update() rednet.broadcast("check") id, message = rednet.receive() if version == message then else rednet.send(id, "update") id, message = rednet.receive() write("Update available! Would you like to update? [y/n] ") input = read() if input == "y" then shell.run("pastebin", "get", message, programname) shell.run(programname) end end end update()
Change the server's version and change the pastebin I'd to the files ID on pastebin (pastebin.com/* <—)
That's what it does, you can add a read() function asking what you want to save it as and replace the "programname" with the users inout
To run it without a server, you need a pastebin account and make it read from a pastebin link and if u make anew version, you edit that pastebin file
Posted 06 April 2012 - 09:49 AM
I think you mean like this:
1. Download all files
2. Download some kind of changelog
3. Read the changelog and read, which scripts were modified
4. Delete these local scripts
5. replace them with the modified
1. Download all files
2. Download some kind of changelog
3. Read the changelog and read, which scripts were modified
4. Delete these local scripts
5. replace them with the modified
Posted 06 April 2012 - 11:12 AM
sort of ok it downloads a file ok and in the file is a line and on that like is 2 things 1 the pastebin code 2 the file is replaceing and then with that it downloads the pastebin at replaces the file soI think you mean like this:
1. Download all files
2. Download some kind of changelog
3. Read the changelog and read, which scripts were modified
4. Delete these local scripts
5. replace them with the modified
1. download the update info
2. read the update info
3. delete the old file
4. download the update
5. save the update
6. read the next update line
7. goto 3
Posted 06 April 2012 - 12:41 PM
hey rex ill be happy to help with your OS well to tell the truth i already helped make half the installer :)/>/>
Posted 10 April 2012 - 04:50 AM
Try to avoid the super long quote trails. xD
I can help make a auto-updater. Pastebin, Dropbox, or whatever you use to share files.
My E-mail is: ops99@mineandcraft.net
I can help make a auto-updater. Pastebin, Dropbox, or whatever you use to share files.
My E-mail is: ops99@mineandcraft.net
Posted 10 April 2012 - 07:50 AM
ok show me what you can do coz we are far in codeing it my email is rex41043@gmail.comTry to avoid the super long quote trails. xD
I can help make a auto-updater. Pastebin, Dropbox, or whatever you use to share files.
My E-mail is: ops99@mineandcraft.net
Posted 10 April 2012 - 08:00 AM
not bad but.. u got the name rongDone :P/>/>Some special requests? Size? Colors? Text?o your 1st job wolvan can you make a logo/banner for CubeLink Industries and to the 2 of u when i have a email form you i will give you a ip to a private test server! have funWould help too
Post this as HTML in your signature[url="http://www.computercraft.info/forums2/index.php?/topic/1110-cubelink-industries-programming-programmers-wanted/"][img]http://img714.imageshack.us/img714/5373/cyberlink.gif[/img][/url]
Posted 10 April 2012 - 04:21 PM
IGN: "wilcomega"
what are you the best at: "Lua, i like programming with OOP(Object Orient Porgramming), i like to write big game's and i just love remote control virusus"
programs that you have made: "i only have got 1 really good program: http://www.computercraft.info/forums2/index.php?/topic/1066-132rpg-game-01-by-wilcomega-v02-upcomming/"
How can we contact you?: you can contact me via skype, i will give it when i come on the server
more info: i am autistic so i like good explanation, i like talking via skype while playing and i hate it when i get trolled :P/>/> and i cant wait to develop on the cool programs you guys make! :D/>/>
what are you the best at: "Lua, i like programming with OOP(Object Orient Porgramming), i like to write big game's and i just love remote control virusus"
programs that you have made: "i only have got 1 really good program: http://www.computercraft.info/forums2/index.php?/topic/1066-132rpg-game-01-by-wilcomega-v02-upcomming/"
How can we contact you?: you can contact me via skype, i will give it when i come on the server
more info: i am autistic so i like good explanation, i like talking via skype while playing and i hate it when i get trolled :P/>/> and i cant wait to develop on the cool programs you guys make! :D/>/>
Posted 10 April 2012 - 04:37 PM
ill help program you already know what i can do from my server :P/>/>sweet you can you send me your skype in a email if you have 1 it just makes it a lot ezyer my email is rex41043@gmail.comHello, I could be a programmer?
Something I've made: http://www.computerc...smads-programs/ xDsweet you can you send me your skype in a email if you have 1 it just makes it a lot ezyer my email is rex41043@gmail.comWould help too
Posted 25 April 2012 - 04:46 AM
Posted 25 June 2012 - 01:08 PM
im dissapointed about ur signature :P/>/>Would help too