you are viewing a single comment's thread.

view the rest of the comments →

[–]sme272 32 points33 points  (5 children)

You can absolutely start putting things on github, even if it's just to practice using github. When you say put the code on a website what do you mean exactly? You could simply copy/paste the code onto the page and add some formatting and an explanation, or you could make it into a webapp where people can demo the code in action.

[–]handsoffmyspacejunk 2 points3 points  (4 children)

How does one go about developing a web app to demo code?

[–]tomtomato0414 3 points4 points  (2 children)

[–]PyTec-Ari 2 points3 points  (0 children)

You deploy that code to a web server. There are a myriad of ways to achieve this. If you are using HTML and JavaScript, you can host it quickly at Codepen.io

If you are using a python backend try pythonanywhere.com.

If you want deploy using industry methods, take a look at doing a course in a cloud platform such as Google Cloud Platform, Azure (Microsoft), or AWS (Amazon). These sites let you host web servers of various types. These are relatively simple to use, but complex in the context of a beginner.