A tag for questions relating to the world view underlying a particular software methodology or theory.

learn more… | top users | synonyms (1)

0
votes
1answer
72 views

Is C++ really imperative? Lots of it look like declarative to me

I read that C++ is an imperative language, but looking at struct, class and other object type definitions, it looks like it is declarative? I mean, for example, members are simply declared within the ...
0
votes
1answer
20 views

Whats the basic difference which drives MI support over classes/interfaces?

Don't get me wrong. I am searching for this answer quite some time. And frankly speaking I could not get a satisfying answer anywhere. In a lot of places - Its mentioned that MI poses the following ...
0
votes
1answer
29 views

Django model ManyToMany id paradigm

i am new to Django, and i having trouble understanding how the model.ManyToMany works. I have this model: from django.db import models class Health_plan(models.Model): a = models.IntegerField () ...
4
votes
3answers
176 views

Efficiency passing variables to modules in a embedded c programming background

I am programming C in an embedded target. Due to the increasing complexity and testability issues, modularity is a must. At a glance, the program is a control loop. Read physical inputs using ...
0
votes
1answer
70 views

What Language/Technique Should I Consider For Logic Puzzles? [closed]

What Will The Language Be For? I have recently developed an appetite for logic and math puzzles. I'd like to use them as projects for learning a new language (with an end goal of solving new puzzles ...
0
votes
1answer
47 views

When to use XOR and when to use IFF?

Since ((NOT A) XOR B) and A→B ("iff....then") (~A→~B) are logically same (e.g. login can not happen unless authentication happens) does that have any practical use or is just a logic tautology and the ...
1
vote
3answers
215 views

c++ getter/setter pardigmn

I recently came across this class and was surprised at how the getters and setters were implemented I have not come across this before and would welcome some second opinions Do you think this is a ...
4
votes
2answers
161 views

Can Prototypical OOP Be Considered a Paradigm In C++?

Good day, considering the following code, could one classify prototypical OOP to be a paradigm in C++? #include <iostream> template< class... Bases > struct TestClass : public ...
0
votes
1answer
47 views

Generic interface for big projects

Let's say you are writing a bigger project and you have to use 3rd party libraries. So your complete project will be depended on these libraries. I thought instead of using those 3rd party libraries ...
0
votes
1answer
240 views

Scala quick sort [closed]

object QuickSort { def main(args: Array[String]) = { val a = Array(5, 3, 2, 1, 20, 46, 9, 39 ,219) sort(a).foreach(n=> (print(n), print (" " ))) } def sort(a:Array[Int]): Array[Int] ...
0
votes
0answers
53 views

language for Chess Evaluation (experimentation) [closed]

So I am aware of the speed and end benefits of C(++) for this task in a conventional way; however, I am looking for a language that would be interesting/powerful from the standpoint of: Statistical ...
3
votes
1answer
44 views

Is this programming paradigm vital to my success?

I'm currently making apps for iOS, and I had a quick question about making UIViews. In the process of designing a UIView, I was wondering if everything should be based off of the bounds of the ...
10
votes
4answers
365 views

Programming paradigm; wondering if rewriting/refactoring is necessary

for quite some time I've been working on an application. As programming is just a hobby this project is already taking way too long, but that's besides the point. I'm now at a point where every ...
0
votes
2answers
331 views

Difference between C and C++ [closed]

I was going through differences between C and C++ and then I faced a statement saying C uses top down approach while C++ uses bottom up approach. Can anyone please explain that?
0
votes
2answers
107 views

What is so unique about Ruby that Rails chose it as its development language? [closed]

I am very new to Ruby and Rails, so if this is a dumb question, please bear with me. The ideas that Ruby adopted are not so new and revolutionary. Functional programming, dynamic typing and ...
3
votes
1answer
142 views

Dealing with heirarchy-breaking effects in iOS games and apps

I started working as a iOS developer about a year and a half ago, and I'm having some trouble with software architecture and organization. I use Apple's recommended Model-View-Controller paradigm, and ...
2
votes
0answers
124 views

what paradigm does assembly use? [closed]

What programming paradigm does assembly language use? Machine code? Binary code? have no paradigms?
4
votes
3answers
111 views

Why use “>” in CSS?

If I want to add styling to all p elements inside of a div, why should I use div > p{ *style here* } as opposed to just div p{ *style here* } furthermore, if I want to use a pseudo ...
0
votes
2answers
75 views

What type of programming paradigm is this?

In some languages you can do a lot very easily. For example: if I want to get a value of a XML document, I can easily write this line of code: result = XML.GetValue("root/element/element"); What ...
0
votes
1answer
96 views

Size of redis database (2N or N^2)

I have a redis database, and client for it, written in Ruby. What is the size of this database? def follow!(user) $redis.multi do $redis.sadd(self.redis_key(:following), user.id) ...
0
votes
1answer
99 views

What specific problems does Declarative Programming solve best?

I understand what declarative languages have to offer, but I have not yet connected the dots as to why I would use them. For example, I do not understand why describing a problem is more beneficial ...
0
votes
3answers
163 views

Coding Paradigm: Should I Return 0 if Function is Successful? [closed]

When I'm writing a user define function, should I return 0 if the function is successful or a non null value? I personally like to return 0 if my function is successful, but I always see error ...
-3
votes
3answers
85 views

Can any language be used to program in any paradigm?

Can any language be used to program in any paradigm? For example C doesn't have classes but s it is possible to program in OOP. There are some languages (such as assembly) I can't see using OOP in.
14
votes
2answers
354 views

Is unobtrusive JavaScript outdated? [closed]

When I first read the principle of unobtrusive JavaScript in the Web Standard Curriculum I thought it's a really great thing. Unobtrusive JavaScript is more of a programming philosophy than a ...
0
votes
2answers
88 views

SQL Programming Paradigm - Client vs. Server

I'm working on an MS SQL database at work. We're in early development, and I'm playing around with PHP while a coworker of mine is using ASP.NET. In the end, we'll probably combine our efforts and ...
1
vote
1answer
42 views

Classical Inheritance Divergence

I'm wondering what should be done in the case of needing Roles or Traits but in a classical inheritance environment. I have stemming of a class down two roads, both of which stem from a root class, ...
0
votes
1answer
151 views

Programming Paradigm Beginner

easy theory question. I have a couple years experience with PHP and Javascript, trying to branch out into other languages and to connect my experience with some theory. Have been reading about ...
-1
votes
1answer
85 views

What are some similarities between Imperative and Declarative Programming? [closed]

I was just investigating this topic and all I can find is differences, and that declarative programming is essentially the opposite of imperative programming, from what I understood, does anyone know ...
2
votes
2answers
91 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 ...
1
vote
2answers
86 views

Does setting the text of a simple text label go against MVC?

In MVC the View shouldn't hold it's data. However I know in Objective-c you do: [textField setString:@"hello"];, that string is then retained by the text field. The same applies for the textField's ...
3
votes
2answers
184 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 ...
0
votes
1answer
677 views

tkinter and GUI programming methods

Hopefully this doesn't fall under "general discussion topic", since I'd like it to be more about resolving these issues in an efficient manner than a giant debate about which general approach to GUI ...
1
vote
1answer
79 views

How does AOP influence code quality?

AOP seems like an interesting concept. At first I was pretty enthusiastic about it, but as I read more and saw the use cases people were describing I grew disappointed. A lot of sites I saw, plus a ...
1
vote
1answer
89 views

Looking for a pdf about Flex modularization paradigm (or something like that)

Some time ago I saw an excelent eBook about how to make a modular Flex app, it was pretty cool, but I forgot the name of the book/tutorial and after a google search (not an exhaustive one) I cant find ...
1
vote
2answers
146 views

How is the Objective-C syntax similar to English? [closed]

So I know a bit of scripting and basic concepts of OOP, however when it comes down to writing actual code, the syntax kills me. I downloaded the Stanford course on iTunes U to try to learn Objective ...
0
votes
1answer
43 views

Proprietary development process

Is there a term specific to development that describes a company that has developed its own processes for development? More specifically, poor development practices, management, processes and QA ...
3
votes
2answers
2k 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 ...
3
votes
2answers
193 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 = ...
0
votes
4answers
151 views

What are the pros and cons of error handling at beginning vs. end of the method

In my programmer's experience, I have mixed error handling all the ways possible... I have created my personal style. However, I'd like to hear what you consider to be the pro and cons of error ...
4
votes
6answers
444 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 ...
1
vote
4answers
336 views

C gotchas and mistakes for C++ programmers [closed]

If you are C programmer or C++ programmer that knows C well, can you tell me what are the most common mistakes/pattern/style that you noticed from C++ programmers? For example, do you noticed a ...
1
vote
5answers
180 views

The act of breaking functions apart is called what?

Typically I implement classes (C#, C++) via many private functions that serve no purpose other than to separate concerns & logic for readability, maintainability, and scope. For example, if I see ...
0
votes
4answers
116 views

In Python, is there a clean way to return the value of a function if it's not None?

I find myself writing a lot of code that resembles the following: ans = call_function() if ans: return ans ... Is there a clean way to make this a 1 or 2 liner? An "example" of such a paradigm ...
4
votes
2answers
84 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 ...
2
votes
1answer
578 views

Agent Oriented Design in the real world?

We've been learning about Agent-Oriented-Programming in my software development class, and my professor is a huge proponent of it, having worked with it his whole life. My question is about the true ...
3
votes
5answers
725 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 ...
1
vote
3answers
263 views

MVC & Program State - Should Models be Dumb?

I'm using a framework which uses the MVC paradigm. It's CodeIgniter, but my question isn't about the framework specifically - it's more generally about best practices when working with MVC. I'm ...
0
votes
3answers
178 views

C++0x OOP paradigm shifts?

Are there any and if yes, which ones?
2
votes
2answers
2k 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 ...
6
votes
3answers
682 views

Language for Logic Programming?

Is there any newer language than Prolog specialized for logical programming ?

1 2 3