Tagged Questions
The programming-paradigms tag has no wiki summary.
95
votes
41answers
4k views
What 'poor-programming' traits do engineers/scientists exhibit?
Soon, I expect to be asked to revise and improve existing code written by engineers and scientists.
I've noticed that non-programmers do not share the same programming 'eye' as computer-scientists ...
58
votes
9answers
3k views
How do functional programming languages work?
I was just reading this excellent post, and got some better understanding of what exactly object oriented programming is, how Java implements it in one extreme manner, and how functional programming ...
39
votes
13answers
11k views
What is the difference between procedural programming and functional programming?
I've read the Wikipedia articles for both procedural programming and functional programming, but I'm still slightly confused. Could someone boil it down to the core?
33
votes
6answers
7k views
Aspect Oriented Programming vs. Object-Oriented Programming
Like most developers here and in the entire world, I have been developing software systems using object-oriented programming (OOP) techniques for many years. So when I read that aspect-oriented ...
29
votes
10answers
10k views
OOP vs Functional Programming vs Procedural
What are the differences between these programming paradigms, and are they better suited to particular problems or do any use-cases favour one over the others?
Architecture examples appreciated!
28
votes
6answers
5k views
Functional programming vs Object Oriented programming
I'm an Object Oriented programmer looking forward to learning a functional language. My questions are:
When do you choose functional programming over object oriented ?
What are the typical problem ...
24
votes
3answers
5k views
Struggling with using pure functional programming to solve an everyday problem
I saw this post in hacker news today. I am struggling with the same problems of understanding how pure functional programming will help me abstract a real world problem. I made the switch from ...
23
votes
9answers
2k views
pitfalls/disadvantages of functional programming
When would you NOT want to use functional programming? What is it not so good at?
I am more looking for disadvantages of the paradigm as a whole, not things like "not widely used", or "no good ...
20
votes
5answers
611 views
Can aptitude for learning Programming paradigms be influenced by culture or native language's grammar?
It is well known that different people have different aptitudes regarding various programming paradigms (e.g. some people have trouble learning non-procedural, especially functional languages. Some ...
13
votes
5answers
588 views
Why is Clojure dynamically typed?
one thing I like very much is reading about different programming languages. Currently I'm learning Scala but that doesn't mean I'm not interested in Groovy, Clojure, Python, and many others. All ...
13
votes
4answers
579 views
Efficacy of sticking to just the functional paradigm in Scala
I recently bought Programming Scala, and have been reading through it. The language definitely isn't what I expected! Specifically, it seems to implement just about every programming language idea I'm ...
13
votes
5answers
5k views
what is the difference between declarative and imperative programming
I have been searching the web looking for a definition for declarative and imperative programming that would shed some light for me. However the language used at some of the resources that I have ...
11
votes
5answers
578 views
AOP… Should I unlearn OOP?
I have skimmed the online documentation, read the wiki entry, the posts and the blogs, but I'm still puzzled.
What is, in a nutshell, Aspect Oriented Programming ?
Is it simply better then Object ...
11
votes
3answers
1k views
How do I write unit tests in PHP with a procedural codebase?
I'm mostly convinced of the benefits of unit testing, and I would like to start applying the concept to a large existing codebase written in PHP. Less than 10% of this code is object-oriented.
I've ...
10
votes
11answers
406 views
Does the advent of MultiCore architectures affect me as a software developer?
As a software developer dealing mostly with high-level programming languages I'm not sure what I can do to appropriately pay attention to the upcoming omni-presence of multicore computers. I write ...
9
votes
7answers
1k views
Tools and environments supporting Domain Driven Design (DDD)
I'm doing a kind of research on the topic "Domain Driven Design". My question is what tools (or maybe environments) do you use, that support this paradigm?
I know that I can google it, but I wonder ...
9
votes
6answers
284 views
Can you have too much of “dynamic” in dynamic languages?
In last few months I have been making a transition from Java to Groovy and I can appreciate many of the benefits it brings: less code, closures, builders, MOP that in the end makes framework like ...
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
4answers
226 views
How to mix apparently incompatible paradigms: OOP and FP? [closed]
Reading back some of my Scala code, I noticed that it is either functional or object oriented.
Indeed, I have no idea on how to conciliate the no-side effects rule implied by immutable types and pure ...
7
votes
14answers
1k views
Practical uses of OOP
I recently had a debate with a colleague who is not a fan of OOP. What took my attention was what he said:
"What's the point of doing my coding in objects? If it's reuse then I can just create a ...
6
votes
1answer
465 views
The difference between Reactive and Functional-Reactive programming
I have been doing some research into reactive programming recently and I'm finding it hard to find a good description of the difference between Reactive and Functional-Reactive.
Is it simply that ...
6
votes
2answers
253 views
Should object-oriented principles be applied in procedural languages?
I know that it's possible in principle to turn even procedural languages such as C or MATLAB into object-oriented ones. This question has been fairly well discussed here and here.
What I found ...
6
votes
2answers
309 views
Programming language categories
What programming language categories are there?
I know about object-oriented languages, functional languages, procedural languages.... what other 'paradigms' are there? What are the best languages in ...
5
votes
3answers
392 views
Can you represent the same example using Procedural, Functional, Logic and OO programming Languages?
Can anyone please provide me with an example that can help me to understand Procedural, functional, Logic and Object Oriented programming models side by side by using nearly same example-problem.
...
5
votes
4answers
238 views
What is the canonical way of handling different types in Python?
I have a function where I need to generate different output strings for another program I invoke, depending on which type it wants.
Basically, the called program needs a command line argument telling ...
5
votes
8answers
2k views
What is the difference between a Char Array and a String?
Spending my time on high level languages it suddenly occurred to me that I did not know the difference between a Char Array and a String. I think they are the same thing but not sure. Is there a ...
5
votes
1answer
204 views
How can Domain driven design be combined with aspect oriented programming?
I'm doing research and one point I want to cover is "What is the relationship between Domain-driven Design and Aspect oriented programming?"
I know that a main principle in DDD is separation of ...
5
votes
5answers
379 views
Successful Non-programmer, 5GL, Visual, 0 Source Code or Similar Tools?
Can anyone give me an example of successful non-programmer, 5GL (not that I am sure what they are!), visual, 0 source code or similar tools that business users or analysts can use to create ...
4
votes
1answer
136 views
New to ASP.NET MVC - Will I have to relearn security?
I'm planning work on a new project and am now tempted to use ASP.NET MVC. My project plans to use JQuery and AJAX (although non-JS clients will also be supported). Coming from a standard ASP.NET ...
3
votes
5answers
130 views
What is the usage of Model in MVC? Is it actually useful?
I'm new in this, so bear with me. I've been using one MVC framework in a couple of projects lately, and after a while, I'm disillusioned in the perceived usefulness of the 'Model' in MVC.
I get the ...
3
votes
3answers
1k views
Differences & Similarities Between Programming Paradigms
I've been working as a developer for the past 4 years, with the 4 years previous to that studying software development in college. In my 4 years in the industry I've done some work in VB6 (which was a ...
3
votes
1answer
84 views
datatype programming
I know of "imperative" and "functional" programming but there was little I could find on "datatype" programming. Is there such a thing and how is it related to the other paradigms?
3
votes
7answers
524 views
Confused. Is OO inherently imperative or is is it multi-paradigm?
As I have read through stackoverflow answers and questions I am getting the impression that OO is compartmentalized to to be inherently imperative.
But isn't OO just a way to compartmentalize code ...
2
votes
2answers
208 views
What is the programming paradigm of R?
What is the programming paradigm of R (R as in GNU S)?
I believe myself familiar with programming languages of different conceptual paradigms (have programmend in C++, Java, Prolog and some other ...
2
votes
4answers
214 views
Most interesting Computer Programming Paradigms [closed]
The first language I truly studied and understood has been C. After a couple of years on it, I moved to Object Oriented languages (mostly C++, that I think I understood quite well), and got into a ...
2
votes
2answers
133 views
Good examples for MVC?
Can anybody point to/give a very very correct example for the Model-View-Controller paradigm? I mean something really simple (like an inches to cm converter) implemented in some easy-to-understand ...
2
votes
4answers
74 views
How to automatically run in the background?
I'm not sure that it's not implemented yet, I hope that it is. But I know that in .Net programmers should manually run time-consuming task in the background thread.
So every time we handle some UI ...
2
votes
6answers
153 views
What does it need to be a programmer? [closed]
What should I study in order to be a programmer. (except programming languages :) )
I know some C/C++ and some Java(, but I don't have the thinking of a programmer. I probably need to study some ...
2
votes
18answers
542 views
What programming concept/technique has boosted your productivity?
I've been programming for several years now and since then I have learned several concepts and techniques that have made me a better programmer (i.e. OOP, MVC, regex, hashing, etc). I feel too that by ...
2
votes
3answers
198 views
What is the programming paradigm of Dtrace?
I've been using Dtrace for a while, and as time goes by I've began to wonder what's the programming paradigm of the D language used in Dtrace.
It's not an imperative language, I guess, so that means ...
2
votes
13answers
319 views
What other languages should I learn? and what paradigms?
I want to be capable or have knowledge of each type of programming paradigms. Right now I know asm, c/c++ (and meta programming with templates). I touched upon functional programming. I have done ...
1
vote
2answers
54 views
Language for learning several paradigms
Is there a programming language that can be used as a bridge for learning several programming paradigms? I am introduced to the Oz programming language but I think there are several more languages ...
1
vote
2answers
122 views
Under which Programming Paradigm Lua can be used?
I've done some research about Lua programming but I'm still confused about under which paradigm it can work.
In some walkthroughs, I've found that Lua is not made for Object-Oriented Programming. ...
1
vote
1answer
44 views
Seperating JS & HTML in Wordpress
I recently read the discussion What's the best way to separate PHP Code and HTML?
I am facing a similar dilemma.
Currently working on a wordpress website which has a LOT of sliders, animated ...
1
vote
2answers
151 views
Learning Programming Languages [closed]
I have been programming in Java, PHP, Python for a while.
But my knowledge in programming languages is not that good.
I have been reading a few blogs on functional programming(FP) these days and the ...
1
vote
3answers
746 views
What is Data oriented programming?
Can any one explain to me
1. what is Data oriented programming?
2. Is Data oriented programming and functional programming the same?
3. How is Data oriented programming differ from Object ...
1
vote
2answers
56 views
Is there a programming language oriented to description of interaction between agents?
I want to create different kinds of processes in which agents interact with each other. I want to describe (define, formalize) processes of interaction between agents using a special language. In ...
1
vote
5answers
193 views
What language should I learn next? [closed]
Possible Duplicate:
Which Programming Language Should I Learn?
So far, I have played with PHP, Javascript, C/C++, SQL, ASM and VHDL.
My goal being to learn new paradigms, language ...
0
votes
3answers
35 views
One datasource for project
I'm using wizard to add tables to my project to work with them. Is having just one datasource for project better way? At the moment there is only 5 tables.
POST EDIT
It's so cumbersome and I'm ...
0
votes
1answer
65 views
How to choose a Programming Paradigm to work with? [closed]
There are many questions in SO about choosing a programming language. To me, I think, the choice becomes easier if I can decide which paradigm/model I am going to work with.
But, my question is, When ...