Skip to content
  • Categories
  • Recent
  • Groups
  • Users
  • Tags
  • Popular
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (Lumen)
  • No Skin
Collapse
Brand Logo
  1. Home
  2. Categories
  3. Web Development
  4. Beginning Website Dev and Coding Advice Thread

Beginning Website Dev and Coding Advice Thread

Scheduled Pinned Locked Moved Web Development
13 Posts 3 Posters 603 Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • TeamSteamT TeamSteam

    This so cool! I think i might use this to make one as i have no experience myself.

    lollapaloozaL Offline
    lollapaloozaL Offline
    lollapalooza
    Global Mod
    wrote on last edited by
    #4

    @TeamSteam i can suggest a few good sites to learn from

    \'-'/
    free-palestine.carrd.co
    veteran member and moderator
    Ash Ketchum・1997-2023

    1 Reply Last reply
    0
    • VGMooseV VGMoose

      Hi! I've been making websites for a long time, too long really. It's great! If you want to start your own personal site, let's use this thread to give each other tips or support.

      I'll be checking in every day at least, so if you have a question, or need any tips, please feel free to ask!

      Initial starting resources:

      Development programs
      On PC: https://code.visualstudio.com/download
      In browser: https://vscode.dev

      Starter guide
      HTML: https://blog.hubspot.com/website/html

      Sites to host on:
      Github pages: https://pages.github.com

      If you've never ever made an HTML document ever, hubspot's guide looks pretty good. It goes over the basics of opening a file, editing, and previewing it. Once you have it looking how you want locally, hosting it is the next step.

      VSCode is a great starter IDE (or, text editor) that gets a lot of the basics right. Actually, I use VSCode for pretty much everything.

      lollapaloozaL Offline
      lollapaloozaL Offline
      lollapalooza
      Global Mod
      wrote on last edited by
      #5

      @VGMoose my browser is in my text editor
      your text editor is in your browser
      WE ARE NOT THE SAME

      lol

      \'-'/
      free-palestine.carrd.co
      veteran member and moderator
      Ash Ketchum・1997-2023

      1 Reply Last reply
      1
      • VGMooseV VGMoose

        Personally, here's an example of one of those early sites I made way back in the day: https://backpack.vgmoose.com/2008/ . This uses pure HTML and iframes to display the different pages.

        I thought I was so cool... Nowadays, the best example of a site from scratch that I'm proud of is probably the homebrew appstore web frontend: https://apps.fortheusers.org . This is coded in React and Typescript, which is a lot more advanced, but really you're just (eventually) building off those same basic starting concepts ideas.

        lollapaloozaL Offline
        lollapaloozaL Offline
        lollapalooza
        Global Mod
        wrote on last edited by
        #6

        @VGMoose also what is that GORGEOUS navbar font?
        sorry scattered thoughts lol

        \'-'/
        free-palestine.carrd.co
        veteran member and moderator
        Ash Ketchum・1997-2023

        VGMooseV 1 Reply Last reply
        0
        • TeamSteamT Offline
          TeamSteamT Offline
          TeamSteam
          Fans of Star Wars Lovers Of Latin Knights Of Tolkien pet lovers! #KeepBDNSSafe we read fanfic lol Nintendo Switch Users Marvel Fan (cool) 3ds Players Epic Gamers 55 switch players Lop Never Dies ♥BrowseDNS Children's Table★
          wrote on last edited by TeamSteam
          #7

          Like what sites @lollapalooza?

          "I am fond of pigs. Dogs look up to us. Cats look down on us. Pigs treat us as equals" ~ Winston S. Churchill

          lollapaloozaL 1 Reply Last reply
          0
          • lollapaloozaL lollapalooza

            @VGMoose also what is that GORGEOUS navbar font?
            sorry scattered thoughts lol

            VGMooseV Offline
            VGMooseV Offline
            VGMoose
            Admin
            wrote on last edited by
            #8

            @lollapalooza it's https://www.1001fonts.com/gooddog-cool-font.html with the dots removed!

            I remember using it cause it looks like the Nintendogs font

            Sign the petition! Help us figure out the browser timeout.

            1 Reply Last reply
            1
            • TeamSteamT TeamSteam

              Like what sites @lollapalooza?

              lollapaloozaL Offline
              lollapaloozaL Offline
              lollapalooza
              Global Mod
              wrote on last edited by
              #9

              @TeamSteam sadgrl.online
              w3schools.com is a must
              internettingishard.com
              html-shark.com

              \'-'/
              free-palestine.carrd.co
              veteran member and moderator
              Ash Ketchum・1997-2023

              1 Reply Last reply
              0
              • VGMooseV Offline
                VGMooseV Offline
                VGMoose
                Admin
                wrote on last edited by
                #10

                If you're in the @Coders group, there's now a Public Chat for discussing development and assistance!

                Sign the petition! Help us figure out the browser timeout.

                1 Reply Last reply
                0
                • VGMooseV Offline
                  VGMooseV Offline
                  VGMoose
                  Admin
                  wrote on last edited by
                  #11

                  I've made a beginning coding introduction tool at: https://github.com/vgmoose/GraphCoding#readme

                  It puts the code you type into the URL, updates the canvas with whatever commands you use, and allows you to edit and share it via long base64 links, for example:

                  Graph Code Visualizer

                  favicon

                  (vgmoose.dev)

                  Sign the petition! Help us figure out the browser timeout.

                  1 Reply Last reply
                  0
                  • VGMooseV Offline
                    VGMooseV Offline
                    VGMoose
                    Admin
                    wrote on last edited by
                    #12

                    The above will render the following graph and text on the canvas:
                    Screenshot 2023-11-15 at 4.29.31 PM.png

                    And this is the code it used (Javascript):

                    // set the font and draw these words
                    setFontSize(17);
                    drawText("hello", -5, 8);
                    drawText("these are some words", -4, 6);
                    drawText("neat", -3, 4);
                    
                    // set a variable
                    var bigText = "COOL!";
                    
                    // draw that variable twice near eachother
                    setFontSize(40);
                    setColor("blue");
                    drawText(bigText, -5, -1);
                    setColor("red");
                    drawText(bigText, -5.2, -1.2);
                    
                    // draw sine and cosine waves
                    setColor("green")
                    for (var x=xMin; x<xMax; x+=0.2)
                    {
                      setColor("green")
                      plot(x+1, Math.sin(x) - 5);
                      setColor("purple")
                      plot(x, Math.cos(x) - 5);
                    }
                    

                    Sign the petition! Help us figure out the browser timeout.

                    1 Reply Last reply
                    0
                    • VGMooseV VGMoose referenced this topic on
                    • pusheenP pusheen referenced this topic on
                    • VGMooseV Offline
                      VGMooseV Offline
                      VGMoose
                      Admin
                      wrote on last edited by
                      #13

                      Bumping this thread! Anyone working on some interesting projects?

                      Also, we might add basic web hosting to BDNS, so each user can have their own profile page to edit and manage (similar to caard's).

                      Sign the petition! Help us figure out the browser timeout.

                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Don't have an account? Register

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Groups
                      • Users
                      • Tags
                      • Popular