Tagged Questions

4
votes
10answers
2k views

Best java mvc framework implementation for web apps

What is the best MVC framework inmplementation in java? It has to be: lightweight KISS philosophy be able to make changes to the views without compile minimalistic; few lines of code
0
votes
2answers
162 views

KISS: Simple C# application which communicates with a RESTful web service.

Following the KISS principle, I suddenly realised the following: In .NET, you can use the Entity Model Framework to wrap around a database. This model can be exposed as a web service through WCF. …
5
votes
14answers
606 views

How do you fight design complexity?

I often find myself fighting overengineering -- the person in charge of designing the software comes up with an architecture that's, way, way overcomplicated. It's all fine and dandy to have all the …
0
votes
3answers
179 views

Dead-simple web authentication for a single user

I wrote a small internal web app using (a subset of) pylons. As it turns out, I now need to allow a user to access it from the web. This is not an application that was written to be web facing, and it …
11
votes
15answers
332 views

On K.I.S.S and paving cowpaths

I'm currently developing a PHP application that's using an Access database as a backend. Not by choice you understand... the database is what the client used originally and using it is part of the …
3
votes
4answers
877 views

Coming to Ocaml from Ruby, Lisp, Haskell, and Erlang

I've been reading about Ocaml's consistent speed, rapid prototyping ability, and excellent memory management, and decided to take it up. As I've already got Ruby, *lisp, Haskell, and Erlang under my …
2
votes
10answers
245 views

Does K.I.S.S play a role in your development, if so, do you prosper from it?

In my programming life I work with the principle "K.I.S.S." - keep it simple stupid. This works out pretty well for me although the projects and tasks get even more complicated (at least for me in my …