Old:

New

There have been 8 items by Goof (Search limited from 10-February 22)
Posted by
Goof
on 16 June 2016 - 07:14 PM
in
Operating Systems
Posted by
Goof
on 16 June 2016 - 07:30 PM
in
Operating Systems
Blue, on 16 June 2016 - 07:26 PM, said:
Posted by
Goof
on 20 April 2017 - 01:56 PM
in
APIs and Utilities
KidBrine, on 20 April 2017 - 12:56 AM, said:
Posted by
Goof
on 27 August 2016 - 03:21 PM
in
Operating Systems
Admicos, on 27 August 2016 - 02:13 PM, said:
CrazedProgrammer, on 27 August 2016 - 10:47 AM, said:

1c1,3
<
---
> term.clear()
> term.setTextColor(colors.blue)
> print("MarcoDOS 1.0")
26,27c28,29
< promptColour = colours.yellow
< textColour = colours.white
---
> promptColour = colours.green
> textColour = colours.blue
53c55
< printError( "No such program" )
---
> printError( "fileError: File does not exist." )
301c303
< printError( "No such program" )
---
> printError( "fileError: File does not exist." )
336c338
< write( shell.dir() .. "> " )
---
> write( shell.dir() .. "$/ > " )
Posted by
Goof
on 04 June 2016 - 08:33 AM
in
Ask a Pro
lua> x=http.get("http://budgie.blue/")
lua> x
table: somerandomID
lua> x.close()
I think you might have forgotten to add the http:// and then added www. (which in some cases appear to mess things up a bit, and hopefully in your case not work.)

Posted by
Goof
on 01 May 2017 - 06:06 PM
in
Ask a Pro
a = {name = hello) --# the variable 'hello' is not defined. (Use as string form "hello")
tab = {tabl} --# why define this if you do not use it?
table.insert(tabl, a) --# inserts a (Which is just an empty table) to the tabl reference
tabl.name = "Hello" --# Directly changes the name index of the table to the desired value ("Hello")
a = {name = hello)
^
Posted by
Goof
on 14 June 2016 - 12:17 PM
in
Ask a Pro
