Author Topic: Corest web programming  (Read 4378 times)

0 Members and 1 Guest are viewing this topic.

Offline Ephraim B

  • LV2 Member (Next: 40)
  • **
  • Posts: 28
  • Rating: +1/-1
    • View Profile
Corest web programming
« on: February 18, 2015, 09:38:11 pm »
I want to start creating my own website that I can see my emails, IRC chats, my calculator programs, all other notifications, and a prep for my future OS I plan on programming. Just like every programming language is compiled to Machine code, what is Web programming compiled down to?





Offline Juju

  • Incredibly sexy mare
  • Coder Of Tomorrow
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 5730
  • Rating: +500/-19
  • Weird programmer
    • View Profile
    • juju2143's shed
Re: Corest web programming
« Reply #1 on: February 18, 2015, 10:18:32 pm »
It's interpreted by the web browser, rather than compiled. HTML is not considered as a programming language, but rather as a markup language, that is, a HTML file is kind of interpreted by the browser like Word would interpret a Word document. Kind of same for Javascript, but that's indeed a programming language. The Javascript engine shipped with your browser would interpret and execute each line, line by line, or something like that.

Remember the day the walrus started to fly...

I finally cleared my sig after 4 years you're happy now?
THEGAME
This signature is ridiculously large you've been warned.

The cute mare that used to be in my avatar is Yuki Kagayaki, you can follow her on Facebook and Tumblr.

Offline Sorunome

  • Fox Fox Fox Fox Fox Fox Fox!
  • Support Staff
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 7920
  • Rating: +374/-13
  • Derpy Hooves
    • View Profile
    • My website! (You might lose the game)
Re: Corest web programming
« Reply #2 on: February 19, 2015, 06:15:26 am »
If you plan on digging into Web-Developing you should start getting yourself familiar with HTML, even though that is, as Juju said, only a markup language. HTML is still a major part of Web-developing as it is used to display stuff.

EDIT: Here you can find a pretty nice tutorial: http://www.w3schools.com/html/
« Last Edit: February 19, 2015, 06:36:22 am by Sorunome »

THE GAME
Also, check out my website
If OmnomIRC is screwed up, blame me!
Click here to give me an internet!

Offline Eeems

  • Mr. Dictator
  • Administrator
  • LV13 Extreme Addict (Next: 9001)
  • *************
  • Posts: 6265
  • Rating: +318/-36
  • little oof
    • View Profile
    • Eeems
Re: Corest web programming
« Reply #3 on: February 19, 2015, 01:35:23 pm »
Just like every programming language is compiled to Machine code, what is Web programming compiled down to?
Not every programming language is compiled to machine code. Most popular programming languages are interpreted.
Kind of same for Javascript, but that's indeed a programming language. The Javascript engine shipped with your browser would interpret and execute each line, line by line, or something like that.
Most JavaScript engines make use of bytecode to increase speed. Bytecode is almost like machine code, but it is still not run directly by the computer, instead it's more of just short-hand for interpreted code.


Aside from all that, the three languages (Programming, Markup, etc) you will want to familiarize yourself with are JavaScript, HTML and CSS. This is only for the in browser stuff. If you want to start looking into programming server side stuff (database etc) then there are a number of options. Most people start with php+mysql. I myself would recommend looking at node.js though.

A great resource for learning web programming is w3schools as Sorunome mentioned. If you want to look more in depth at HTML+CSS+JavaScript though, I'd recommend Mozilla's Developer Network.
/e