Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

39
votes
9answers
2k views

Are FP and OO orthogonal?

I have heard this time and again, and I am trying to understand and validate the idea that FP and OO are orthogonal. First of all, what does it mean for 2 concepts to be orthogonal? FP encourages ...
25
votes
8answers
1k views

What is aspect-oriented programming?

I understand object oriented programming, and have been writing OO programs for a long time. People seem to talk about aspect-oriented programming, but I've never really learned what it is or how to ...
24
votes
7answers
2k views

If Java people go to Scala, C# go to F#, where do Ruby people go for functional nirvana?

I know a lot of Java people have started looking at Scala since it runs on the JVM, and a lot of people in the Microsoft world are looking at F#, but what does Ruby have as a natural functional ...
24
votes
10answers
3k views

Do you use AOP (Aspect Oriented Programming) in production software?

AOP is an interesting programming paradigm in my opinion. However, there haven't been discussions about it yet here on stackoverflow (at least I couldn't find them). What do you think about it in ...
22
votes
7answers
3k views

Scala versus F# question: how do they unify OO and FP paradigms?

What are the key differences between the approaches taken by Scala and F# to unify OO and FP paradigms? EDIT What are the relative merits and demerits of each approach? If, in spite of the support ...
19
votes
3answers
7k views

What is data oriented design?

I was reading this article (note: click the magnifying glass to zoom to be able to read it), and this guy goes on talking about how everyone can greatly benefit from mixing in data oriented design ...
17
votes
4answers
682 views

Alternatives to OOP?

OOP is probably the most used programming paradigm in today's software design. My question is -- what other paradigm(s) can compete with it and can stand in the place of oop? To clarify that question, ...
15
votes
2answers
2k views

Mixins vs. Traits

What is the difference between Mixins and Traits? According to Wikipedia, Ruby Modules are sort of like traits. How so?
15
votes
6answers
4k views

Double-checked locking in .net

I came across this article discussing why the double-check locking paradigm is broken in java. Is the paradigm valid for .net (in particular, C#), if variables are declared volatile?
14
votes
8answers
3k views

Learning Functional Programming?

I've recently been dabbling in functional programming with languages like Lua, Scheme and most notably F# and there are a lot of resources to learn these languages. However, the resources that I've ...
12
votes
11answers
593 views

Significant Challengers to OOP

From what I understand, OOP is the most commonly used paradigm for large scale projects. I also know that some smaller subsets of big systems use other paradigms (e.g. SQL, which is declarative), and ...
10
votes
4answers
420 views

Books about language paradigms and concepts [closed]

What book(s) will you recommend if the goal was to learn Different language paradigms (OO, functional, ..) Different concepts (dynamic/static typed, immutability, ..) In short, i'm looking for a ...
9
votes
11answers
445 views

Are there there any completely alternate programming systems?

What I mean is, virtually every language I know of are basically variations on a theme. You create variables, functions and manipulate them using conditionals and other constructs. I understand ...
7
votes
5answers
793 views

Understanding MVC: Whats the concept of “Fat” on models, “Skinny” on controllers?

I'm trying to understand the concept of "Fat" on models vs "skinny" on controllers and from what I've been discussing I have the following example (this is taken from a freenode discussion): Q: On ...
7
votes
10answers
469 views

Which programming paradigm should be taught first to kids?

When introducing basic programming concepts to kids for the first time, what paradigm is best to start with? What research has been done in this field?
7
votes
8answers
2k views

Flow Based Programming

I have been doing a little reading on Flow Based Programming over the last few days. There is a wiki which provides further detail. And wikipedia has a good overview on it too. My first thought ...
7
votes
9answers
872 views

Do you use MDA/MDD/MDSD, any kind of model-driven approach? Will it be the future?

Programming languages had several (r)evolutionary steps in their history. Some people argue that model-driven approaches will be The Next Big Thing. There are tools like openArchitectureWare, ...
6
votes
1answer
154 views

Markup/Style best practices: How to efficiently distribute style rules over CSS classes?

Assume that I have some HTML page, and a corresponding CSS file. I'd like to add rounded corners to some elements. I want to alternate background colors on every other section. I want to add a ...
6
votes
10answers
1k views

What modern editors compete with emacs/vi?

Emacs and vi are the traditional editors of the programming gurus. But, have any modern editors been able to displace these two in terms of extensibility and text editing productivity? I know ...
6
votes
9answers
1k views

Where is MVC a bad thing?

I've been reading through a couple of questions on here and various articles on MVC and can see how it can even be applied to GUI event intensive applications like a paint app. Can anyone cite a ...
5
votes
1answer
310 views

Examples of relations between philosophical concepts and development paradigms

During your development experiences have you found any relation between philosophical concepts and development paradigms? Although, there is no hard reciprocity, I think that learning about those ...
5
votes
3answers
272 views

How to introduce AOP into productive software development?

I know this question has been asked before, but this was one and a half years ago, though I thought it might be the time for a re-questioning. I also recognized it might be seen as subjective, but I ...
5
votes
3answers
214 views

Functional Programming Documentation

Is there any standard documentation (like UML for OO) for functional languages? After downloading couch db which is written in erlang and looking at the source code I was shocked, there is hardly a ...
5
votes
12answers
409 views

How can I start designing my program on paper without over engineering things?

I'm interested in starting to properly design my software on paper before I ever start coding. What is the standard approach for this? I'm thinking something along the lines of UML but I feel that ...
5
votes
6answers
2k views

What is Component-Driven Development?

Component-Driven Development term is starting to get used widely, esp. in connection with Inversion of Control. What is it? What problems does it solve? When is it appropriate and when not?
5
votes
8answers
968 views

What programming language paradigm fits which job?

As far as I know (not much I'll admit), the currently popular programming paradigms are Object Oriented (Java, C#, Ruby) vs functional (F#). As someone who is mostly familiar with the first paradigm, ...
4
votes
2answers
68 views

I want to call it side-effect programming, but there's gotta be a better term for this

What is the name of the following programming paradigm: Code is executed based on a set of logical tests resolving to true (the clause). The clause is comprised of operators and operands. Each ...
4
votes
3answers
215 views

Language for Logic Programming?

Is there any newer language than Prolog specialized for logical programming ?
4
votes
2answers
159 views

Name this (2-D, logic-table-like, visual) programming language/paradigm (Subtext/Example Centric Programming)

I remember stumbling upon a video clip introducing a new programming "language" and a paradigm. The "language" was 2D and visual in nature, and therefore tightly coupled with its IDE and interpreter ...
4
votes
3answers
289 views

What are the different programming language concepts and which languages show them in a pure way

I am no language expert but I'm recently into languages and trying to get an overview of major concepts and "their" languages. This is similar to another question about books. So first, what are the ...
4
votes
2answers
566 views

Is there still a difference between a library and an API?

Whenever I ask people about the difference between an API and a library, I get different opinions. Some give this kind of definition, saying that an API is a spec and a library is an ...
4
votes
1answer
212 views

Example problems for concurrent computation

There's a plethora of paradigms and methods for concurrent programming in use today. Software transactional memory, actors, shared state concurrency, tuple spaces and many, many more. What I find ...
4
votes
1answer
496 views

Any research on maintainability of “guard statement” vs. “single function exit point” paradigm available?

I'm wondering if there has been any research (both casual and robust) on the maintainability of projects that use the "guard statement" paradigm vs. the "single function exit point" paradigm? Guard ...
3
votes
2answers
94 views

What Frameworks represent a paradigm different than the MVC?

We hear a lot about frameworks like Django, ROR and CodeIgniter in Python, ruby and PHP respectively, all of them represents the MVC paradigm, is there other paradigm different than MVC represented ...
3
votes
6answers
198 views

C# Paradigms: Side effects on Lists

I am trying to evolve my understanding of side effects and how they should be controlled and applied. Consider for example the following List of flights on which I want to set a property givin a ...
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
4answers
98 views

Should I hide or destroy UI elements?

I was wondering if, whenever I have a situation in which I have to hide some UI element temporarily, it is sufficient to hide it (many frameworks give this option) or I should delete the object in ...
3
votes
4answers
231 views

Is ORM a problem specific to object oriented programming?

Object-Relational Mapping, ORM is a problem that has to be solved in all applications that is implemented in an object oriented programming language and use a relational database. But isn't the ...
3
votes
2answers
153 views

Getting started with C++ ( the paradigm shift from Python )

I want to learn C++ so that i can develop C++ Python modules for server-related stuff. I'm a purely dynamic languages developer (Python, PHP, Ruby, etc). I want to learn a fast language, and if I'm ...
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
6answers
420 views

How does “Language Oriented Programming” compare to OOP/Functional in the real world

I recently began to read some F# related literature, speaking of "Real World Functional Programming" and "Expert F#" e. g.. At the beginning it's easy, because I have some background in Haskell, and ...
3
votes
3answers
257 views

declarative programming and imperative programming

I am studying two main paradigms of programming, declarative and imperative paradigm. I am having a hard time following the ambiguous statements made on my textbook and wikipedia, such as: ...
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 ...
3
votes
4answers
178 views

Which book would you recommend as a reference on computing paradigms?

I'm looking for a book that introduces one to the various computing paradigms in existence and then goes in depth into each. What I'd like to take away from the end is a basic understanding of each ...
2
votes
2answers
42 views

Passing on a function from server to client

I recently ran into the foo.toSource() option in JavaScript. This allows a serialization of a function. I was wondering about the possibilities of transferring functions over the networks, from server ...
2
votes
2answers
327 views

Recommended books on programming paradigm? [closed]

I have done programming for around 4-5 years now. However, I still lacks the ability to make a clear and effective design. My designs always fall apart as things get complicated. Mostly what happened ...
2
votes
2answers
92 views

What is the practical use of arbitrary code block (by curly brackets) in C#

I have seen an example with the switch statement where each case block was surrounded by the curly brackets, like this: switch (itemType) { case ItemType.TV: { String message = ...
2
votes
2answers
1k views

Why is the paradigm of “Direct Database Connection” not welcomed by Android Platform?

When I say "Direct Database Connection", I meant to use JDBC alike driver to call and run a remote database query within the context of an activity just like using SQLite database to store the local ...
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
1answer
73 views

Essential language paradigms for professional developer

So I guess most (all?) programmers start out learning a mainly imperative/ procedural programming paradigm, and probably learnt some form of object-oriented programming fairly shortly after that. I've ...

1 2