Live data from Hacker News

Designer eager to become Developer

news.ycombinator.com

1–10 of 16 posts

Designer eager to become Developer

#1
I have put together a few web pages (html,css,jQuery) but am very new to Web Development. I have only done front-end design. I am comfortable with Linux but don't know Apache or MySQL but am in the process of learning Rails as my framework. Will learning Rails be better then learning a LAMP stack for getting a website online? Or am I comparing apples and oranges? And what would be some different hosting options for each?

Re: Designer eager to become Developer

#2
Choice of language is pretty much a matter of comfort when you're first learning. The question is, do you want to be using Ruby/Rails or PHP/Wordpress/Codeigniter/etc. If you're just learning, you're going to want to code in whatever language you choose. Just for reference, you can create backends for websites in Clojure, Java, Python, Haskell, go, JavaScript(node.js), etc as well.

I'd say use Ruby/Rails if you want to create webapps and PHP/etc if you want to create Wordpress sites. Someone more experienced than me in these languages can comment further.

Heroku.com supports Ruby and from using it with Clojure and node.js apps, I highly suggest this route even if you enjoy setting up your own servers. You can also use providers like Amazon EC2/Joyent/Rackspace and set up your own box to be either a LAMP stack or Ruby/Rails.

There is a long list of Databases to choose from these days, including: MySQL, PostgreSQL, Riak, CouchDB, MongoDB, Cassandra, etc.

Truly the answer you're looking for is "Just start somewhere". The amount of tech you can choose between is dizzying and you'll eventually get to a point where you can make your own decisions if you just keep hacking.

Re: Designer eager to become Developer

#3
You have to decide what kind of developer you want to be. A hobbyist would probably go with the most out of the box stuff, so would use something like rails. You could be a specialist developer who only knows one framework and language. Or if you want to be a total pro you will want to learn all the frameworks because you are very adverse to your coworkers knowing anything you don't.

Re: Designer eager to become Developer

#4
post #2

Choice of language is pretty much a matter of comfort when you're first learning. The question is, do you want to be using Ruby/Rails or PHP/Wordpress/Codeigniter/etc. If you're just learning, you're going to want to code in whatever language you choose. Just for reference, you can create backends for websites in Clojure, Java, Python, Haskell, go, JavaScript(node.js), etc as well. I'd say use Ruby/Rails if you want…

Thanks for the great reply to start. I clearly am a little over my head and am always looking for the "right direction" to go and end up getting caught up in buzzwords. I only have a few web pages that I need hosted, so frameworks aside...would hosting options such as linode or rackspace be the best option?

Re: Designer eager to become Developer

#5

You have to decide what kind of developer you want to be. A hobbyist would probably go with the most out of the box stuff, so would use something like rails. You could be a specialist developer who only knows one framework and language. Or if you want to be a total pro you will want to learn all the frameworks because you are very adverse to your coworkers knowing anything you don't.

I completely agree and I do want to be a total pro but am too spread out. I need to start focusing on certain aspects...maybe learn the ins-and-outs of a complete framework?..like Rails while continually learning more and more in-depth HTML, CSS, and JS? I guess my aim is to be a full-stack developer but am struggling finding my footing on the server-side of things.

Re: Designer eager to become Developer

#6
I'd say the stack to learn depends on what you want. Basically, the best bet for a job anywhere is knowing LAMP plus frontend (which you already can). I think rails/ruby is prolly going to be harder but if thats what you like then go for it :) As far as apache goes if you just want a job as a developer basically all you need to know is mod_rewrite aka regex, and some really basic other stuff like virtualhosts, etc that you can learn in a day. On the other hand SQL is going to be harder, learning "enough" shouldn't be a problem, but to know how to use joins,views,triggers,migrations , etc is something you should start on in tandem with your programming language. I know too many developers who don't concentrate enough on knowing/managing their data when this is always the heart of your application. As far as hosting goes, with LAMP you all you need is a nix machine somewhere, I'd suggest getting a linode (http://www.linode.com/). This also has the added bonus of great docs and you can try out and teach yourself everything on your own machine w/out crappy cpanel stuff.

Good luck!!

Re: Designer eager to become Developer

#7
I would just begin to expand on your back-end skills. Since you have HTML/CSS/JQUERY under your belt. Continue to work on those, and also begin with a database (MySQL works fine), once you learn basic database-ing, then begin working on the controlling logic between the two. I would recommend PHP only because it's a quick language to learn and get busy with. This gives you a solid set of skills and a good view of the process. From there you can begin to enhance what you do with the two.

Nothing needs to be super-advanced, get down and dirty and learn quickly; more advanced work will come with time. As biscarch said 'just start somewhere'.

Re: Designer eager to become Developer

#8
A LAMP stack will be easier to deploy simply because pretty much any cheap hosting you get as a playground will support it out of the box. Rails is a little more tricky to deploy. That said, Ruby and Rails is, in my opinion, more fun than an equivalent in PHP (pure opinion though so don't let that colour your experience).

I would suggest taking one bite at a time - find the easiest deployment possible for your chosen stack (if it's rails, then deploy some test projects to heroku). Learn to program a little before trying to jump in and do the Apache setup etc. Nothing is more frustrating than wanting to see your creation on-line but you just keep hitting your head against a brick wall because you can't deploy. I'll also put in a good word for webfaction for good cheap hosting that supports rails, django, and php very nicely without you having to do a lot of server admin - perfect for a playground.

Re: Designer eager to become Developer

#9
post #6

I'd say the stack to learn depends on what you want. Basically, the best bet for a job anywhere is knowing LAMP plus frontend (which you already can). I think rails/ruby is prolly going to be harder but if thats what you like then go for it :) As far as apache goes if you just want a job as a developer basically all you need to know is mod_rewrite aka regex, and some really basic other stuff like virtualhosts, etc th…

Thanks! That's good to know about Apache. I haven't even had a chance to look into it thoroughly. Maybe I'll dive into it this weekend :) So if I want to get up and running quickly my best bet would be to grab a linode with a LAMP stack?

Re: Designer eager to become Developer

#10

I would just begin to expand on your back-end skills. Since you have HTML/CSS/JQUERY under your belt. Continue to work on those, and also begin with a database (MySQL works fine), once you learn basic database-ing, then begin working on the controlling logic between the two. I would recommend PHP only because it's a quick language to learn and get busy with. This gives you a solid set of skills and a good view of the…

Yeah, LAMP seems to be the best route to get up and going faster, I think I'll start with that. I need to be learning those DB and process skills to begin with, which makes taking the LAMP approach probably the best option. Thanks.
Post reply on HN