d2jsp
Log InRegister
d2jsp Forums > Off-Topic > Computers & IT > Programming & Development > Recommend Me A Method For This Purpose > Lmk!
Add Reply New Topic New Poll
Member
Posts: 23,337
Joined: Nov 2 2006
Gold: 7,528.30
Nov 24 2014 09:45pm
So, I have a little experience with Java, and not as much with Python, and learned a bit about HTML long long ago.

I want to make a very basic website, could probably done in blogger or wordpress easily enough, that will just have some articles on the main page, with links to related articles/websites etc.

I'll still need to get webhosting (willing to pay a small amount).

I want to if it's worth starting on a web language, and if so, which one. Also, if you know of any free resources with a .edu email (just got a huge dev package from github). i can probably get any software needed.

thanks,

This post was edited by ForTheMathematics on Nov 24 2014 09:50pm
Member
Posts: 1,358
Joined: Dec 30 2012
Gold: 0.10
Nov 25 2014 12:52am
If you just need something basic and don't plan on building more sites, I'd personally just use a site builder like you mentioned. Wordpress is definitely one of the better ones imo.

However, if you plan on building more sites and have an interesting in know web development languages... Brush up on HTML again. It probably hasn't changed too much since the last time you used it. I'd then learn javascript, jQuery, and PHP. Also, from what I've heard, Ruby is a pretty good web development language which is user friendly, relatively speaking. I've only used it a couple of times so I can say whether it is or not but it might be worth looking into.

Here's a pretty good site that teaches you the fundamentals of a few different languages (php, javascript, ruby, python, etc) in an interactive way

http://www.codecademy.com/
Member
Posts: 23,337
Joined: Nov 2 2006
Gold: 7,528.30
Nov 26 2014 06:08pm
Yeah I used that site for python. i'll probably just whip something up in wordpress to experiment.

any reason as to why I should brush up html?
Member
Posts: 1,358
Joined: Dec 30 2012
Gold: 0.10
Nov 26 2014 06:59pm
Quote (ForTheMathematics @ Nov 26 2014 04:08pm)
Yeah I used that site for python. i'll probably just whip something up in wordpress to experiment.

any reason as to why I should brush up html?


HTML is what all sites are structured with. If you're going to use a CMS such as Wordpress, it's not completely necessary to know as it dynamically generates the HTML for you. If you plan on writing your own sites from scratch, you would need to know it.

This post was edited by SelfTaught on Nov 26 2014 07:00pm
Member
Posts: 32,925
Joined: Jul 23 2006
Gold: 3,804.50
Nov 26 2014 07:17pm
Quote (SelfTaught @ Nov 26 2014 07:59pm)
HTML is what all sites are structured with. If you're going to use a CMS such as Wordpress, it's not completely necessary to know as it dynamically generates the HTML for you. If you plan on writing your own sites from scratch, you would need to know it.


dont forget, if you wanna write anything that needs to manipulate the html or if you need to put something in the html manually, that html needs to be readable. tools that auto generate html/css are notorious for writing very poor html/css. if you have outlook, look at any email you have. write out the html/css you would write to generate that exact email. then right click + view source to look at the html that was auto generated. it looks 10x worse than the html/css you just wrote by hand.
Member
Posts: 1,358
Joined: Dec 30 2012
Gold: 0.10
Nov 26 2014 07:34pm
Quote (carteblanche @ Nov 26 2014 05:17pm)
dont forget, if you wanna write anything that needs to manipulate the html or if you need to put something in the html manually, that html needs to be readable. tools that auto generate html/css are notorious for writing very poor html/css. if you have outlook, look at any email you have. write out the html/css you would write to generate that exact email. then right click + view source to look at the html that was auto generated. it looks 10x worse than the html/css you just wrote by hand.


Ah yeah, good point. The code Wordpress generates isn't too bad actually. I have seen site builders that output god awful code such as dreamweaver. So i guess it just depends on the builder.

I usually just view the html source through firebug or the browser's native dev tools which automagically formats it, even if its minified. That can become a hassle though in certain situations.



Go Back To Programming & Development Topic List
Add Reply New Topic New Poll