this post was submitted on 10 Oct 2023
24 points (90.0% liked)
Technology
59653 readers
3411 users here now
This is a most excellent place for technology news and articles.
Our Rules
- Follow the lemmy.world rules.
- Only tech related content.
- Be excellent to each another!
- Mod approved content bots can post up to 10 articles per day.
- Threads asking for personal tech support may be deleted.
- Politics threads may be removed.
- No memes allowed as posts, OK to post as comments.
- Only approved bots from the list below, to ask if your bot can be added please contact us.
- Check for duplicates before posting, duplicates may be removed
Approved Bots
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
From the welcome page
Seems like it worked!
I do web dev on a daily basis, and I tend to think of HTML as "formatted" data.
A database has data in it, but it's in a format of columns and rows, like a spreadsheet.
My application fetches that raw data and uses code to manipulate it - it can inspect it, rewrite it, combine it with other data from other places, validate it against rules - all sorts of stuff.
Since my app is a web app, all that code is designed to use the data formatted in columns and rows from the database, and use it to generate new data in HTML format to send to the browser.
Technically, writing HTML for a browser is a form of programming - it's a set of instructions that tell the browser how to display the data in the HTML. It's not considered programming in a professional* sense, though, as HTML doesn't get, send, change, or process data. Its purpose is as a format for data to be sent and read by something else (the browser).
*professional as in job titles that affect your salary
Hmmm