Tagged Questions
The kiss tag has no wiki summary.
20
votes
15answers
18k views
Best java mvc framework implementation for web apps [closed]
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
11
votes
14answers
402 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 ...
9
votes
4answers
304 views
python - list operations
Given a list of unsorted numbers, I want to find the smallest number larger than N (if any).
In C#, I'd do something like this (checks omitted) :
var x = list.Where(i => i > N).Min();
What's ...
9
votes
4answers
2k 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 ...
7
votes
14answers
806 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 ...
6
votes
5answers
270 views
When KISS and DRY collide
I'm an obsessive follower of the DRY and KISS principles but last week I had a case where both seem to contradict each other:
For an application I was doing, I had to implement a loop for times which ...
6
votes
2answers
865 views
How to send a custom command to a .Net windows Service from.Net code?
As in the following link, one can stop, start, and "stop, then start" a service using C# code.
http://www.csharp-examples.net/restart-windows-service/
I have baked a .Net service that does implement ...
5
votes
5answers
134 views
Is there a more correct type for passing in the file path and file name to a method
What I mean by this question is, when you need to store or pass a URL around, using a string is probably a bad practice, and a better approach would be to use a URI type. However it is so easy to ...
4
votes
2answers
265 views
When is LINQ (to objects) Overused?
My career started as a hard-core functional-paradigm developer (LISP), and now I'm a hard-core .net/C# developer. Of course I'm enamored with LINQ. However, I also believe in (1) using the right ...
4
votes
9answers
308 views
Are KISS and YAGNI at odds with the trends towards increasingly more sophisticated patterns and practices like SOA, DDD, IoC, MVC, POCO, MVVM? [closed]
It seems to me that Agile methodologies encourage us to keep things simple, and lean, and not add complexity and sophistication until its needed. But the pace and volume of technology change ...
4
votes
10answers
397 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 ...
2
votes
3answers
70 views
javascript: Set Property or return Values? (simple way)
i've created a short function to set and retrieve values from a object (> get points by name), but I'm not sure if my solution is that really smart.
What modifications do you recommend to perfect ...
1
vote
1answer
54 views
Why does my KISS FFT plot show duplicate peaks mirrored on the y-axis?
I'm a beginner with FFT concepts and so what I understand is that if I put in 1024 signals, I'll get 513 bins back ranging from 0hz to 22050Hz (in the case of a 44100Hz sampling rate). Using KISS FFT ...
1
vote
1answer
32 views
is this technique ok with framworks: storing all texts in seperate plain text file?
I am considering to use a php framework (never used one before), I know I have to abandon the way I am used to work (I can deal with this), among many concerns a first thing that comes in my mind is ...
1
vote
6answers
139 views
Can I avoid repeating myself in this situation (Java)
if (openFile == null) {
new AppFileDialog().chooseFile("Save", appFrame);
}
if (openFile == null) {
return;
}
Here I need to check to see if the user has already chosen a file. ...
0
votes
1answer
43 views
Better name than DELEGATE_TRY_PERFORM_SELECTOR_WITH_SELF
I have a lot of viewcontrollers in my project that just redirects to its delegate.
So I have made a define for it, but I'm not so happy about it's name.
How would you name it or would you do it in ...
0
votes
1answer
182 views
kiss FFT bin amplitude question
I have been spending quite a bit of time studying FFT's. I am in particular interesting in using KISSFFT because it is a very portable C implementation.
I am still very unclear how to turn i[x] and ...
0
votes
2answers
87 views
CMS projects to learn from?
There have been quite a few questions about CMS systems but I wonder if there are any good open-source versions available that support ASP.NET MVC (preferably 2.0) and work well with SQL Server?
I'm ...
0
votes
2answers
76 views
How to KISS and smart this method
I have an action in my RoR application, and it calls a different script depending on the user running it.
def index
@user = User.find(session[:user_id], :include => [ :balances, :links, ...
0
votes
2answers
639 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.
...
0
votes
3answers
348 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 ...