Lisp for web apps? Tell me more.. (seriously)
1–10 of 31 posts
Re: Lisp for web apps? Tell me more.. (seriously)
#2Re: Lisp for web apps? Tell me more.. (seriously)
#3the point is the language is only one piece of the equation -- you want to be spending your time developing your app, not rolling your own supporting elements (templating systems, init scripts, form validators, sql bindings/mappers, etc.) and of course i'm sure others will point out reddit's switch from lisp to python.
Re: Lisp for web apps? Tell me more.. (seriously)
#4And here's a list of different web server resources: http://www.cl-user.net/asp/tags/web-servers
Re: Lisp for web apps? Tell me more.. (seriously)
#5Here's a detailed link on setting up a scheme server (perhaps more detailed than many system admins would need). I'd err towards mod_lisp under Apache rather than run SISC Scheme under Tomcat, but this is a pleasant read: http://www.lisperati.com/quick.html
Re: Lisp for web apps? Tell me more.. (seriously)
#6Now I'm at a point where my venture absolutely must succeed. I'll take every advantage I can get.
Re: Lisp for web apps? Tell me more.. (seriously)
#7http://www.gigamonkeys.com/book/practical-web-programming-with-allegroserve.html
Re: Lisp for web apps? Tell me more.. (seriously)
#8There's also this resource which is very much for beginners but if you're just starting to find out all about using Lisp to do web development this might be a good read: http://www.gigamonkeys.com/book/practical-web-programming-with-allegroserve.html
Re: Lisp for web apps? Tell me more.. (seriously)
#9For our stuff, I started with rails, just found it too hard to get started. I had to decide what the tables looked like, how I was going to divide the data, write a model for every table then connect it to a page.
With UCW, I write code which connects to a function call. Simple.
Re: Lisp for web apps? Tell me more.. (seriously)
#10if you're thinking of developing a web app in lisp but haven't looked at python or ruby, you might consider them -- remember, it's not just the raw language but also the surrounding infrastructure, and python (django, turbogears) and ruby (rails) have arguably much more developed frameworks, and also arguably have most of the interesting language features that would draw you to lisp in the first place. the point is t…
Assuming that the most precious commodity is development time. I'd say rails/django don't even come close to UCW in getting stuff done.