Poll: What Programming Language Do You Use for Server Side Web Development?
51–60 of 135 posts
Re: Poll: What Programming Language Do You Use for Server Side Web Development?
#52Re: Poll: What Programming Language Do You Use for Server Side Web Development?
#53PHP. It may be old, tricky to debug, and cumbersome to write long projects with but the ability to bounce in and out of logic on a simple, proven, well adopted stack that has plenty of knowledge-base and ready machines everywhere has it's advantages. Plus, I've heard a lot of developers knock PHP but I've yet to see a problem solved with Ruby or Python that couldn't have been solved with PHP.
Re: Poll: What Programming Language Do You Use for Server Side Web Development?
#54Re: Poll: What Programming Language Do You Use for Server Side Web Development?
#55Re: Poll: What Programming Language Do You Use for Server Side Web Development?
#56- Static typing -- I want to eliminate as many runtime bugs as I can
- Type inference -- Like in SML and Haskell
- No JVM -- Personal preference, but I'd rather not pull in this monster if I don't have to.
- Good pre-made web framework -- I've briefly looked at OCaml but the web frameworks seem disappointing. Tell me if I'm wrong!
Re: Poll: What Programming Language Do You Use for Server Side Web Development?
#57Re: Poll: What Programming Language Do You Use for Server Side Web Development?
#58Elixir is certainly my favorite to work with, so far.
Re: Poll: What Programming Language Do You Use for Server Side Web Development?
#59I haven't found a web server language to my liking yet. Maybe I'm too picky, but I'd like to satisfy all of these requirements: - Static typing -- I want to eliminate as many runtime bugs as I can - Type inference -- Like in SML and Haskell - No JVM -- Personal preference, but I'd rather not pull in this monster if I don't have to. - Good pre-made web framework -- I've briefly looked at OCaml but the web frameworks s…