Hi folks, I’m so dang tired of the internet as it currently is. The idea of a small web, personal websites, returning to what the internet was intended to be sounds incredibly exciting to me and I’d like to invest in that… but I don’t really know where to start? So much of what I read seems to have a ton of coding jargon. I clicked on Small Web 101 and it was a masterlist of somewhat confusing links.

The most coding I’ve done was on Khan Academy as a teenager or setting up an automatic macro to run the coliseum for me in Flight Rising. I pirate basically everything I watch but I’ve only torrented one or two things and don’t really grasp how that works. I don’t really know anything about my laptop but I have a vague idea that I should switch to Linux and I replaced the screen once.

What’s step one for a wannabe Small Web enthusiast?

  • Opisek@piefed.blahaj.zone
    link
    fedilink
    English
    arrow-up
    3
    ·
    edit-2
    6 days ago

    HTML is the basic language that describes the layout of your webpage, the text, etc.

    CSS is for the looks of everything.

    JavaScript lets you have interactive things on the website.

    TypeScript is JavaScript with extra features for the developers, but it compiles down to JavaScript still.

    Python is a scripting language that you can use to create a webserver. You can also do that with JavaScript. There are also ways to make Python run in the browser but it’s still in its infancy tbh.

    Edit: Hence, I would suggest to first learn to make some static websites with HTML and CSS and later JavaScript. Those are basics that you will need to know, even if you use other frameworks, i.e., I would not recommend looking into React or Python (Flask) etc. until much later, because they all presume that you already know HTML+CSS+JS. Hit me up if you have any questions or need some assistance.