Jump to content




Idea Exchange

networking lua command networking pocket wireless networking

720 replies to this topic

#41 remiX

  • Members
  • 2,076 posts
  • LocationSouth Africa

Posted 28 March 2013 - 01:09 AM

View PostAzhf, on 27 March 2013 - 01:13 PM, said:

Also, can someone make or is there already an html API? That would be awesome :P

html api?
how do you mean?

#42 elfin8er

  • Members
  • 133 posts

Posted 28 March 2013 - 06:41 AM

View PostremiX, on 28 March 2013 - 01:09 AM, said:

View PostAzhf, on 27 March 2013 - 01:13 PM, said:

Also, can someone make or is there already an html API? That would be awesome :P

html api?
how do you mean?
I think he wants to use html to program computercraft.

#43 MysticT

    Lua Wizard

  • Members
  • 1,597 posts

Posted 28 March 2013 - 06:54 AM

I started to make an html parser, just for fun, but I never finished it... Why can't I finish a project? :P

View Postelfin8er, on 28 March 2013 - 06:41 AM, said:

View PostremiX, on 28 March 2013 - 01:09 AM, said:

View PostAzhf, on 27 March 2013 - 01:13 PM, said:

Also, can someone make or is there already an html API? That would be awesome :P

html api?
how do you mean?
I think he wants to use html to program computercraft.
Maybe build GUIs, NEVER to program, html is not a programming language. :D

#44 remiX

  • Members
  • 2,076 posts
  • LocationSouth Africa

Posted 28 March 2013 - 07:29 AM

View PostMysticT, on 28 March 2013 - 06:54 AM, said:

I started to make an html parser, just for fun, but I never finished it... Why can't I finish a project? :P

May I have a glimpse at it or a description of what it does? :P

#45 MysticT

    Lua Wizard

  • Members
  • 1,597 posts

Posted 28 March 2013 - 07:40 AM

View PostremiX, on 28 March 2013 - 07:29 AM, said:

View PostMysticT, on 28 March 2013 - 06:54 AM, said:

I started to make an html parser, just for fun, but I never finished it... Why can't I finish a project? :P

May I have a glimpse at it or a description of what it does? :P
It's just an html parser. It reads the html file and gets the tags. I didn't even started with the rendering, so it's pretty useless :P
I'll try to find it and see if I can finish it, or at least release what I have for someone else to continue.

#46 theoriginalbit

    Semi-Professional ComputerCrafter

  • Moderators
  • 7,332 posts
  • LocationAustralia

Posted 28 March 2013 - 05:34 PM

View PostremiX, on 28 March 2013 - 07:29 AM, said:

View PostMysticT, on 28 March 2013 - 06:54 AM, said:

I started to make an html parser, just for fun, but I never finished it... Why can't I finish a project? :P

May I have a glimpse at it or a description of what it does? :P
here you go, here is a HTML parser made in Lua about 6 years ago... :P
https://github.com/l...r/html/html.lua

#47 ardera

  • Members
  • 503 posts
  • LocationGermany

Posted 29 March 2013 - 05:49 AM

A video suite for lightshot :)

#48 Azhf

  • Members
  • 180 posts
  • LocationMurrika

Posted 29 March 2013 - 08:33 AM

View PostMysticT, on 28 March 2013 - 06:54 AM, said:

I started to make an html parser, just for fun, but I never finished it... Why can't I finish a project? :P

View Postelfin8er, on 28 March 2013 - 06:41 AM, said:

View PostremiX, on 28 March 2013 - 01:09 AM, said:

View PostAzhf, on 27 March 2013 - 01:13 PM, said:

Also, can someone make or is there already an html API? That would be awesome :P

html api?
how do you mean?
I think he wants to use html to program computercraft.
Maybe build GUIs, NEVER to program, html is not a programming language. :D
First, I'm 90% sure it is a programming language, if not a coding one, and I mean add html commands in edit <file> So I could make an html-type document. Not ALWAYS to use, just when I feel like refreshing my html memory.

#49 jag

  • Members
  • 533 posts
  • LocationStockholm, Sweden

Posted 29 March 2013 - 08:44 AM

View PostAzhf, on 29 March 2013 - 08:33 AM, said:

First, I'm 90% sure it is a programming language, if not a coding one, and I mean add html commands in edit <file> So I could make an html-type document. Not ALWAYS to use, just when I feel like refreshing my html memory.
HTML does not fit into the definition of a "programming language". Therefore you don't say it is.
There are familiar languages such as CSS that aren't either a programming language.

HTML does not give you the functionality to make executable code within it. But it does open the opportunity of embedding other languages such as following:
'# JavaScript #'
<script>
	// Code
</script>

'# Php #'
<?php
	// Code
?>

'# Asp #'
<%
	' Code '
%>

etc.


#50 cotec

  • Members
  • 11 posts

Posted 29 March 2013 - 10:35 AM

Hey guys, i need some ideas how a "perfect" OS should be. It would be nice if someone would say his/her opinion to the following points:
* Fast OS or nice graphics and animations? (Loading Screen?)
* Keep old programs and link them to the desktop for faster working? (for example: lua console)
* Monitor (touch) support necessary?
* Preinstall often-used programms like Thunderbird ?
* Online Appstore / Online Filestorage or anything like that?

#51 Azhf

  • Members
  • 180 posts
  • LocationMurrika

Posted 29 March 2013 - 11:03 AM

View Postcotec, on 29 March 2013 - 10:35 AM, said:

Hey guys, i need some ideas how a "perfect" OS should be. It would be nice if someone would say his/her opinion to the following points:
* Fast OS or nice graphics and animations? (Loading Screen?)
* Keep old programs and link them to the desktop for faster working? (for example: lua console)
* Monitor (touch) support necessary?
* Preinstall often-used programms like Thunderbird ?
* Online Appstore / Online Filestorage or anything like that?
*Balanced
*Yes
*Maybe, though some people such as on servers can't get them.
*Yes
*Yes

#52 Dlcruz129

    What's a Lua?

  • Members
  • 1,423 posts

Posted 29 March 2013 - 12:01 PM

HTML is a markup language, hence the name HyperText Markup Language. It can't even run programs, but it can run scripts. There's a reason it's called the <script> tag and not the <program> tag.

#53 elfin8er

  • Members
  • 133 posts

Posted 29 March 2013 - 01:43 PM

View PostAzhf, on 29 March 2013 - 11:03 AM, said:

View Postcotec, on 29 March 2013 - 10:35 AM, said:

Hey guys, i need some ideas how a "perfect" OS should be. It would be nice if someone would say his/her opinion to the following points:
* Fast OS or nice graphics and animations? (Loading Screen?)
* Keep old programs and link them to the desktop for faster working? (for example: lua console)
* Monitor (touch) support necessary?
* Preinstall often-used programms like Thunderbird ?
* Online Appstore / Online Filestorage or anything like that?
*Balanced
*Yes
*Maybe, though some people such as on servers can't get them.
*Yes
*Yes


#54 Azhf

  • Members
  • 180 posts
  • LocationMurrika

Posted 30 March 2013 - 07:56 AM

Can someone make an http thing to this life simulation game: http://www.playalterego.com/alterego I've seen people do this by sending responses back from Cleverbot(CCleverbot) And such, and it would be awesome if I could play this game in CC.

#55 sasaa_86

  • Members
  • 6 posts

Posted 31 March 2013 - 12:08 AM

I did'nt find it anywhere so just suggesting it.

I would love a programmable cart/train with a chest...

maybe combine a turtle and chest with a cart
or chest-cart with turtle offcourse

i like steve carts but it's a pain to use it with CC

turtle.rail() to see if there's a rail infront of it (so it can deploy one if needed)
turtle.detectLeft(), turtle.detectRight(), turtle.dropLeft() and turtle.dropRight() would be nice to
or the ability to turn the turtle in the cart.

or a commant that would mount the turtle to the cart like
turtle.mountDown()

Please let me know if this already exists.

#56 theoriginalbit

    Semi-Professional ComputerCrafter

  • Moderators
  • 7,332 posts
  • LocationAustralia

Posted 31 March 2013 - 11:35 PM

Someone should make Bejeweled... that is all...

#57 TheOddByte

    Lazy Coder

  • Members
  • 1,607 posts
  • LocationSweden

Posted 31 March 2013 - 11:48 PM

View Posttheoriginalbit, on 31 March 2013 - 11:35 PM, said:

Someone should make Bejeweled... that is all...
I was gonna say that! :P
So.. You're not the only one thinking about that..
I'll maybe try this.

#58 theoriginalbit

    Semi-Professional ComputerCrafter

  • Moderators
  • 7,332 posts
  • LocationAustralia

Posted 31 March 2013 - 11:50 PM

View PostHellkid98, on 31 March 2013 - 11:48 PM, said:

I was gonna say that! :P
So.. You're not the only one thinking about that..
I'll maybe try this.
I was considering making it... but I have way too much on my plate as it is...

#59 robhol

  • Members
  • 182 posts

Posted 01 April 2013 - 12:23 AM

HTML is *not* a programming language. If you're 90% sure it is, you're 90% wrong.

#60 theoriginalbit

    Semi-Professional ComputerCrafter

  • Moderators
  • 7,332 posts
  • LocationAustralia

Posted 01 April 2013 - 12:32 AM

View Postrobhol, on 01 April 2013 - 12:23 AM, said:

HTML is *not* a programming language. If you're 90% sure it is, you're 90% wrong.
way to bring back a convo that was a few days old... :P we are onto a new topic now. Bejeweled :P





1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users