Reply
  • Feb 9, 2020
    ·
    2 replies

    I'm remaking my website: boysdontcry.net/experiences
    I made this in Wordpress, I've been teaching myself html/css over the past week or two.
    I've remade the whole website now, in HTML & CSS.
    I just don't know how to fetch the data inputted into the forms. How do I get this data to be sent to the server? This involves some back-end type language, right?
    Can anyone point me in the right direction?

  • Feb 10, 2020
    ·
    edited
    ·
    1 reply
    space0cadet

    I'm remaking my website: https://boysdontcry.net/experiences/
    I made this in Wordpress, I've been teaching myself html/css over the past week or two.
    I've remade the whole website now, in HTML & CSS.
    I just don't know how to fetch the data inputted into the forms. How do I get this data to be sent to the server? This involves some back-end type language, right?
    Can anyone point me in the right direction?

    You got a database right? Why don't you use a post request through AJAX/jQuery

    Also maybe read this if you haven't : developer.mozilla.org/en-US/docs/Learn/Forms/Sending_and_retrieving_form_data

  • Feb 10, 2020

    vibecheckapp.com

    peep this s***

  • Feb 10, 2020
    ·
    1 reply
    texmaker

    You got a database right? Why don't you use a post request through AJAX/jQuery

    Also maybe read this if you haven't : https://developer.mozilla.org/en-US/docs/Learn/Forms/Sending_and_retrieving_form_data

    don't know javascript yet -- ima set this project aside till i do (: thanks for the pointer, appreciate you.

  • Feb 10, 2020
    ·
    2 replies
    space0cadet

    don't know javascript yet -- ima set this project aside till i do (: thanks for the pointer, appreciate you.

    You don't necessarily need javascript but you're gonna need a backend framework - any of them would be fine, just choose whatever language you want to learn.

    Also if your website is just simple html/css might be a good opportunity to learn about frontend frameworks like React and maybe use some library like material or at least use bootstrap

    Wordpress is nice to make some simple stuff but it's pretty outdated and not that in demand anymore compared to the modern frameworks

    For javascript just read the mozilla tutorials : developer.mozilla.org/en-US/docs/Learn/JavaScript
    For react (or any frameworks you want to use) read the official documentation : reactjs.org/tutorial/tutorial.html and just google stuff on stackoverflow whenever you run into an issue

  • Feb 10, 2020
    ·
    1 reply
    texmaker

    You don't necessarily need javascript but you're gonna need a backend framework - any of them would be fine, just choose whatever language you want to learn.

    Also if your website is just simple html/css might be a good opportunity to learn about frontend frameworks like React and maybe use some library like material or at least use bootstrap

    Wordpress is nice to make some simple stuff but it's pretty outdated and not that in demand anymore compared to the modern frameworks

    For javascript just read the mozilla tutorials : https://developer.mozilla.org/en-US/docs/Learn/JavaScript
    For react (or any frameworks you want to use) read the official documentation : https://reactjs.org/tutorial/tutorial.html and just google stuff on stackoverflow whenever you run into an issue

    Frameworks are just like.. templates for the website, right? kind of? it shaves off some time from building everything from scratch?

  • Feb 10, 2020
    ·
    1 reply
    texmaker

    You don't necessarily need javascript but you're gonna need a backend framework - any of them would be fine, just choose whatever language you want to learn.

    Also if your website is just simple html/css might be a good opportunity to learn about frontend frameworks like React and maybe use some library like material or at least use bootstrap

    Wordpress is nice to make some simple stuff but it's pretty outdated and not that in demand anymore compared to the modern frameworks

    For javascript just read the mozilla tutorials : https://developer.mozilla.org/en-US/docs/Learn/JavaScript
    For react (or any frameworks you want to use) read the official documentation : https://reactjs.org/tutorial/tutorial.html and just google stuff on stackoverflow whenever you run into an issue

    also javascript has back-end capabilities?? thats what AJAX/jQuery is?

  • Feb 10, 2020
    ·
    edited
    ·
    1 reply
    space0cadet

    Frameworks are just like.. templates for the website, right? kind of? it shaves off some time from building everything from scratch?

    Hmm not sure how much of programming you know so I'll try to explain to it simply:
    So most modern web apps have this architecture that's divided in 3 parts :

    • presentation layer : content rendered by the browser (front-end)
    • business layer : content processing and generation level application server, e.g., Java EE, ASP.NET, PHP (middleware)
    • data layer : the database, comprising both data sets and the database management system or RDBMS software that manages and provides access to the data (back-end)

    Frameworks/libraries are tools that are here to help you write a layer of the application through following their logic.
    You can write an app without using them BUT they make programming easier for you and promote good programming practices all the while reducing code needed to be written for your application to work.
    It's way better to use any framework that fits your needs than to program everything from scratch.

  • Feb 10, 2020
    ·
    edited
    space0cadet

    also javascript has back-end capabilities?? thats what AJAX/jQuery is?

    Javascript has back-end capabilities through node.js and frameworks like express.js
    ajax is like built-in tool to make http request for the client to fetch data from the server (it's an easy way to call your backend if you want and you're gnna write it in your front-end)

  • Feb 10, 2020
    texmaker

    Hmm not sure how much of programming you know so I'll try to explain to it simply:
    So most modern web apps have this architecture that's divided in 3 parts :

    • presentation layer : content rendered by the browser (front-end)
    • business layer : content processing and generation level application server, e.g., Java EE, ASP.NET, PHP (middleware)
    • data layer : the database, comprising both data sets and the database management system or RDBMS software that manages and provides access to the data (back-end)

    Frameworks/libraries are tools that are here to help you write a layer of the application through following their logic.
    You can write an app without using them BUT they make programming easier for you and promote good programming practices all the while reducing code needed to be written for your application to work.
    It's way better to use any framework that fits your needs than to program everything from scratch.

    thanks man, i appreciate you a lot.

  • Feb 11, 2020
    ·
    1 reply

    project suggestions? i have no idea what to make

  • Feb 11, 2020
    ·
    1 reply
    oogie

    project suggestions? i have no idea what to make

    github.com/karan/Projects
    github.com/tastejs/awesome-app-ideas

  • Feb 11, 2020
    texmaker

    https://github.com/karan/Projects
    https://github.com/tastejs/awesome-app-ideas

  • Feb 11, 2020
    space0cadet

    I'm remaking my website: https://boysdontcry.net/experiences/
    I made this in Wordpress, I've been teaching myself html/css over the past week or two.
    I've remade the whole website now, in HTML & CSS.
    I just don't know how to fetch the data inputted into the forms. How do I get this data to be sent to the server? This involves some back-end type language, right?
    Can anyone point me in the right direction?

    You can do this with Javascript but if you only know HTML/CSS, you can’t do it unless there’s a plugin or something that does it for you, which I don’t know anything about.

  • Feb 11, 2020

    Determined to get a job in tech by the end of the year....

  • Mar 4, 2020
    ·
    edited

    s

  • Mar 4, 2020
    Mangaka

    @​S
    Any web devs or people getting into web development?

    VR Dev for dayz

  • Apr 8, 2020
    ·
    2 replies

    stressed. i suck at doing projects, cause i keep going back tutorials to make sure i know enough to do them

  • Apr 9, 2020
    ·
    1 reply
    oogie

    stressed. i suck at doing projects, cause i keep going back tutorials to make sure i know enough to do them

    i think thats okay... i build a lot of things referring back to tutorials. as long as you are learning i guess.

  • Apr 9, 2020
    ·
    1 reply
    oogie

    stressed. i suck at doing projects, cause i keep going back tutorials to make sure i know enough to do them

    Yea that’s fine. You’re still learning like this, and even the most experienced developers still look at documentation for whatever language or framework they’re using often.

  • Apr 10, 2020
    SBMike

    Yea that’s fine. You’re still learning like this, and even the most experienced developers still look at documentation for whatever language or framework they’re using often.

    yeah i get that. just thought i'd be able to make things without someone telling me what to do. feels like i've been learning forever & not enough doing so that's where im at. tutorial hell is real

  • Apr 10, 2020
    ·
    1 reply
    donald glover

    i think thats okay... i build a lot of things referring back to tutorials. as long as you are learning i guess.

    what kind of things do you make?

  • Apr 10, 2020
    ·
    1 reply
    oogie

    what kind of things do you make?

    nothing worth sharing

    still learning a lot. the biggest project i've made is an e-commerce website w/ a login, a cms, a cart + checkout, etc. did it to practice front-end + back-end.

  • Apr 10, 2020

    does anyone have a project they'd feel comfortable sharing? would love to see it.

  • Apr 11, 2020
    ·
    1 reply
    donald glover

    nothing worth sharing

    still learning a lot. the biggest project i've made is an e-commerce website w/ a login, a cms, a cart + checkout, etc. did it to practice front-end + back-end.

    better than anything ive made. took some data and put it on the screen (apis) with horrible styling cause i havent touched html & css too much

    i thought this one guys project was cool, made a slider showing pictures based on instagram hashtags you searched for